Add social page with archived mastodon posts, move source to /site

This commit is contained in:
天クマ 2026-07-04 16:57:55 -03:00
commit 648869bf76
40 changed files with 58 additions and 2 deletions

6
site/misc/88x31/en.json Normal file
View file

@ -0,0 +1,6 @@
{
"pageDescription": "My collection of 88x31 GIFs and images.",
"intro": "This is the collection of 88x31 GIFs and images I've downloaded across the web.",
"others": "Others",
"me": "Made by me"
}

30
site/misc/88x31/index.njk Normal file
View file

@ -0,0 +1,30 @@
---
layout: base.njk
pagination:
data: languages
size: 1
alias: langKey
<!-- 88x31: WEBP.gif -->
pageTitle: 88x31
tags: misc
---
{% from "macros.njk" import i88x31 with context %}
<main class="misc88x31Page">
<div class="box pageHeaderBox">
<h1>88x31</h1>
<p>{{ t.intro }}</p>
</div>
<hr>
<h2>{{ t.me }}</h2>
<div class="homeBadgesBox">
{{ i88x31("tenkuma.gif") }}
{{ i88x31("mrnandokk.gif") }}
</div>
<h2>{{ t.others }}</h2>
<div class="homeBadgesBox">
{% for image in collections.88x31 %}
{{ i88x31(image.fileSlug) }}
{% endfor %}
</div>
</main>

6
site/misc/88x31/pt.json Normal file
View file

@ -0,0 +1,6 @@
{
"pageDescription": "Minha coleção de GIFs e imagens 88x31.",
"intro": "Essa é uma coleção de GIFs e imagens 88x31 que eu baixei pela internet.",
"others": "Outros",
"me": "Feitos por mim"
}