reachableceo.com/themes/JuiceBar/layouts/_default/list.html

17 lines
514 B
HTML
Raw Normal View History

2024-11-01 18:09:39 +00:00
{{/* 列表类型页面的通用模板.点击blog之后展示出来的页面 */}}
{{/* user为博客文章列表创建一个索引页面。
>> hugo new blog/_index.md */}}
{{ define "main" }}
<div class="container">
<div class="section">
<div class="content">
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ range .Pages.ByPublishDate.Reverse }}
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{ end }}
</div>
</div>
</div>
{{ end }}