{% extends "base.html" %} {% load static %} {% block title %} 首页 {% endblock title %} {% block content %}
{% if search %} {% if articles %}

"{{ search }}"的搜索结果如下:


{% else %}

暂无 "{{ search }}"有关的文章。

{% endif %} {% endif %}
{% for article in articles %}

{{ article.title }}

{{ article.body|slice:'100' }}...

{% endfor %}
{% endblock content %}