2023-01-08 23:55:40 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block main_content %}
|
|
|
|
{{ post_macros::content(page=page) }}
|
2023-01-11 05:57:37 +00:00
|
|
|
<hr>
|
2023-01-08 23:55:40 +00:00
|
|
|
{{ post_macros::tags(page=page, short=true) }}
|
2023-01-15 07:22:30 +00:00
|
|
|
<hr>
|
2023-01-21 23:53:58 +00:00
|
|
|
<script src="/js/footnoter.js"></script>
|
2023-01-15 07:26:12 +00:00
|
|
|
<div class=hias-footer>
|
2024-03-30 20:15:52 +00:00
|
|
|
<p>There have been <span id="hitman-count">no</span> views of this page.</p>
|
|
|
|
<p>
|
2023-01-15 07:22:30 +00:00
|
|
|
<script async defer src="https://www.recurse-scout.com/loader.js?t=e38ac183ce767b3800a4b4587c00f3fd"></script>
|
2024-03-30 20:15:52 +00:00
|
|
|
<div class="rc-scout"></div>
|
|
|
|
</p>
|
2023-01-15 07:26:12 +00:00
|
|
|
</div>
|
2024-03-30 20:15:52 +00:00
|
|
|
|
|
|
|
<script defer>
|
|
|
|
const hits = document.getElementById('hitman-count');
|
|
|
|
fetch("/hit/{{ page.slug }}").then((resp) => {
|
|
|
|
return resp.text();
|
|
|
|
}).then((data) => {
|
|
|
|
hits.innerHTML = data;
|
|
|
|
});
|
|
|
|
</script>
|
2023-01-08 23:55:40 +00:00
|
|
|
{% endblock main_content %}
|