Advertisement
Guest User

Untitled

a guest
May 14th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.94 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8" />
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>{{ title }} - MeetMan</title>
  7.     {% load staticfiles %}
  8.     <link rel="stylesheet" type="text/css" href="{% static 'app/content/bootstrap.min.css' %}" />
  9.     <link rel="stylesheet" type="text/css" href="{% static 'app/content/site.css' %}" />
  10. </head>
  11.  
  12. <body>
  13.     <div class="navbar navbar-expand-lg navbar-dark bg-dark">
  14.         ...
  15.     </div>
  16.  
  17.     <div class="container body-content">
  18.         {% block content %}{% endblock %}
  19.         <hr/>
  20.         <footer>
  21.             <p>&copy; {{ year }} - MeetMan</p>
  22.         </footer>
  23.     </div>
  24.  
  25.     <script src="{% static 'app/scripts/jquery-1.10.2.js' %}"></script>
  26.     <script src="{% static 'app/scripts/bootstrap.js' %}"></script>
  27.     <script src="{% static 'app/scripts/respond.js' %}"></script>
  28. {% block scripts %}{% endblock %}
  29.  
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement