nfc-web/web/nfc-theme/templates/index.html

22 lines
503 B
HTML
Raw Normal View History

2023-04-30 14:08:32 +03:00
{% extends "base.html" %}
{% block content %}
<section id="content">
{% block content_title %}
{% endblock %}
{% for article in articles_page.object_list %}
2023-05-03 00:21:33 +03:00
{% if article.metadata['geohash'] %}
2023-04-30 14:08:32 +03:00
<article class="hentry">
<header>
<h2 class="entry-title">
2023-05-03 00:21:33 +03:00
<a href="geo:{{ article.metadata['lat'] }},{{ article.metadata['lon'] }}">{{ article.metadata['geohash'] }}</a>
2023-04-30 14:08:32 +03:00
</h2>
</header>
</article>
2023-05-03 00:21:33 +03:00
{% endif %}
2023-04-30 14:08:32 +03:00
{% endfor %}
{% include 'pagination.html' %}
2023-04-30 14:35:57 +03:00
</section>
2023-05-01 21:58:23 +03:00
{% endblock content %}