nfc-web/web/nfc-theme/templates/article.html
2023-05-01 22:59:40 +03:00

11 lines
290 B
HTML

{% extends "base.html" %}
{% block content %}
<section id="content" class="body">
<div class="entry-content">
{{ article.content }}
{% if article.metadata.geohash %}
<a href="{{ SITEURL }}/{{ article.category.url }}">Map</a>
{% endif %}
</div>
</section>
{% endblock %}