Add fontawesome and links to sidebar

This commit is contained in:
2017-11-26 16:29:37 -08:00
parent 277ccadce2
commit 4e3baca3d9
38 changed files with 9522 additions and 103 deletions

View File

@ -1,9 +1,7 @@
<li>
<a href="{{include.url}}" class="flag">
<span class="{{include.color}} flagButton">
<span class="flagText">{{include.name}}</span>
</span>
<span class="{{include.color}} flagPoint"></span>
<span class="dark-{{include.color}} flagFold"></span>
</a>
</li>
</a>

View File

@ -3,6 +3,9 @@
<title> {% if page.title %} {{ page.title }} | {% endif %} Andrew Cassidy</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/fa/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/fnoots.css"/>
<link rel="stylesheet" href="/css/style.css"/>
<link rel="stylesheet" href="/css/sidebar.css"/>
</head>

View File

@ -1,6 +1,25 @@
<ul id="sidebar">
{% include flag.html color="blue" name="Home" url="/" %}
{% include flag.html color="green" name="Blog" url="/Blog" %}
{% include flag.html color="orange" name="Projects" url="/Projects" %}
{% include flag.html color="magenta" name="About" url="/About" %}
</ul>
<nav id="sidebar">
<ul id="navFlags">
<li>{% include flag.html color="blue" name="Home" url="/" %}</li>
<li>{% include flag.html color="green" name="Blog" url="/Blog" %}</li>
<li>{% include flag.html color="orange" name="Projects" url="/Projects" %}</li>
<li>{% include flag.html color="magenta" name="About" url="/About" %}</li>
</ul>
<ul id="navLinks" class="fa-ul">
<li>
<a href="https://github.com/drewcassidy">
<i class="fa fa-li fa-github" aria-hidden="true"></i>Github
</a>
</li>
<li>
<a href="https://twitter.com/AndrewNCassidy">
<i class="fa fa-li fa-twitter" aria-hidden="true"></i> Twitter
</a>
</li>
<li>
<a href="https://github.com/drewcassidy/drewcassidy.github.io">
<i class="fa fa-li fa-code" aria-hidden="true"></i> This Site
</a>
</li>
</ul>
</nav>