mirror of https://github.com/istio/istio.io.git
71 lines
2.9 KiB
HTML
71 lines
2.9 KiB
HTML
{{ $toc := partial "toc.html" (dict "page" .) }}
|
|
{{ $needTOC := .Scratch.Get "needTOC" }}
|
|
|
|
{{ if .Scratch.Get "seeAlso" }}
|
|
{{ $related := .Site.RegularPages.Related . | first 6 }}
|
|
{{ with $related }}
|
|
<nav id="see-also">
|
|
<h2>{{ i18n "see_also" }}</h2>
|
|
|
|
<div class="see-also">
|
|
{{ range . }}
|
|
<div class="entry">
|
|
<p class="link"><a data-skipendnotes="true" href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></p>
|
|
<p class="desc">{{ .Description }}</p>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</nav>
|
|
{{ end }}
|
|
{{ end }}
|
|
</article>
|
|
|
|
{{ if or .NextInSection .PrevInSection }}
|
|
<nav class="pagenav">
|
|
<div class="left">
|
|
{{ if .NextInSection }}
|
|
<a title="{{ .NextInSection.Description }}" href="{{ .NextInSection.Permalink }}">{{- partial "icon.html" "left-arrow" -}}{{- .NextInSection.LinkTitle -}}</a>
|
|
{{ end }}
|
|
</div>
|
|
<div class="right">
|
|
{{ if .PrevInSection }}
|
|
<a title="{{ .PrevInSection.Description }}" href="{{ .PrevInSection.Permalink }}">{{- .PrevInSection.LinkTitle -}}{{- partial "icon.html" "right-arrow" -}}</a>
|
|
{{ end }}
|
|
</div>
|
|
</nav>
|
|
{{ end }}
|
|
|
|
{{ if .Scratch.Get "getFeedback" }}
|
|
<div id="feedback">
|
|
<div id="feedback-initial">
|
|
{{ i18n "feedback_title" }}<br>
|
|
<button class="btn feedback" onclick="sendFeedback('{{.Site.Language}}', 1)">{{ i18n "feedback_yes" }}</button>
|
|
<button class="btn feedback" onclick="sendFeedback('{{.Site.Language}}', 0)">{{ i18n "feedback_no" }}</button>
|
|
</div>
|
|
<div id="feedback-comment">
|
|
{{ i18n "feedback_ask_for_comment" }}<br><br>
|
|
<input id="feedback-textbox" type="text" placeholder='{{ i18n "feedback_comment_placeholder"}}' data-lang='{{.Site.Language}}'/>
|
|
</div>
|
|
<div id="feedback-thankyou">
|
|
{{ i18n "feedback_thankyou" }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
|
|
<div id="endnotes-container" aria-hidden="true">
|
|
<h2>{{ i18n "links" }}</h2>
|
|
<ol id="endnotes"></ol>
|
|
</div>
|
|
</div>
|
|
|
|
{{ if and $needTOC (not .Params.force_inline_toc) }}
|
|
<div class="toc-container">
|
|
<nav class="toc" aria-label="Table of Contents">
|
|
<div id="toc">
|
|
{{ $toc | safeHTML }}
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
{{ end }}
|
|
</main>
|