diff options
author | cel 🌸 <cel@blos.sm> | 2023-01-15 21:43:21 +0000 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2023-01-15 21:43:21 +0000 |
commit | 1280b8d6a2a3f2a02179a1e51aef1891a04cc8dd (patch) | |
tree | a5abd1d1855d2d1123586d50e58567096c7dd695 /templates/home.html.tera | |
parent | 4a860896c21220b2b8b22da4a5d2f8794c90253a (diff) | |
download | blossom-1280b8d6a2a3f2a02179a1e51aef1891a04cc8dd.tar.gz blossom-1280b8d6a2a3f2a02179a1e51aef1891a04cc8dd.tar.bz2 blossom-1280b8d6a2a3f2a02179a1e51aef1891a04cc8dd.zip |
set up rocket server
Diffstat (limited to '')
-rw-r--r-- | templates/home.html.tera | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/templates/home.html.tera b/templates/home.html.tera new file mode 100644 index 0000000..cf14f54 --- /dev/null +++ b/templates/home.html.tera @@ -0,0 +1,53 @@ +{% extends "base" %} + +{% block header %} + +<div class="panel" id="title"> + <h1>cel 🌸</h1> +</div> + +{% if is_live %} +<iframe + class="panel" + id="stream" + src="https://live.blos.sm/embed/video" + title="girlstream" + referrerpolicy="origin" + scrolling="no" + allowfullscreen> +</iframe> +{% endif %} + +{% if is_scrobbling %} +<a href="https://listenbrainz.org/user/celblossom" class="panel" id="scrobble">now playing: Parfum d'étoiles - Ichiko Aoba</a> +{% endif %} + +{% endblock header %} + +{% block content %} + +<div class="info panel"> + <h2>hallo i am celeste welcome 2 my site 🌟</h2> + <p>this is where i dump everything</p> + <p>i wish u a wonderful day</p> + <br> + <img src="https://s3.eu-west-1.wasabisys.com/skinnyverse/f28c467a-0ee1-4d49-a638-08a010fd9927/quinntyping.png"> + <p>perpetually under construction</p> + <img style="border: 0;" src="/barraconstruction.gif"> +</div> + +{% endblock content %} + +{% block aside %} + +<aside> + + {% include "latestblogs" %} + {% include "latestskweets" %} + +</aside> + +{% endblock aside %} + + + |