use docsy page edit/issue setup
setting feedback buttons, primary color setting update i18n with issue string remove local edit page string
This commit is contained in:
@@ -1,12 +1,3 @@
|
||||
{{ if not (.Site.Param "deprecated") }}
|
||||
{{- $filepath := .page.File.Path }}
|
||||
{{- $editLink := printf "https://github.com/kubernetes/website/edit/master/content/%s/%s" .page.Language.Lang $filepath }}
|
||||
<p>
|
||||
<a href="{{ $editLink }}" id="editPageButton" target="_blank" data-proofer-ignore>
|
||||
Edit This Page
|
||||
</a>
|
||||
</p>
|
||||
{{- end -}}
|
||||
{{ if not .page.Params.notitle }}
|
||||
<h1>{{ .page.Title }}</h1>
|
||||
{{ $desc := .page.Description }}
|
||||
|
||||
@@ -1,48 +0,0 @@
|
||||
<div id="pre-footer">
|
||||
<!-- This is at the bottom of every topic underneath the TOC and content -->
|
||||
<hr/>
|
||||
|
||||
<div class="issue-button-container">
|
||||
{{ if and (ne .Kind "404") (not (strings.Contains .Path "search")) }}
|
||||
{{ if not .Params.no_issue }}
|
||||
<script type="text/javascript">
|
||||
PDRTJS_settings_8345992 = {
|
||||
"id": "8345992",
|
||||
"unique_id": "{{ .RelPermalink }}",
|
||||
"title": "{{ .Title }}",
|
||||
"permalink": "{{ .Permalink }}"
|
||||
};
|
||||
(function (d, c, j) {
|
||||
if (!document.getElementById(j)) {
|
||||
var pd = d.createElement(c),
|
||||
s;
|
||||
pd.id = j;
|
||||
pd.src = ("https:" == document.location.protocol)
|
||||
? "https://polldaddy.com/js/rating/rating.js"
|
||||
: "http://i0.poll.fm/js/rating/rating.js";
|
||||
s = document.getElementsByTagName(c)[0];
|
||||
s.parentNode.insertBefore(pd, s);
|
||||
}
|
||||
}(document, "script", "pd-rating-js"));
|
||||
</script>
|
||||
<a class="btn btn-primary mb-4 issue" href="" onclick="window.open('https://github.com/kubernetes/website/issues/new?template=bug-report.md&title=Issue%20with%20' +
|
||||
'k8s.io'+window.location.pathname)">{{ T "main_github_create_an_issue" }}</a>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ if not .Params.noedit }}
|
||||
{{ if .File }}
|
||||
<a class="btn btn-primary mb-4 issue" href="https://github.com/kubernetes/website/edit/master/content/{{ site.Language.Lang }}/{{ .File.Path }}">{{ T "main_edit_this_page" }}</a>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ if and (not .Params.showcommit) $.GitInfo }}
|
||||
|
||||
<div class="lastedit issue-button-container" id="lastedit">
|
||||
{{ T "main_page_last_modified_on" }}
|
||||
{{ .GitInfo.AuthorDate.Format "January 02, 2006 at 3:04 PM PST" }}
|
||||
{{ T "main_by" }}
|
||||
<a href="https://github.com/kubernetes/website/commit/{{ .GitInfo.Hash }}/">{{ .GitInfo.Subject }}</a>
|
||||
(<a href="https://github.com/kubernetes/website/commits/master/content/en/{{ .File.Path }}">{{ T "main_page_history" }}</a>)
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
@@ -0,0 +1,8 @@
|
||||
{{ partial "page-meta-links.html" . }}
|
||||
{{ if not .Params.notoc }}
|
||||
{{ with .TableOfContents }}
|
||||
{{ if ge (len .) 100 }}
|
||||
{{ . }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user