blog/templates/page.html
2025-09-19 11:35:58 -07:00

31 lines
896 B
HTML

{% extends "base.html" %}
{% block main_content %}
{{ post_macros::content(page=page) }}
<hr>
{{ post_macros::tags(page=page, short=true) }}
<hr>
<script src="/js/footnoter.js"></script>
<div class=hias-footer>
<p>There have been <span id="hitman-count">no</span> views of this page.</p>
<p><a href=https://webring.club/tJiARCf_atDhfvzd/previous></a> - The <a
href=https://webring.club/random>Constellation</a> Webring - <a
href=https://webring.club/tJiARCf_atDhfvzd/next></a> </p>
<hr>
</div>
<script defer>
const hits = document.getElementById('hitman-count');
fetch("/hit/{{ page.slug }}").then((resp) => {
if (resp.ok) {
return resp.text();
} else {
return "I don't even know how many";
}
}).then((data) => {
hits.innerHTML = data;
});
</script>
{% endblock main_content %}