Skip to content
Snippets Groups Projects
Commit 251fb575 authored by micressor's avatar micressor
Browse files

Add section.html template

So we can see articles in sections like

* $BaseURL/news
* $BaseURL/hiring

May be we can add a News navigation link
parent 2c1cac0f
No related branches found
No related tags found
1 merge request!24Feature hugo migration
{{ define "main" }}
<div id="container">
<div id="content">
<h1>{{ with .Title }} {{ . }} {{ else }} {{ .Site.Title }} {{ end }}</h1>
{{ range first 10 .Pages.ByDate.Reverse }}
<h3 itemprop="headline" class="blog-post-title">
<a href="{{.Permalink}}">{{.Title}}</a>
</h3>
<p class="blog-post-meta">{{.Date.Format "2006-01-02"}}
{{ if (isset .Params "author") }}
by {{ markdownify .Params.author }}
{{ end }}
</p>
{{ end }}
{{ .Content }}
</div> <!-- content -->
</div> <!-- container -->
{{ end }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment