trying chirpy theme
Some checks failed
Deploy Jekyll site to Pages / build (push) Failing after 7m43s

This commit is contained in:
2024-11-14 14:44:22 +01:00
parent 88445429f8
commit 79e87b8af2
183 changed files with 12108 additions and 224 deletions

20
_layouts/page.html Normal file
View File

@@ -0,0 +1,20 @@
---
layout: default
---
{% include lang.html %}
<article class="px-1">
{% if page.layout == 'page' or page.collection == 'tabs' %}
{% assign tab_key = page.title | downcase %}
{% assign title = site.data.locales[lang].tabs[tab_key] | default: page.title %}
<h1 class="dynamic-title">
{{ title }}
</h1>
<div class="content">
{{ content }}
</div>
{% else %}
{{ content }}
{% endif %}
</article>