blossom/templates/home.html.tera

56 lines
1.0 KiB
Plaintext
Raw Normal View History

2023-01-15 21:43:21 +00:00
{% extends "base" %}
2023-01-16 01:38:58 +00:00
{% block nav_home %}active{% endblock %}
2023-01-15 21:43:21 +00:00
{% block header %}
<div class="panel" id="title">
<h1>cel 🌸</h1>
</div>
{% if is_live %}
<iframe
class="panel"
id="stream"
2023-06-20 16:02:12 +01:00
src="https://weirdstar.stream/embed/video"
2023-01-15 21:43:21 +00:00
title="girlstream"
referrerpolicy="origin"
scrolling="no"
allowfullscreen>
</iframe>
{% endif %}
2023-01-16 05:18:41 +00:00
{% if listenbrainz.is_scrobbling %}
<a href="https://listenbrainz.org/user/celblossom" class="panel" id="scrobble">now playing: {{ listenbrainz.song }} - {{ listenbrainz.artist }}</a>
2023-01-15 21:43:21 +00:00
{% endif %}
{% endblock header %}
{% block content %}
2023-01-17 00:48:57 +00:00
<div class="panel content">
2023-01-15 21:43:21 +00:00
<h2>hallo i am celeste welcome 2 my site 🌟</h2>
2023-06-22 21:37:10 +01:00
<p>this is where i do the posting</p>
2023-01-15 21:43:21 +00:00
<p>i wish u a wonderful day</p>
<br>
2023-06-22 21:37:10 +01:00
<img src="/quinntyping.png">
2023-01-15 21:43:21 +00:00
<p>perpetually under construction</p>
<img style="border: 0;" src="/barraconstruction.gif">
</div>
{% endblock content %}
{% block aside %}
<aside>
2023-01-17 00:48:57 +00:00
{% include "latestposts" %}
2023-01-15 21:43:21 +00:00
{% include "latestskweets" %}
</aside>
{% endblock aside %}