Convert .eleventy.js to EJS, add friends to index's aside, create playground page to test site elements, add syntax highlighting with custom theme, convert header subtitle from link to paragraph, add support for custom alt text in 88x31 macro, new template for generic text pages, add changelog to about page with recent commits.

This commit is contained in:
天クマ 2026-07-04 14:34:59 -03:00
commit ab071b0f78
18 changed files with 948 additions and 2524 deletions

View file

@ -32,4 +32,17 @@ background: "bear3.jpg"
<dt>GitHub Pages</dt>
<dd>{{ t.githubPagesDesc }}</dd>
</dl>
</main>
</main>
<aside>
<div id="aboutChangelog">
<div>
<h1 class="nomargin negativeMargin">Changelog</h1>
<hr style="margin-bottom: .4em;">
</div>
<ul>
{%- for commit in collections.recentChanges %}
<li><b>{{ commit.abbrevHash }}</b> {{ commit.subject }}</li>
{%- endfor %}
</ul>
</div>
</aside>