Commit 047d519bce38b87251e7aa89200d0c490241a6c4
1 parent
70aa301f
Exists in
master
Add an overridable block for extra metadata.
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
flaskr/templates/base.html
... | ... | @@ -15,6 +15,8 @@ |
15 | 15 | <meta name="author" content="{{ author.name }} <{{ author.email }}>"> |
16 | 16 | {% endfor %} |
17 | 17 | {% endblock %} |
18 | + {% block extra_meta %} | |
19 | + {% endblock %} | |
18 | 20 | |
19 | 21 | {% assets "common_css" %} |
20 | 22 | <link rel="stylesheet" type="text/css" href="{{ ASSET_URL }}" /> | ... | ... |