24 lines
1.0 KiB
HTML
24 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
{{- $filePath := .File -}}
|
|
{{- $gitUrl := .Site.Params.giturl -}}
|
|
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-us{{ end }}">
|
|
{{- partial "head.html" . -}}
|
|
<body>
|
|
{{ with .Site.Data.myvars.edit }}
|
|
<div class="headiter">
|
|
<a class="edit-button" target="_blank" href="{{ $gitUrl }}/_edit/master/content/{{ $filePath }}">edit_this</a>
|
|
<a class="edit-button" target="_blank" href="{{ $gitUrl }}/_new/master/content/topic/">add_new_topic</a>
|
|
<a class="edit-button" target="_blank" href="{{ $gitUrl }}/_new/master/content/session/">add_new_session</a>
|
|
<a class="edit-button" target="_blank" href="{{ $gitUrl }}/_edit/master/PUBLISH.trigger.md">publish</a>
|
|
<a class="edit-button" target="_blank" href="{{ $gitUrl }}"> ? </a>
|
|
</div>
|
|
{{ end }}
|
|
{{- partial "header.html" . -}}
|
|
|
|
{{$currentNode := . }}
|
|
<h1>{{ .Title }}</h1>
|
|
{{- block "main" . }}{{- end }}
|
|
{{- partial "footer.html" . -}}
|
|
</body>
|
|
</html>
|