2023-05-01 21:58:23 +03:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block content %}
|
|
|
|
|
<section id="content">
|
|
|
|
|
{% block content_title %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% for article in articles %}
|
|
|
|
|
|
|
|
|
|
<article class="hentry">
|
|
|
|
|
<header>
|
|
|
|
|
<h2 class="entry-title">
|
2023-05-01 22:59:40 +03:00
|
|
|
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark">{{ article.category }}: {{ article.title }}</a>
|
|
|
|
|
{% if article.metadata['geohash'] %}
|
|
|
|
|
[<a href="geo:{{ article.metadata['lat'] }},{{ article.metadata['lon'] }}">{{ article.metadata['geohash'] }}</a>]
|
|
|
|
|
{% endif %}
|
2023-05-01 21:58:23 +03:00
|
|
|
</h2>
|
2023-05-01 22:59:40 +03:00
|
|
|
|
2023-05-01 21:58:23 +03:00
|
|
|
</header>
|
|
|
|
|
</article>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
{% endblock content %}
|