| Index: macros/meta-tag.tmpl |
| =================================================================== |
| new file mode 100644 |
| --- /dev/null |
| +++ b/macros/meta-tag.tmpl |
| @@ -0,0 +1,5 @@ |
| +{% macro meta_tag(property, content, defaultContent=None) -%} |
| + {% if content or defaultContent %} |
| + <meta property='{{ property }}' content='{{ content or defaultContent }}'> |
| + {% endif %} |
| +{%- endmacro %} |