Try some Jekyll magic.
This commit is contained in:
parent
1058e3791f
commit
dd1d213db5
21 changed files with 29 additions and 37 deletions
3
_config.yml
Normal file
3
_config.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
collections:
|
||||
- projects
|
||||
|
|
@ -37,25 +37,14 @@
|
|||
Home</a></li>
|
||||
<li><label for="mb_2" id="projs_label">Projects</label></li>
|
||||
<ul id="projects">
|
||||
<li>GitHub Page<br />
|
||||
<div>
|
||||
<a href="#">[ Page ]</a>
|
||||
<a href="https://github.com/VagabondAzulien/VagabondAzulien.github.io">[ Source ]</a>
|
||||
</div>
|
||||
</li>
|
||||
<li>Dot Files<br />
|
||||
<div>
|
||||
<a href="#">[ Page ]</a>
|
||||
<a href="#">[ Source ]</a>
|
||||
</div>
|
||||
</li>
|
||||
<li>Antennae<br />
|
||||
<div>
|
||||
<a href="#">[ Page ]</a>
|
||||
<a href="https://github.com/VagabondAzulien/antennae">
|
||||
[ Source ]</a>
|
||||
</div>
|
||||
</li>
|
||||
{% for pr in site.project limit:3 %}
|
||||
<li>{{ pr.title }}<br />
|
||||
<div>
|
||||
<a href="{{ pr.p_url }}">[ Page ]</a>
|
||||
<a href="{{ pr.s_url }}">[ Source ]</a>
|
||||
</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<li><label for="mb_3" id="posts_label"> Posts</label></li>
|
||||
<ul id="posts">
|
||||
|
@ -70,24 +59,14 @@
|
|||
<input type="radio" name="menu_buttons" id="mb_2" />
|
||||
<ul id="menu" name="projects_all">
|
||||
<li><label for="mb_1" id="nav_label">Main Menu</label></li>
|
||||
<li>GitHub Page<br />
|
||||
<div>
|
||||
<a href="#">[ Page ]</a>
|
||||
<a href="https://github.com/VagabondAzulien/VagabondAzulien.github.io">[ Source ]</a>
|
||||
</div>
|
||||
</li>
|
||||
<li>Dot Files<br />
|
||||
<div>
|
||||
<a href="#">[ Page ]</a>
|
||||
<a href="#">[ Source ]</a>
|
||||
</div>
|
||||
</li>
|
||||
<li>Antennae<br />
|
||||
<div>
|
||||
<a href="#">[ Page ]</a>
|
||||
<a href="https://github.com/VagabondAzulien/antennae">[ Source ]</a>
|
||||
</div>
|
||||
</li>
|
||||
{% for pr in site.project limit:3 %}
|
||||
<li>{{ pr.title }}<br />
|
||||
<div>
|
||||
<a href="{{ pr.p_url }}">[ Page ]</a>
|
||||
<a href="{{ pr.s_url }}">[ Source ]</a>
|
||||
</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<input type="radio" name="menu_buttons" id="mb_3" />
|
||||
<ul id="menu" name="posts_all">
|
||||
|
|
10
_projects/project_list.md
Normal file
10
_projects/project_list.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
project:
|
||||
- title: "GitHub Pages"
|
||||
s_url: "https://github.com/VagabondAzulien/VagabondAzulien.github.io"
|
||||
p_url: ""
|
||||
- title: "Dotfiles"
|
||||
s_url: "https://github.com/VagabondAzulien/dotfiles"
|
||||
p_url: ""
|
||||
- title: "Antennae"
|
||||
s_url: "https://github.com/VagabondAzulien/antennae"
|
||||
p_url: ""
|
Loading…
Reference in a new issue