Ver código fonte

Add bookmarks template

master
Adrian Short 1 ano atrás
pai
commit
d0a9256d89
1 arquivos alterados com 33 adições e 0 exclusões
  1. +33
    -0
      layouts/_default/bookmarks.html

+ 33
- 0
layouts/_default/bookmarks.html Ver arquivo

@@ -0,0 +1,33 @@
{{ define "main" }}
<article>
<h1>{{ .Title }}</h1>
<p class=byline>Collected by <a href=/>{{ .Site.Params.AuthorName }}</a>.</p>
{{ .Content }}

<h2>Categories</h2>
<ul>
{{- range sort .Site.Data.bookmarks "title" }}
<li><a href="#{{ urlize .title }}">{{ .title }}</a></li>
{{- end }}
</ul>

{{ range sort .Site.Data.bookmarks "title" }}
<section id="{{ urlize .title }}">
<h2>{{ .title }}</h2>
{{ if .notes -}}
<p>{{ .notes }}</p>
{{ end }}
{{- range sort .bookmarks "title" }}
<div>
<h3>
<a href="{{ .url }}">{{ .title }}</a>
</h3>
{{ if .notes -}}
<p>{{ .notes }}</p>
{{- end }}
</div>
{{- end }}
</section>
{{- end }}
</article>
{{ end }}

Carregando…
Cancelar
Salvar