nfc-web/web/nfc-theme/templates/index.html
2023-05-03 00:21:33 +03:00

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 %}