Add goodbye amv to blog posts.

This commit is contained in:
天クマ 2026-07-10 11:35:48 -03:00
commit ac895d086c
6 changed files with 41 additions and 3 deletions

View file

@ -1,5 +1,6 @@
<header> <header>
<div> <div class="headerContent">
<div id="headerTitle">
<h1>{{ title or "Adrian Victor" }}</h1> <h1>{{ title or "Adrian Victor" }}</h1>
<p id="headerSubtitle"><i>{{ subtitle or "Fanasy is not a crime, find your castle in the sky." }}</i></p> <p id="headerSubtitle"><i>{{ subtitle or "Fanasy is not a crime, find your castle in the sky." }}</i></p>
<script> <script>
@ -43,5 +44,7 @@
<a href="https://github.com/adrianvic" rel="me" style="display: none;">github.com/aaronpk</a> <a href="https://github.com/adrianvic" rel="me" style="display: none;">github.com/aaronpk</a>
</ul> </ul>
</div> </div>
</div>
{# <marquee scrollamount="10vw" style="opacity: .8; background-color: rgb(0,0,0, 0.4); postion: fixed; bottom: 0; left: 0;">test</marquee> #}
</header> </header>
<script type="module" src="{{ '/static/scripts/tumblr-adapt.js' | url }}"></script> <script type="module" src="{{ '/static/scripts/tumblr-adapt.js' | url }}"></script>

View file

@ -0,0 +1,15 @@
---
postTitle: "AMV of xxpoisonkissesxx' 'goodbye' [ニセコイ]"
postId: goodbye-amv
postVideoLink: "https://www.youtube.com/watch?v=3Au_Vh7mHXg"
postVideoTitle: "xxpoisonkissesxx - goodbye [ニセコイ AMV]"
postVideoImage: "/thumbnails/goodbye.png"
postVideoWebsite: "YouTube"
postVideoDuration: "1:45"
langKey: en
layout: post.njk
date: 2026-07-10
background: backgrounds/marika-nisekoi.png
backgroundOpacity: .35
---
<p>Hey people! I just posted an AMV of <i>xxpoisonkissesxx</i>' new single in my lyrics channel, go take a look and, of course, give a lot of support to the author on <a href="https://www.tumblr.com/xxpoisonkissesxx">tumblr</a>.</p>

View file

@ -0,0 +1,15 @@
---
postTitle: "AMV de 'goodbye' da xxpoisonkissesxx [ニセコイ]"
postId: goodbye-amv
postVideoLink: "https://www.youtube.com/watch?v=3Au_Vh7mHXg"
postVideoTitle: "xxpoisonkissesxx - goodbye [ニセコイ AMV]"
postVideoImage: "/thumbnails/goodbye.png"
postVideoWebsite: "YouTube"
postVideoDuration: "1:45"
langKey: pt
layout: post.njk
date: 2026-07-10
background: backgrounds/marika-nisekoi.png
backgroundOpacity: .35
---
<p>Opa galera! Acabei de postar o AMV da nova música da <i>xxpoisonkissesxx</i> no meu canal de letras, vão lá dar uma olhada e, claro, dar todo apoio para a autora da música no <a href="https://www.tumblr.com/xxpoisonkissesxx">tumblr</a>.</p>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

View file

@ -64,10 +64,15 @@ select {
header { header {
display: flex; display: flex;
flex-direction: column;
border-bottom: thick solid rgba(255, 255, 255, 0.1); border-bottom: thick solid rgba(255, 255, 255, 0.1);
width: 100%;
box-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(0, 0, 0, 0.3); box-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(0, 0, 0, 0.3);
}
header .headerContent {
width: 100%;
background-color: rgba(0, 0, 0, 0.15); background-color: rgba(0, 0, 0, 0.15);
display: flex;
} }
header.tumblr { header.tumblr {
@ -81,7 +86,7 @@ header.tumblr {
background-color: rgb(0,0,0,0.8); background-color: rgb(0,0,0,0.8);
} }
header div { header #headerTitle, header #linksHelper {
padding: 1rem; padding: 1rem;
} }