base.html 641 B

12345678910111213141516
  1. {% load staticfiles %}<!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>
  6. {% if title %}{{ title }} - {% endif %}
  7. {% if user.is_authenticated %}{{ user.username }}@{% endif %}{{ settings.APPLICATION_NAME }}
  8. </title>
  9. <meta name="application-name" content="{{ settings.APPLICATION_NAME }}">
  10. <meta name="author" content="tBKwtWS">
  11. <meta name="description" content="{{ description }}">
  12. <meta name="keywords" content="{{ keywords }}">
  13. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  14. </head>
  15. <body>{% block content %}{% endblock content %}</body>
  16. </html>