Postfix's Transport Encryption under Control of the User
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

base.html 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {% load staticfiles %}
  2. <!DOCTYPE html>
  3. <div lang="en">
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <title>{% block title %}{% endblock %}</title>
  9. {# Bootstrap #}
  10. <link href="{% static 'vendor/bootstrap/css/bootstrap.min.css' %}" rel="stylesheet">
  11. {# Font Awesome #}
  12. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
  13. {# Custom CSS #}
  14. <link href="{% static 'css/style.css' %}" rel="stylesheet">
  15. {# ============================= additional css ================================= #}
  16. {% block additional_css %}
  17. {% endblock %}
  18. {# ============================================================================== #}
  19. {# Animations #}
  20. <link rel="stylesheet" href="{% static 'vendor/animate.min.css' %}">
  21. {# Fonts #}
  22. <link href='https://fonts.googleapis.com/css?family=Raleway:400,100,300,200,500,600,700' rel='stylesheet' type='text/css'>
  23. {# even support old crappy Internet Explorer #}
  24. <!--[if lt IE 9]>
  25. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  26. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  27. <![endif]-->
  28. </head>
  29. {# ================================= main page content =================================== #}
  30. <div class="container">
  31. {% block page_content %}{% endblock %}
  32. </div>
  33. {# ======================================================================================== #}
  34. {# jQuery #}
  35. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
  36. {# ============================= Additional javascript ============================== #}
  37. {% block additional_js %}
  38. {{ block.super }}
  39. {% endblock %}
  40. {# ================================================================================== #}
  41. {# bootstrap minified javascript #}
  42. <script src="{% static 'vendor/bootstrap/js/bootstrap.min.js' %}"></script>
  43. </body>
  44. </html>