nfc-web/web/nfc-theme/templates/article.html
2023-04-30 14:08:32 +03:00

13 lines
481 B
HTML

{% extends "base.html" %}
{% block content %}
<section id="content" class="body">
<div class="entry-content">
{{ article.content }}
{% if article.metadata.geohash %}
<span class="geo"><a latlon="{{ article.metadata.latlon }}" href="geo:{{ article.metadata.latlon }}">{{ article.metadata.geohash }}</a></span>
{% endif %}
</div>
</section>
<script src="{{ SITEURL }}/theme/platform.js"></script>
<script src="{{ SITEURL }}/theme/geo.js"></script>
{% endblock %}