Created
April 15, 2020 20:21
-
-
Save SuryaSankar/aa0a5fc422894bbff2dacdc7f9258bf3 to your computer and use it in GitHub Desktop.
flask_pattern_minimal_with_auth/app/templates
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
| {% import "macros.html" as macros %} | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <title>Flask Boilerplate Demo</title> | |
| <!-- Tell the browser to be responsive to screen width --> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| {% include "layout_sections/layout_assets_at_top.html" %} | |
| {{ macros.static_css_tag("css/main.css")}} | |
| {% block page_assets_at_top %} | |
| {% endblock %} | |
| </head> | |
| <body> | |
| {% include "layout_sections/top_navbar.html" %} | |
| <div class="container"> | |
| {% block page_content %} | |
| {% endblock %} | |
| </div><!-- /.container --> | |
| {% include "layout_sections/layout_assets_at_bottom.html" %} | |
| {{ macros.static_js_tag("js/main.js")}} | |
| {% block page_assets_at_bottom %} | |
| {% endblock %} | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment