{% extends "layout.html" %} {% block head %} {{ super() }} {% endblock %} {% block subtitle %}吾爱词霸 - {{word}}{% endblock %} {% block maincontent %}
吾爱词霸
{{ form.word(placeholder='word', class='form-control', autocomplete='off') }}
{{ form.csrf_token }}

    {% for uuid, item in contents.items() %}
  • {{item.title|safe}}
  • {% endfor %}
{% for uuid, item in contents.items() %}
{%if item.content%}{{word_meta|safe}}{%endif%}
{{item.content|safe}}

{% endfor %}
{% endblock %} {% block script %} {{super()}} {% endblock %}