21 lines
No EOL
787 B
HTML
21 lines
No EOL
787 B
HTML
{% extends "base.html" %}
|
|
{% block head %}
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta data-category="{{ article.category.slug }}" />
|
|
<link href="{{ SITEURL }}/theme/local.css" rel="stylesheet">
|
|
{% endblock head %}
|
|
{% 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>
|
|
<span id="progress">{% for cat, art in categories %}{% if cat.slug == category.slug %}{{ art|count }}{% endif %}{% endfor %}</span>
|
|
{% endif %}
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|
|
{% block scripts %}
|
|
<script src="{{ SITEURL }}/theme/user.js"></script>
|
|
{% endblock %} |