Browse Source

Preview header

master
Sean Dockray 3 years ago
parent
commit
453919142d
2 changed files with 5 additions and 3 deletions
  1. +2
    -0
      config/preview/config.toml
  2. +3
    -3
      themes/sandpoints/layouts/_default/baseof.html

+ 2
- 0
config/preview/config.toml View File

@@ -0,0 +1,2 @@
[params]
edit = true

+ 3
- 3
themes/sandpoints/layouts/_default/baseof.html View File

@@ -1,11 +1,11 @@
<!DOCTYPE html>
{{- $filePath := .File -}}
{{- $gitUrl := .Site.Data.myvars.giturl -}}
{{- $gitUrl := .Site.Params.giturl -}}
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-us{{ end }}">
{{- partial "head.html" . -}}
{{ partialCached "css.html" . }}
<body>
{{ with .Site.Data.myvars.edit }}
{{ with .Site.Params.edit }}
<div class="flex justify-between sticky top-0 static border-b-8 z-10 border-red bg-white px-1 pt-2">
<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>
@@ -21,4 +21,4 @@
{{- block "main" . }}{{- end }}
{{- partial "footer.html" . -}}
</body>
</html>
</html>

Loading…
Cancel
Save