aboutsummaryrefslogtreecommitdiffstats
path: root/templates/home.html.tera
blob: cb7fe0864fcc188afab1f502a905ee9cef8d853b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{% extends "base" %}

{% block nav_home %}active{% endblock %}

{% block header %}

<div class="panel" id="title">
  <h1>cel 🌸</h1>
</div>

{% if is_live %}
<iframe
  class="panel"
  id="stream"
  src="https://weirdstar.stream/embed/video"
  title="girlstream"
  referrerpolicy="origin"
  scrolling="no"
  allowfullscreen>
</iframe>
{% endif %}

{% if listenbrainz.is_scrobbling %}
<a href="https://listenbrainz.org/user/celblossom" class="panel" id="scrobble">now playing: {{ listenbrainz.song }} - {{ listenbrainz.artist }}</a>
{% endif %}
  
{% endblock header %}

{% block content %}

<div class="panel content">
  <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 "latestposts" %}
  {% include "latestskweets" %}

</aside>

{% endblock aside %}