base.html 354 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html lang=en>
  3. <head>
  4. <title>{% block head_title %} MuyPicky!{% endblock head_title %}</title>
  5. {% include 'snippets/css.html' %}
  6. </head>
  7. <body>
  8. {% include "snippets/nav.html" %}
  9. <div class='container'>
  10. {% block content %} {% endblock content %}
  11. </div>
  12. {% include 'snippets/js.html' %}
  13. </body>
  14. </html>