old_blog/_includes/navbar.html

24 lines
1.3 KiB
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>
{% endif %} {% if site.linkedin_username %}
<a class="fa fa-linkedin" href="https://id.linkedin.com/in/{{ site.linkedin_username }}" title="LinkedIn"></a>
{% endif %} {% if site.facebook_username %}
<a class="fa fa-facebook" href="https://www.facebook.com/{{ site.facebook_username }}" title="Facebook"></a>
{% endif %} {% if site.500px_username %}
<a class="fa fa-500px" href="https://500px.com/{{ site.500px_username }}" title="500px"></a>
{% endif %} {% if site.instagram_username %}
<a class="fa fa-instagram" href="https://www.instagram.com/{{ site.instagram_username }}" title="Instagram"></a>
{% endif %}
</div>
<div class="col-6 text-right">
2019-08-08 03:44:10 -04:00
<a class="fa fa-home" href="/"></a>
<a class="fa fa-info" href="/about"></a>
<a class="fa fa-folder" href="/projects"></a>
<a class="fa fa-book" href="/resources"></a>
2019-07-05 14:16:46 -04:00
</div>
2019-08-08 03:42:27 -04:00
</div>