- removed the category breakdowns
- list the top 15 posts on the main page
- include an archive of all the posts to date
- Embed the "about" section on the home page
{{ define "title" }}
{{.Page.Title}} | {{.Site.Params.siteBasename}}
{{ end }}
+{{ .Content }}
{{ define "main" }}
{{ range .Site.RegularPages.GroupByPublishDate "2006" }}
<h2>{{- .Key -}}</h2>
{{ end }}
{{ define "main" }}
{{ .Content}}
+<hr>
{{ partial "recent-posts.html" }}
{{ end }}
*/}}
<a href="{{ "/" | relURL}}">Home</a>
-{{ range .Site.Menus.main }}
- <a href="{{ .URL | relURL }}">{{ .Name }}</a>
-{{ end }}
+<a href="{{ "/list" | relURL}}">Archive</a>
+<a href="{{ "/pages/linkblog" | relURL}}">Linkblog</a>
<a href="{{ "/index.xml" | relURL }}"><img src="/icons/feed-icon-14x14.png"></a>
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/}}
-{{range first 1 (where site.RegularPages "Type" "in" (slice "feature" "daily")) }}
-<section id="daily-post">
- {{ with .Site.GetPage "pages/about" }}
- {{ .Content }}
- {{ end }}
-</section>
-<hr>
-{{end}}
<h2>All Recent Posts</h2>
<ul id="recent-posts">
{{range first site.Params.blogListLength (where site.RegularPages "Type" "in" "posts") }}