diff options
| author | 2023-08-05 23:40:44 +0100 | |
|---|---|---|
| committer | 2023-08-05 23:40:44 +0100 | |
| commit | bfef6e287488722f87e7af57cf53b6fc7fbab284 (patch) | |
| tree | f70dae96f591cfa0e8ae4a68ca8db4993a0fc5f4 /templates | |
| parent | 5fcb4c095613ec774678c1e48c1b0a93678b193b (diff) | |
| download | blossom-bfef6e287488722f87e7af57cf53b6fc7fbab284.tar.gz blossom-bfef6e287488722f87e7af57cf53b6fc7fbab284.tar.bz2 blossom-bfef6e287488722f87e7af57cf53b6fc7fbab284.zip  | |
fix header
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/home.html.tera | 33 | 
1 files changed, 17 insertions, 16 deletions
diff --git a/templates/home.html.tera b/templates/home.html.tera index 483c2f9..9a6041f 100644 --- a/templates/home.html.tera +++ b/templates/home.html.tera @@ -8,23 +8,24 @@    <div class="panel" id="title">      <h1>cel 🌸</h1>    </div> -</header> -{% 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 %} +  {% 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 %} + +</header>  {% endblock header %}  | 
