Rename archive.html to posts.html and all instances

master
Michael Rose 2014-02-26 15:24:42 -05:00
parent ae95c7192b
commit 31b07c1f55
3 changed files with 4 additions and 5 deletions

View File

@ -46,7 +46,7 @@
<li>
<a href="#">Posts</a>
<ul class="dl-submenu">
<li><a href="{{ site.url }}/archive/">All Posts</a></li>
<li><a href="{{ site.url }}/posts/">All Posts</a></li>
<li><a href="{{ site.url }}/tags/">All Tags</a></li>
</ul>
</li>

View File

@ -1,8 +1,7 @@
---
layout: post-index
permalink: /articles/
permalink: /posts/
title: All Posts
permalink: /archive/index.html
description: "An archive of posts."
---

View File

@ -32,7 +32,7 @@ General notes and suggestions for customizing **HPSTR**.
## Setup for an Existing Jekyll site
1. Clone the following folders: `_includes`, `_layouts`, `assets`, and `images`.
2. Clone the following files and personalize content as need: `about.md`, `archive.html`, `index.html`, `tags.html`, and `feed.xml`.
2. Clone the following files and personalize content as need: `about.md`, `posts.html`, `index.html`, `tags.html`, and `feed.xml`.
3. Set the following variables in your `config.yml` file:
{% highlight yaml %}
@ -115,8 +115,8 @@ hpstr-jekyll-theme/
├── images # images for posts and pages
├── _config.yml # Jekyll options
├── about.md # about page
├── archive.html # all posts
├── index.html # home page
├── posts.html # all posts
└── tags.html # all posts grouped by tag
{% endhighlight %}