21 lines
No EOL
546 B
HTML
21 lines
No EOL
546 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<section id="content">
|
|
{% block content_title %}
|
|
{% endblock %}
|
|
|
|
{% for article in articles_page.object_list %}
|
|
|
|
<article class="hentry">
|
|
<header>
|
|
<h2 class="entry-title">
|
|
<span class="geo"><a latlon="{{ article.metadata.latlon }}" href="geo:{{ article.metadata.latlon }}">{{ article.metadata.geohash }}</a></span>
|
|
</h2>
|
|
<span class="entry-summary">{{ article.summary }}</span>
|
|
</header>
|
|
</article>
|
|
{% endfor %}
|
|
|
|
{% include 'pagination.html' %}
|
|
</section>
|
|
{% endblock content %} |