1234567891011121314151617181920212223242526272829303132333435363738 |
- {{ define "main" }}
- {{ with .Params.description -}}
- <p class="description dim">{{ . }}</p>
- {{ end -}}
- <div class="content">
- {{ with .Params.featuredImage -}}
- {{ with $.Resources.GetMatch . -}}
- <figure class="big">
- <img src="{{.RelPermalink}}" alt="featured image" width="{{.Width}}" height="{{.Height}}">
- </figure>
- {{ end -}}
- {{ end -}}
- <ul class="lsn dim post-info writing">
- <li>
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-calendar"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg> {{ dateFormat ":date_long" .Date.Local }}
- </li>
- <li>
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg> {{ .WordCount }}字
- </li>
- {{ with .Params.tags -}}
- <li>
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-tag meta-icon"><path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"></path><line x1="7" y1="7" x2="7" y2="7"></line></svg> {{ range . -}}<a href="{{ "tags/" | relURL }}{{ . | urlize }}" class="post-tag">{{.}}</a>{{ end }}
- </li>
- {{ end -}}
- </ul>
- {{ with .Content -}}{{ . }}{{ end }}
- <ul class="lsn dim post-footer">
- <li>/* 最后更新于{{ dateFormat "2006-01-02 15:04 MST" .Lastmod.UTC }} */</li>
- {{- with .PrevInSection }}
- <li>上一篇:<a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
- {{- end }}
- {{- with .NextInSection }}
- <li>下一篇:<a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
- {{- end }}
- </ul>
- {{ partialCached "comments.html" . }}
- </div>
- {{- end }}
|