old_blog/_includes/navbar.html
2019-10-23 00:13:25 -04:00

20 lines
983 B
HTML
Executable File

<div class="row navbar">
<div class="col-6">
{% if site.github_username %}
<a class="fa fa-github" href="https://github.com/{{ site.github_username }}" title="GitHub"></a>
{% endif %} {% if site.twitter_username %}
<a class="fa fa-twitter" href="https://twitter.com/{{ site.twitter_username }}" title="Twitter"></a>
{% endif %} {% if site.mastodon_url %}
<a class="fa fa-mastodon" href="{{ site.mastodon_url }}" title="Mastodon"></a>
{% if site.linkedin_username %}
<a class="fa fa-linkedin" href="https://id.linkedin.com/in/{{ site.linkedin_username }}" title="LinkedIn"></a>
{% endif %}
</div>
<div class="col-6 text-right">
<a class="fa fa-home" href="/" alt="Home"></a>
<a class="fa fa-info" href="/about" alt="About"></a>
<a class="fa fa-folder" href="/projects" alt="Projects"></a>
<a class="fa fa-book" href="/resources" alt="Resources"></a>
</div>
</div>