diff --git a/_data/locale.toml b/_data/locale.toml index a532444..9218fb8 100644 --- a/_data/locale.toml +++ b/_data/locale.toml @@ -1,3 +1,7 @@ +[lang-available] +en = "esta página también está disponible en" +es = "this page also available in" + [license] en = "Do What The Fuck You Want To Public License" es = "Licencia Pública WTFPL" diff --git a/_img/nekojiru.xcf b/_img/nekojiru.xcf new file mode 100644 index 0000000..a6b621c Binary files /dev/null and b/_img/nekojiru.xcf differ diff --git a/_includes/footer.njk b/_includes/footer.njk index 391d01e..40ccb20 100644 --- a/_includes/footer.njk +++ b/_includes/footer.njk @@ -1 +1,11 @@ -

{% for button in 88x31.buttons.misc.slice(0, 3) %}{{ button.alt }}{% endfor %}
est. 2025 | yuki © {{ "license" | i18n }}

\ No newline at end of file + \ No newline at end of file diff --git a/_includes/lang-available.njk b/_includes/lang-available.njk new file mode 100644 index 0000000..7226e29 --- /dev/null +++ b/_includes/lang-available.njk @@ -0,0 +1,3 @@ +{% for link in page.url | locale_links %} +

{{ "lang-available" | i18n }} {{ link.label | lower }}

+{% endfor %} \ No newline at end of file diff --git a/_layouts/base.njk b/_layouts/base.njk index fc2000a..a8c92d6 100644 --- a/_layouts/base.njk +++ b/_layouts/base.njk @@ -1,5 +1,8 @@ --- lastfm: false +flight: + img: "/img/Witch-on-broom.gif" + url: "https://www.youtube.com/embed/w1dXpAJ1qfA" --- @@ -32,7 +35,7 @@ lastfm: false diff --git a/_layouts/home.njk b/_layouts/home.njk index 4e5d041..4d9b9ba 100644 --- a/_layouts/home.njk +++ b/_layouts/home.njk @@ -26,7 +26,6 @@ lastfm: true
{{ content | safe }} -
diff --git a/css/main.scss b/css/main.scss index 7ea9f29..a43cfa1 100644 --- a/css/main.scss +++ b/css/main.scss @@ -224,9 +224,33 @@ body { } } -footer p { - margin: 2px; - font-size: 0.7em; - text-align: right; +footer { + p { + margin: 2px; + font-size: 0.7em; + text-align: right; + } + .footer-flex { + display: flex; + flex-direction: row; + align-items: flex-start; + justify-content: space-between; + width: 100%; + .footer-left { + margin: auto 0px 0px 0px; + } + .footer-middle .nekojiru-angel { + background-image: url("/img/nekojiru.png"); + width: 64px; + height: 64px; + margin: auto 0px 0px 0px; + vertical-align: bottom; + &:hover { background-image: url("/img/nekojiruhalo.png"); } + } + + .footer-right { + margin: auto 0px 0px 0px; + } + } } diff --git a/img/nekojiru.png b/img/nekojiru.png index 1d5f504..de870a1 100644 Binary files a/img/nekojiru.png and b/img/nekojiru.png differ diff --git a/img/nekojiruhalo.png b/img/nekojiruhalo.png new file mode 100644 index 0000000..3cd5010 Binary files /dev/null and b/img/nekojiruhalo.png differ