Created
January 12, 2018 01:07
-
-
Save PatrickKennedy/dd4b3a13ba0f70abd86aa621f96a185c to your computer and use it in GitHub Desktop.
Example jinja style base template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| {% block meta_tags %}{% endblock %} | |
| <title> | |
| {% block title %}Hello, World{% endblock %} | |
| </title> | |
| {% block stylesheets %}{% endblock %} | |
| {% block javascript_head %}{% endblock %} | |
| {% block extra_head %}{% endblock %} | |
| </head> | |
| <body> | |
| <header> | |
| {% block header %}{% endblock %} | |
| </header> | |
| <section> | |
| {% block content %}{% endblock %} | |
| </section> | |
| <footer> | |
| {% block footer %}{% endblock %} | |
| </footer> | |
| {% block javascript %}{% endblock %} | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment