Add fontawesome and links to sidebar
This commit is contained in:
@ -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>
|
@ -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>
|
@ -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>
|
Reference in New Issue
Block a user