Add social page with archived mastodon posts, move source to /site
This commit is contained in:
parent
a301a5cc5e
commit
648869bf76
40 changed files with 58 additions and 2 deletions
55
site/misc/about/index.njk
Normal file
55
site/misc/about/index.njk
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
---
|
||||
layout: base.njk
|
||||
pagination:
|
||||
data: languages
|
||||
size: 1
|
||||
alias: langKey
|
||||
tags: misc
|
||||
backgroundOpacity: "0.28"
|
||||
background: "bear3.jpg"
|
||||
---
|
||||
<main>
|
||||
<h1>{{ t.pageTitle }}</h1>
|
||||
<p>{{ t.introText1 }} <a href="https://github.com/adrianvic/adrianvic.github.io">{{ t.introRepoLinkText }}</a> {{ t.introText2 }} <a href="{{ ('/static/LICENSE.txt') | url }}">{{ t.introLicenseLinkText }}</a>.</p>
|
||||
<p>{{ t.privacyText1 }} <span class="noWrap">(<img class="lineHeight invertedc" src="{{ ('/static/images/gears.svg') | url }}">)</span> {{ t.privacyText2 }} <span class="noWrap">(<img class="lineHeight invertedc" src="{{ ('/static/images/sound-on.png') | url }}">)</span> {{ t.privacyText3 }}</p>
|
||||
|
||||
<h2>{{ t.attributionsHeading }}</h2>
|
||||
<dl>
|
||||
<dt>{{ t.bgImageLabel }}</dt>
|
||||
<dd>{{ t.bgImageCredit }}</dd>
|
||||
<dt>{{ t.badges88x31Label }}</dt>
|
||||
<dd><a href="https://88x31.nl/">88x31.nl</a></dd>
|
||||
<dd><a href="https://cyber.dabamos.de/88x31/">dabamos.de</a></dd>
|
||||
<dd><a href="https://neocities.org/browse">{{ t.neocitiesCommunity }}</a></dd>
|
||||
<dt>{{ t.clickSoundLabel }}</dt>
|
||||
<dd><a href="https://www.myinstants.com/en/instant/dog-clicker-7758/">lilypids @ Myinstants</a></dd>
|
||||
</dl>
|
||||
|
||||
<h2>{{ t.thanksHeading }}</h2>
|
||||
<dl>
|
||||
<dt>Eleventy (11ty)</dt>
|
||||
<dd>{{ t.eleventyDesc }}</dd>
|
||||
<dt>GitHub Pages</dt>
|
||||
<dd>{{ t.githubPagesDesc }}</dd>
|
||||
<dt><a href="https://www.npmjs.com/package/eleventy-plugin-recent-changes">eleventy-plugin-recent-changes</a> {{ i18n[langKey].by }} workeffortwaste</dt>
|
||||
<dd>{{ t.recentChangesPluginDesc }}</dd>
|
||||
<dt><a href="https://www.npmjs.com/package/eleventy-plugin-inline-link-favicon">eleventy-plugin-inline-link-favicon</a> {{ i18n[langKey].by }} bmuenzenmeyer</dt>
|
||||
<dd>{{ t.inlineFaviconPluginDesc }}</dd>
|
||||
<dt><a href="https://www.npmjs.com/package/eleventy-plugin-poison">eleventy-plugin-poison</a> {{ i18n[langKey].by }} gingerchew</dt>
|
||||
<dd>{{ t.poisonPluginDesc }}</dd>
|
||||
</dl>
|
||||
</main>
|
||||
<aside>
|
||||
<div id="aboutChangelog">
|
||||
<div>
|
||||
<h1 class="nomargin negativeMargin">{{ i18n[langKey].changes | smartTitle }}</h1>
|
||||
<hr style="margin-bottom: .4em;">
|
||||
</div>
|
||||
<ul>
|
||||
{%- for commit in collections.recentChanges %}
|
||||
<li class="doubleLine"><a class="textColored" href="https://github.com/adrianvic/adrianvic.github.io/commit/{{ commit.hash }}"><b>{{ commit.abbrevHash }}</b> {{ commit.subject }}</a></li>
|
||||
{%- endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% include 'widgets/internetometer-aside.html' %}
|
||||
</aside>
|
||||
Loading…
Reference in a new issue