mirror of
https://github.com/alrayyes/wiki.git
synced 2025-05-12 19:50:39 +00:00
fix last modified not working for capitalized pages
This commit is contained in:
parent
dbe9b338cc
commit
a45856d788
3 changed files with 14 additions and 3 deletions
layouts/_default
|
@ -15,7 +15,7 @@
|
|||
<article>
|
||||
<h1>All {{.Title}}</h1>
|
||||
<ul class="section-ul">
|
||||
{{- range .Pages.ByLastmod -}}
|
||||
{{- range .Pages.ByLastmod.Reverse -}}
|
||||
<li class="section-li">
|
||||
<div class="section">
|
||||
<div class="desc">
|
||||
|
@ -23,7 +23,7 @@
|
|||
<p>{{- .Summary -}}{{if .Truncated}}...{{end}}</p>
|
||||
</div>
|
||||
<p class="meta">
|
||||
{{ .ReadingTime }} minute read, Last updated {{ .Lastmod.Format "January 2, 2006" }}
|
||||
{{ .ReadingTime }} minute read. Last updated {{if ne .Date .Lastmod}}{{ .Lastmod.Format "January 2, 2006" }}{{else}}Unknown{{end}}
|
||||
</p>
|
||||
</div>
|
||||
</li>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<article>
|
||||
{{if .Title}}<h1>{{ .Title }}</h1>{{end}}
|
||||
<p class="meta">
|
||||
Last updated {{ .Lastmod.Format "January 2, 2006" }}
|
||||
Last updated {{if ne .Date .Lastmod}}{{ .Lastmod.Format "January 2, 2006" }}{{else}}Unknown{{end}}
|
||||
</p>
|
||||
{{if $.Site.Data.config.enableToc}}
|
||||
<aside class="mainTOC">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue