💾 Add some links #100DaysOfCode R1D23
This commit is contained in:
parent
21b9550d7b
commit
087cd014b3
5 changed files with 27 additions and 1 deletions
|
|
@ -55,6 +55,10 @@ url: https://projects.danielrayjones.com
|
||||||
# then add in the baseurl here, like this: "/repository-name"
|
# then add in the baseurl here, like this: "/repository-name"
|
||||||
baseurl: "/danielrayjones"
|
baseurl: "/danielrayjones"
|
||||||
|
|
||||||
|
collections:
|
||||||
|
links:
|
||||||
|
output: false
|
||||||
|
|
||||||
#
|
#
|
||||||
# !! You don't need to change any of the configuration flags below !!
|
# !! You don't need to change any of the configuration flags below !!
|
||||||
#
|
#
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,16 @@
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="order-2 order-md-1 col-12 col-md-3 col-xl-2 bd-sidebard">
|
<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>
|
</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">
|
<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
4
_links/01-github.md
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: My GitHub
|
||||||
|
url: https://github.com/goodevilgenius
|
||||||
|
---
|
||||||
4
_links/05-gists.md
Normal file
4
_links/05-gists.md
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: My GitHub Gists
|
||||||
|
url: https://gist.github.com/goodevilgenius
|
||||||
|
---
|
||||||
5
_links/10-blog.md
Normal file
5
_links/10-blog.md
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Dan's Musings (blog)
|
||||||
|
url: https://goodevilgenius.org
|
||||||
|
display: false
|
||||||
|
---
|
||||||
Loading…
Add table
Add a link
Reference in a new issue