mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
change front page to have a timeline of posts
This commit is contained in:
14
layouts/partials/timeline.html
Normal file
14
layouts/partials/timeline.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<section class="container list">
|
||||
<h1 class="title">
|
||||
Projects
|
||||
</h1>
|
||||
<ul>
|
||||
{{ range .Paginator.Pages }}
|
||||
<li>
|
||||
<span class="date">{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}</span>
|
||||
<a class="title" href="{{ .Params.ExternalLink | default .RelPermalink }}">{{ .Title }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ partial "pagination.html" . }}
|
||||
</section>
|
||||
Reference in New Issue
Block a user