diff options
author | Henry Lee <lee0906@hotmail.com> | 2019-12-03 10:39:18 +1100 |
---|---|---|
committer | Ian Lewis <ianlewis@google.com> | 2019-12-03 17:33:18 +0900 |
commit | 57907f83d7dbf93ff62c008eda749d86ca1d786d (patch) | |
tree | cde6d9db7daf17bedf4e881b65d9e81b66b3e6c5 /themes/docsy/layouts/partials/page-meta-links.html | |
parent | eecdc5b3c3ce5789b75b018bf3ac8e8a7b534bee (diff) |
Copy the page-meta-links.html file from docsy to the local directory
Diffstat (limited to 'themes/docsy/layouts/partials/page-meta-links.html')
-rw-r--r-- | themes/docsy/layouts/partials/page-meta-links.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/docsy/layouts/partials/page-meta-links.html b/themes/docsy/layouts/partials/page-meta-links.html index ce75b8163..8e2650f81 100644 --- a/themes/docsy/layouts/partials/page-meta-links.html +++ b/themes/docsy/layouts/partials/page-meta-links.html @@ -5,9 +5,9 @@ {{ if $gh_repo }} <div class="td-page-meta ml-2 pb-1 pt-2 mb-0"> {{ $editURL := printf "%s/edit/master/content/%s" $gh_repo .Path }} -{{ if and ($gh_subdir) (.Site.IsMultiLingual) }} +{{ if and ($gh_subdir) (.Site.Language.Lang) }} {{ $editURL = printf "%s/edit/master/%s/content/%s/%s" $gh_repo $gh_subdir ($.Site.Language.Lang) $.Path }} -{{ else if .Site.IsMultiLingual }} +{{ else if .Site.Language.Lang }} {{ $editURL = printf "%s/edit/master/content/%s/%s" $gh_repo ($.Site.Language.Lang) .Path }} {{ else if $gh_subdir }} {{ $editURL = printf "%s/edit/master/%s/content/%s" $gh_repo $gh_subdir $.Path }} |