You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
545 B
HTML
19 lines
545 B
HTML
<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>
|
|
{%- endfor %}
|
|
</ul>
|
|
</div>
|