revamp projects, continue editing and add precommit hook for lastmod frontmatter
This commit is contained in:
+14
-14
@@ -1,18 +1,18 @@
|
||||
{{ define "main" }}
|
||||
<div class="container">
|
||||
<h1>All posts for {{ .Type | singularize }} "{{ .Title }}"</h1>
|
||||
</br>
|
||||
{{ range .Data.Pages }}
|
||||
<div class="post-entry">
|
||||
<a href="{{ .Permalink }}">
|
||||
<div style="display:flex;flex-direction:row; justify-content: space-between;">
|
||||
<h3>{{ .Title }}</h3>
|
||||
<p>{{ .Date | time.Format ":date_medium" }}</p>
|
||||
</div>
|
||||
</br>
|
||||
<p>{{ .Summary }}</p>
|
||||
</a>
|
||||
</div>
|
||||
{{ end }}
|
||||
<h1>All posts for {{ .Type | singularize }} "{{ .Title }}"</h1>
|
||||
</br>
|
||||
{{ range .Data.Pages }}
|
||||
<div class="post-entry">
|
||||
<a href="{{ .Permalink }}">
|
||||
<div style="display:flex;flex-direction:row; justify-content: space-between;">
|
||||
<h3>{{ .Title }}</h3>
|
||||
<p>{{ .Date | time.Format ":date_medium" }}</p>
|
||||
</div>
|
||||
</a>
|
||||
<p>{{ .Params.Description }}</p>
|
||||
</div>
|
||||
</br>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end}}
|
||||
Reference in New Issue
Block a user