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

12 lines
290 B
HTML
Raw Normal View History

2023-04-30 14:08:32 +03:00
{% extends "base.html" %}
{% block content %}
<section id="content" class="body">
<div class="entry-content">
{{ article.content }}
{% if article.metadata.geohash %}
2023-05-01 22:59:40 +03:00
<a href="{{ SITEURL }}/{{ article.category.url }}">Map</a>
2023-04-30 14:08:32 +03:00
{% endif %}
</div>
</section>
{% endblock %}