docs-v2/layouts/_default/list.html

30 lines
732 B
HTML
Raw Normal View History

2018-12-13 18:47:02 +00:00
{{ partial "header.html" . }}
2020-07-30 17:34:57 +00:00
{{ partial "topnav.html" . }}
2018-12-13 18:47:02 +00:00
2019-02-05 18:39:00 +00:00
<div class="page-wrapper">
{{ partial "sidebar.html" . }}
<div class="content-wrapper">
{{ partial "sidebar/sidebar-toggle.html" }}
2018-12-13 18:47:02 +00:00
2019-02-05 18:39:00 +00:00
<div class="article">
<article class="article--content">
<h1>Related to "{{ .Title }}"</h1>
<div class="list-links">
{{ range .Pages }}
<h3><a href="{{.RelPermalink}}">{{ .Title }}</a></h3>
{{ if .Description }}
<p>{{ .Description | markdownify }}</p>
2019-02-05 18:39:00 +00:00
{{ end }}
{{ end }}
</div>
</article>
</div>
<div class="copyright">© {{ now.Year }} InfluxData, Inc.</div>
</div>
</div>
2018-12-13 18:47:02 +00:00
{{ partial "footer.html" . }}