💾 Add some links #100DaysOfCode R1D23

This commit is contained in:
Dan Jones 2018-01-24 12:59:49 -06:00
commit 087cd014b3
5 changed files with 27 additions and 1 deletions

View file

@ -55,6 +55,10 @@ url: https://projects.danielrayjones.com
# then add in the baseurl here, like this: "/repository-name"
baseurl: "/danielrayjones"
collections:
links:
output: false
#
# !! You don't need to change any of the configuration flags below !!
#

View file

@ -21,7 +21,16 @@
<div class="row">
<div class="order-2 order-md-1 col-12 col-md-3 col-xl-2 bd-sidebard">
Here's a sidebar
<aside>
<header>
<h2>My Links</h2>
</header>
{% for link in site.links %}
{% if link.display == false %}{% continue %}{% endif %}
<p><a href="{{ link.url }}">{{ link.title }} </a></p>
{% endfor %}
</aside>
</div>
<main class="order-1 order-md-2 col-12 col-md-9 col-xl-8 py-md-3 pl-md-5 bd-content" role="main">

4
_links/01-github.md Normal file
View file

@ -0,0 +1,4 @@
---
title: My GitHub
url: https://github.com/goodevilgenius
---

4
_links/05-gists.md Normal file
View file

@ -0,0 +1,4 @@
---
title: My GitHub Gists
url: https://gist.github.com/goodevilgenius
---

5
_links/10-blog.md Normal file
View file

@ -0,0 +1,5 @@
---
title: Dan's Musings (blog)
url: https://goodevilgenius.org
display: false
---