Skip to content

Commit

Permalink
change nav page name
Browse files Browse the repository at this point in the history
  • Loading branch information
Firsh3k committed Apr 26, 2012
1 parent c372526 commit 2401784
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _includes/themes/mark-reid/default.html
Expand Up @@ -37,9 +37,9 @@ <h1>
</h1>
<ul class="nav">
<li><a class="home" href="{{ HOME_PATH }}">Home</a></li>
<li><a href="/life/lifes.html">Life</a></li>
<li><a href="/health/health.html">Health</a></li>
<li><a href="/work/work.html">Work</a></li>
<li><a href="/life/past.html">Life</a></li>
<li><a href="/health/past.html">Health</a></li>
<li><a href="/work/past.html">Work</a></li>
<li><a href="atom.xml">RSS</a></li>
<li><a href="/info.html">About</a></li>
</ul>
Expand Down
16 changes: 16 additions & 0 deletions health/past.html
@@ -0,0 +1,16 @@
---
layout: page
title: Life
header: Posts By Category
group: navigation
---
{% include JB/setup %}


{% for healthpost in site.categories.health %}
<h2 id="{{ category[0] }}-ref">{{ category[0] | join: "/" }}</h2>
<ul>
<li><span>{{ healthpost.date | date_to_string }}</span> &raquo; <a href="{{ BASE_PATH }}{{ healthpost.url }}">{{ healthpost.title }}</a></li>
{% include JB/pages_list %}
</ul>
{% endfor %}
16 changes: 16 additions & 0 deletions life/past.html
@@ -0,0 +1,16 @@
---
layout: page
title: Life
header: Posts By Category
group: navigation
---
{% include JB/setup %}


{% for lifepost in site.categories.life %}
<h2 id="{{ category[0] }}-ref">{{ category[0] | join: "/" }}</h2>
<ul>
<li><span>{{ lifepost.date | date_to_string }}</span> &raquo; <a href="{{ BASE_PATH }}{{ lifepost.url }}">{{ lifepost.title }}</a></li>
{% include JB/pages_list %}
</ul>
{% endfor %}
18 changes: 18 additions & 0 deletions work/past.html
@@ -0,0 +1,18 @@
---
layout: page
title: Life
header: Posts By Category
group: navigation
---
{% include JB/setup %}


{% for Workpost in site.categories.work %}
<h2 id="{{ category[0] }}-ref">{{ category[0] | join: "/" }}</h2>
<ul>
<li><span>{{ Workpost.date | date_to_string }}</span> &raquo; <a href="{{ BASE_PATH }}{{ Workpost.excerpt }}">{{ Workpost.title }}</a></li>

{% include JB/pages_list %}
</ul>
{% endfor %}

0 comments on commit 2401784

Please sign in to comment.