2018-05-05 16:00:51 +00:00
|
|
|
{{ define "main" }}
|
2020-07-21 14:46:33 +00:00
|
|
|
{{ partial "handle-version-switch-404.html" . }}
|
2024-12-09 14:34:54 +00:00
|
|
|
<div class="td-content">
|
2020-09-08 18:36:54 +00:00
|
|
|
<section id="error-404" class="error-details">
|
|
|
|
<p>
|
|
|
|
{{ T "error_404_were_you_looking_for" }}
|
|
|
|
</p>
|
|
|
|
<ul id="error-sections">
|
|
|
|
{{ $sections := slice "docs" "blog" "training" "partners" "community" "case-studies" }}
|
|
|
|
{{ range $sections }}
|
2020-09-21 14:48:15 +00:00
|
|
|
{{ with site.GetPage "section" . }}<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>{{ end }}
|
2020-09-08 18:36:54 +00:00
|
|
|
{{ end }}
|
2019-02-28 04:07:42 +00:00
|
|
|
</ul>
|
2020-09-08 18:36:54 +00:00
|
|
|
</section>
|
2024-12-09 14:34:54 +00:00
|
|
|
</div>
|
2018-05-05 16:00:51 +00:00
|
|
|
{{ end }}
|