{{ define "title" }} {{ .Title }} – {{ .Site.Title }} {{ end }} {{ define "main" }} {{ $currentUrl := .RelPermalink }} {{ $tutorials := where site.Pages ".Layout" "tutorials" }} {{ $async := where $tutorials ".Params.type" "eq" "async" }} {{ $auth := where $tutorials ".Params.type" "eq" "auth" }} {{ $basic := where $tutorials ".Params.type" "eq" "basic" }}
Documentation
{{ partial "docs-topnav.html" . }}
Tutorials {{ range $auth }} {{ $isCurrentPage := eq $currentUrl .RelPermalink }} {{ $title := .Params.short }} {{ $title }} {{ end }} {{ range $async }} {{ $isCurrentPage := eq $currentUrl .RelPermalink }} {{ $title := .Params.short }} {{ $title }} {{ end }} Basic {{ range $basic }} {{ $isCurrentPage := eq $currentUrl .RelPermalink }} {{ $title := .Params.short }} {{ $title }} {{ end }}

{{ .Title }}

{{ .Content }}
{{ end }}