You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {{ 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 }}
|