initial commit
This commit is contained in:
1
_includes/footer.html
Normal file
1
_includes/footer.html
Normal file
@ -0,0 +1 @@
|
||||
<p><small>Powered by <a href="https://jekyllrb.com/">Jekyll</a> — 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>
|
1
_includes/head-custom.html
Normal file
1
_includes/head-custom.html
Normal file
@ -0,0 +1 @@
|
||||
|
16
_includes/links-mobile.html
Normal file
16
_includes/links-mobile.html
Normal 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 }} {{ platform.name }}</a>
|
||||
{%- unless forloop.last %}<span style="margin-left: 6px;"></span>{% endunless %}</nobr>
|
||||
{%- endfor %}
|
||||
</div>
|
19
_includes/sidebar.html
Normal file
19
_includes/sidebar.html
Normal 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 }} {{ platform.name }}</a></li>
|
||||
<p>{{ platform.description | default: null }}</p>
|
||||
{%- endfor %}
|
||||
</ul>
|
||||
</div>
|
Reference in New Issue
Block a user