summaryrefslogtreecommitdiffhomepage
path: root/layouts
diff options
context:
space:
mode:
authorIan Lewis <ianmlewis@gmail.com>2019-04-17 14:43:35 -0400
committerIan Lewis <ianlewis@google.com>2019-04-23 11:51:39 +0900
commitc010346c76457ed89b658e6030dd597cc5d6dcca (patch)
treec59c4a5b010b95eae46625e0127f4554d48631a5 /layouts
parent45028bdd82ca3f54d8bb0e99330b1bab6e64cb78 (diff)
Updated docsy to HEAD
- Docsy has support for the _styles_project.scss file now so we don't need to override main.scss anymore. - Docsy doc edit links now work for non-multilingual sites so we don't need to override page-meta-links.html anymore.
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/page-meta-links.html11
1 files changed, 0 insertions, 11 deletions
diff --git a/layouts/partials/page-meta-links.html b/layouts/partials/page-meta-links.html
deleted file mode 100644
index 5d590ee41..000000000
--- a/layouts/partials/page-meta-links.html
+++ /dev/null
@@ -1,11 +0,0 @@
-{{ if .Path }}
-{{ $gh_repo := ($.Param "github_repo") }}
-{{ 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 }}
-{{ $issuesURL := printf "%s/issues/new?title=%s" $gh_repo (htmlEscape $.Title )}}
-<a href="{{ $editURL }}" target="_blank" rel="noopener"><i class="fa fa-edit fa-fw"></i> {{ T "post_edit_this" }}</a>
-<a href="{{ $issuesURL }}" target="_blank" rel="noopener"><i class="fab fa-github fa-fw"></i> {{ T "post_create_issue" }}</a>
-</div>
-{{ end }}
-{{ end }}