13 lines
481 B
HTML
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 %}
|