22 lines
No EOL
503 B
HTML
22 lines
No EOL
503 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<section id="content">
|
|
{% block content_title %}
|
|
{% endblock %}
|
|
|
|
{% for article in articles_page.object_list %}
|
|
{% if article.metadata['geohash'] %}
|
|
|
|
<article class="hentry">
|
|
<header>
|
|
<h2 class="entry-title">
|
|
<a href="geo:{{ article.metadata['lat'] }},{{ article.metadata['lon'] }}">{{ article.metadata['geohash'] }}</a>
|
|
</h2>
|
|
</header>
|
|
</article>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% include 'pagination.html' %}
|
|
</section>
|
|
{% endblock content %} |