nfc-web/web/nfc-theme/templates/article.html
2023-05-22 10:06:52 +03:00

14 lines
No EOL
376 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 %}
{% block scripts %}
<script src="{{ SITEURL }}/theme/user.js"></script>
{% endblock %}