File tree 4 files changed +22
-35
lines changed
4 files changed +22
-35
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ params:
133
133
134
134
editURL :
135
135
enable : true
136
- where : " toc" # single | toc
136
+ location : " toc" # single | toc
137
137
base : " https://github.com/imfing/hextra/edit/main/exampleSite/content"
138
138
139
139
blog :
Original file line number Diff line number Diff line change
1
+ {{- $editThisPage := (T "editThisPage") | default "Edit this page"}}
2
+
3
+ < div class ="mt-12 mb-8 block text-xs text-gray-500 ltr:text-right rtl:text-left dark:text-gray-400 ">
4
+ {{- if and (site.Params.editURL.enable) (eq site.Params.editURL.location .source) -}}
5
+ {{- $editURL := site.Params.editURL.base | default "" -}}
6
+ {{- with .Params.editURL -}}
7
+ {{/* if `editURL` is set in the front matter */}}
8
+ {{- $editURL = . -}}
9
+ {{- else -}}
10
+ {{- with .File -}}
11
+ {{/* `.FileInfo.Meta.SourceRoot` is a Hugo internal field, e.g. `/path/to/repo/content/en/` */}}
12
+ {{- $sourceDir := replace (strings.TrimPrefix .FileInfo.Meta.BaseDir .FileInfo.Meta.SourceRoot) "\\" "/" -}}
13
+ {{- $sourceDir = strings.TrimPrefix "/content" $sourceDir -}}
14
+ {{- $path := replace .Path "\\" "/" -}}
15
+ {{- $editURL = urls.JoinPath $editURL $sourceDir $path -}}
16
+ {{- end -}}
17
+ {{- end -}}
18
+ < a class ="mb-4 block text-xs text-gray-500 ltr:text-right rtl:text-left dark:text-gray-400 " href ="{{ $editURL }} " target ="_blank " rel ="noreferer "> {{ $editThisPage }}</ a >
19
+ {{- end -}}
Original file line number Diff line number Diff line change 2
2
{{- $editThisPage := (T "editThisPage") | default "Edit this page"}}
3
3
4
4
{{- if site.Params.displayUpdatedDate -}}
5
- < div class ="mt-12 mb-8 block text-xs text-gray-500 ltr:text-right rtl:text-left dark:text-gray-400 ">
6
- {{- if and (site.Params.editURL.enable) (eq site.Params.editURL.where "single") -}}
7
- {{- $editURL := site.Params.editURL.base | default "" -}}
8
- {{- with .Params.editURL -}}
9
- {{/* if `editURL` is set in the front matter */}}
10
- {{- $editURL = . -}}
11
- {{- else -}}
12
- {{- with .File -}}
13
- {{/* `.FileInfo.Meta.SourceRoot` is a Hugo internal field, e.g. `/path/to/repo/content/en/` */}}
14
- {{- $sourceDir := replace (strings.TrimPrefix .FileInfo.Meta.BaseDir .FileInfo.Meta.SourceRoot) "\\" "/" -}}
15
- {{- $sourceDir = strings.TrimPrefix "/content" $sourceDir -}}
16
- {{- $path := replace .Path "\\" "/" -}}
17
- {{- $editURL = urls.JoinPath $editURL $sourceDir $path -}}
18
- {{- end -}}
19
- {{- end -}}
20
- < a class ="mb-4 block text-xs text-gray-500 ltr:text-right rtl:text-left dark:text-gray-400 " href ="{{ $editURL }} " target ="_blank " rel ="noreferer "> {{ $editThisPage }}</ a >
21
- {{- end -}}
5
+ {{ partial "components/edit-url.html" (dict "source" "single") }}
22
6
{{- with .Lastmod -}}
23
7
{{ $datetime := (time.Format "2006-01-02T15:04:05.000Z" .) }}
24
8
{{ $lastUpdated }} < time datetime ="{{ $datetime }} "> {{ partial "utils/format-date" . }}</ time > </ div>
Original file line number Diff line number Diff line change 23
23
{{- end -}}
24
24
25
25
{{/* TOC bottom part */}}
26
- < div class ="{{ $borderClass }} sticky bottom-0 flex flex-col items-start gap-2 pb-8 dark:border-neutral-800 contrast-more:border-t contrast-more:border-neutral-400 contrast-more:shadow-none contrast-more:dark:border-neutral-400 ">
27
- {{- if and (site.Params.editURL.enable) (eq site.Params.editURL.where "toc") -}}
28
- {{- $editURL := site.Params.editURL.base | default "" -}}
29
- {{- with .Params.editURL -}}
30
- {{/* if `editURL` is set in the front matter */}}
31
- {{- $editURL = . -}}
32
- {{- else -}}
33
- {{- with .File -}}
34
- {{/* `.FileInfo.Meta.SourceRoot` is a Hugo internal field, e.g. `/path/to/repo/content/en/` */}}
35
- {{- $sourceDir := replace (strings.TrimPrefix .FileInfo.Meta.BaseDir .FileInfo.Meta.SourceRoot) "\\" "/" -}}
36
- {{- $sourceDir = strings.TrimPrefix "/content" $sourceDir -}}
37
- {{- $path := replace .Path "\\" "/" -}}
38
- {{- $editURL = urls.JoinPath $editURL $sourceDir $path -}}
39
- {{- end -}}
40
- {{- end -}}
41
- < a class ="text-xs font-medium text-gray-500 hover:text-gray-900 dark:text-gray-400 dark:hover:text-gray-100 contrast-more:text-gray-800 contrast-more:dark:text-gray-50 " href ="{{ $editURL }} " target ="_blank " rel ="noreferer "> {{ $editThisPage }}</ a >
42
- {{- end -}}
26
+ {{ partial "components/edit-url.html" (dict "source" "toc") }}
43
27
{{/* Scroll To Top */}}
44
28
< button aria-hidden ="true " id ="backToTop " onClick ="scrollUp(); " class ="transition-all transition duration-75 opacity-0 text-xs font-medium text-gray-500 hover:text-gray-900 dark:text-gray-400 dark:hover:text-gray-100 contrast-more:text-gray-800 contrast-more:dark:text-gray-50 ">
45
29
< span >
You can’t perform that action at this time.
0 commit comments