11 lines
290 B
HTML
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 %}
|