implementing a stattracker!

This commit is contained in:
etherware-novice 2024-07-25 22:04:23 -05:00
parent 0dd66957b7
commit 1ecb9d052c
No known key found for this signature in database
GPG Key ID: 5DB73B4D57B9D701
2 changed files with 4 additions and 1 deletions

View File

@ -9,6 +9,7 @@
{% if page.neko == "true" %} {% if page.neko == "true" %}
{% include neko.html %} {% include neko.html %}
{% endif %} {% endif %}
<script data-goatcounter="https://slimepondcount.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
<div class="columns"> <div class="columns">
<div class="left-sidebar"> <div class="left-sidebar">
@ -16,7 +17,7 @@
</div> </div>
<div class="main-content">{{ content }}</div> <div class="main-content">{{ content }}</div>
<div class="right-sidebar"> <div class="right-sidebar">
hello world <img src="https://slimepondcount.goatcounter.com/counter/{{ page.url }}.png" width: 100%>
</div> </div>
</div> </div>
</body> </body>

View File

@ -12,6 +12,7 @@
padding: 10px; padding: 10px;
overflow-y: scroll; overflow-y: scroll;
flex: 0 60px; flex: 0 60px;
position: sticky;
} }
.main-content { .main-content {
@ -26,4 +27,5 @@
flex: 1; flex: 1;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
position: sticky;
} }