We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec38e30 commit fb0c27cCopy full SHA for fb0c27c
material/templates/base.html
@@ -77,7 +77,7 @@
77
{% endblock %}
78
{% if page.meta and page.meta.meta %}
79
{% for tag in page.meta.meta %}
80
- <meta {% for key, value in tag.items() %} {{ key }}="{{value}}" {% endfor %}>
+ <meta {% for key, value in tag | items %} {{ key }}="{{value}}" {% endfor %}>
81
{% endfor %}
82
{% endif %}
83
{% block extrahead %}{% endblock %}
src/templates/base.html
@@ -162,7 +162,7 @@
162
163
164
<meta
165
- {% for key, value in tag.items() %}
+ {% for key, value in tag | items %}
166
{{ key }}="{{value}}"
167
168
/>
0 commit comments