initial commit

This commit is contained in:
2024-02-26 13:16:37 +01:00
commit cd37997635
16 changed files with 944 additions and 0 deletions

1
_includes/footer.html Normal file
View File

@ -0,0 +1 @@
<p><small>Powered by <a href="https://jekyllrb.com/">Jekyll</a> &mdash; Based on a theme from <a href="https://www.bodunhu.com/">BDHU</a>, <a href="https://pixabay.com/photos/gentoo-penguin-penguin-calgary-zoo-1502922/">logo credits</a></small></p>

View File

@ -0,0 +1 @@

View File

@ -0,0 +1,16 @@
<div class="link-wrapper-mobile" id="link-wrapper-mobile">
<style scoped>
#link-wrapper-mobile a {
color:var(--clr-h1-and-bold);
text-decoration:none;
}
#link-wrapper-mobile a:hover, a:focus {
color: var(--clr-a-text-hvr);
}
</style>
{%- for platform in site.sidebar %}
<nobr><a href="{{ platform.link }}" rel="me">{{ platform.icon }}&nbsp;{{ platform.name }}</a>
{%- unless forloop.last %}<span style="margin-left: 6px;"></span>{% endunless %}</nobr>
{%- endfor %}
</div>

19
_includes/sidebar.html Normal file
View File

@ -0,0 +1,19 @@
<div class="link-wrapper">
<style scoped>
ul.link a {
color:var(--clr-h1-and-bold);
text-decoration:none;
}
ul.link a:hover, a:focus {
color: var(--clr-a-text-hvr);
}
</style>
<ul class="link">
{%- for platform in site.sidebar %}
<!-- <li><a href="{{ platform.link }}"><i class="{{ platform.icon }}"></i> {{ platform.name }}</a></li> -->
<li><a href="{{ platform.link }}">{{ platform.icon }}&nbsp;{{ platform.name }}</a></li>
<p>{{ platform.description | default: null }}</p>
{%- endfor %}
</ul>
</div>