old_blog/_includes/navbar.html

18 lines
861 B
HTML
Raw Normal View History

2019-07-05 14:16:46 -04:00
<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>
2019-10-23 00:19:42 -04:00
{% endif %} {% if site.linkedin_username %}
2019-07-05 14:16:46 -04:00
<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">
2019-08-08 03:45:50 -04:00
<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>
2019-07-05 14:16:46 -04:00
</div>
2019-08-08 03:42:27 -04:00
</div>