nfc-web/web/nfc-theme/templates/article.html

22 lines
843 B
HTML
Raw Normal View History

2023-04-30 14:08:32 +03:00
{% extends "base.html" %}
2023-05-22 11:25:46 +03:00
{% 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 %}
2023-04-30 14:08:32 +03:00
{% block content %}
2023-05-22 11:25:46 +03:00
<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>
2023-04-30 14:08:32 +03:00
{% endblock %}
2023-05-22 10:06:52 +03:00
{% block scripts %}
2023-05-22 11:28:35 +03:00
<script src="{{ SITEURL }}/theme/platform.js"></script>
2023-05-22 10:06:52 +03:00
<script src="{{ SITEURL }}/theme/user.js"></script>
{% endblock %}