adds the status to the sidebar

This commit is contained in:
etherware-novice 2024-07-30 19:31:51 -05:00
parent 56e537751c
commit afcf30d2c2
No known key found for this signature in database
GPG Key ID: 5DB73B4D57B9D701
4 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,5 @@
<div id="statuscafe">
<div id="statuscafe-username"></div>
<div id="statuscafe-content"></div>
</div>
<script src="https://status.cafe/current-status.js?name=candycanearter" defer></script>

View File

@ -34,6 +34,7 @@ navbar: topnav
{% endfor %} {% endfor %}
{% include swatchclock.html %} {% include swatchclock.html %}
{% include statuscafe.html %}
</div> </div>
</div> </div>
</div> </div>

View File

@ -1,4 +1,5 @@
@import "sidebar"; @import "sidebar";
@import "statuscafe";
body { body {

11
_sass/statuscafe.scss Normal file
View File

@ -0,0 +1,11 @@
#statuscafe {
padding: .5em;
background-color: azure;
border: 1px solid midnightblue;
}
#statuscafe-username {
margin-bottom: .5em;
}
#statuscafe-content {
margin: 0 1em 0.5em 1em;
}