Add Edit on GitHub #116

Merged
lunny merged 4 commits from :edit-this into master 2022-11-30 13:30:57 +00:00
8 changed files with 22 additions and 0 deletions

View File

@ -12,3 +12,6 @@
- id: page_next
translation: "Next"
- id: edit_this_page
translation: "Edit this page"

View File

@ -12,3 +12,6 @@
- id: page_next
translation: "Volgende"
- id: edit_this_page
translation: "Bewerk deze pagina"

View File

@ -12,3 +12,6 @@
- id: page_next
translation: "Próximo"
- id: edit_this_page
translation: "Edite essa página"

View File

@ -12,3 +12,6 @@
- id: page_next
translation: "后一页"
- id: edit_this_page
translation: "编辑此页面"

View File

@ -12,3 +12,6 @@
- id: page_next
translation: "下一頁"
- id: edit_this_page
translation: "編輯此頁面"

View File

@ -10,6 +10,8 @@
<div class="column is-three-quarters">
<div class="content">
{{ .Content }}
<hr>
{{ partial "edit_this_page" . }}
</div>
</div>
</div>

View File

@ -10,6 +10,8 @@
<div class="column">
<div class=" content">
{{ .Content }}
<hr>
{{ partial "edit_this_page" . }}
</div>
</div>
</div>

View File

@ -0,0 +1,3 @@
{{- if and .Site.Params.repo .File -}}
<a href="{{ .Site.Params.repo }}/edit/main/{{ .Site.Params.docContentPath }}/{{ .File.Path }}">{{- T "edit_this_page" -}}</a>
{{- end -}}