| 12345678910111213141516 |
- {% load staticfiles %}<!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>
- {% if title %}{{ title }} - {% endif %}
- {% if user.is_authenticated %}{{ user.username }}@{% endif %}{{ settings.APPLICATION_NAME }}
- </title>
- <meta name="application-name" content="{{ settings.APPLICATION_NAME }}">
- <meta name="author" content="tBKwtWS">
- <meta name="description" content="{{ description }}">
- <meta name="keywords" content="{{ keywords }}">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- </head>
- <body>{% block content %}{% endblock content %}</body>
- </html>
|