1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-28 12:24:34 +00:00

18 lines
397 B
HTML
Raw Normal View History

{% extends "base_home.html" %}
{% block main-content %}
{% load markup %}
{% load article_tags %}
{% load_main_articles "2" as "articles" %}
{% if not articles %}
{% load_last_articles "2" as "articles" %}
{% endif %}
{% for article in articles %}
<h2>{{ article.title }}</h2>
{{ article.text|restructuredtext }}
{% endfor %}
{% endblock %}