mirror of
https://github.com/bspeice/speice.io
synced 2024-11-05 01:28:09 -05:00
15 lines
751 B
HTML
15 lines
751 B
HTML
|
<div class="container">
|
||
|
<h2>{{ site.title }}</h1>
|
||
|
<h1>{{ site.description }}</h2>
|
||
|
<ul class="social">
|
||
|
{%- if site.texture.social_links.github -%}
|
||
|
<a href="https://github.com/{{ site.texture.social_links.github }}"><li><i class="icon-github-circled"></i></li></a>
|
||
|
{%- endif -%}
|
||
|
{%- if site.texture.social_links.linkedIn -%}
|
||
|
<a href="https://linkedin.com/{{ site.texture.social_links.linkedIn }}"><li><i class="icon-linkedin-squared"></i></li></a>
|
||
|
{%- endif -%}
|
||
|
{%- if site.texture.social_links.twitter -%}
|
||
|
<a href="https://twitter.com/{{ site.texture.social_links.twitter }}"><li><i class="icon-twitter-squared"></i></li></a>
|
||
|
{%- endif -%}
|
||
|
</ul>
|
||
|
</div>
|