website/layouts/404.html

17 lines
522 B
HTML
Raw Normal View History

{{ define "main" }}
{{ 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 }}
{{ with site.GetPage "section" . }}<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>{{ end }}
2020-09-08 18:36:54 +00:00
{{ end }}
</ul>
2020-09-08 18:36:54 +00:00
</section>
2024-12-09 14:34:54 +00:00
</div>
{{ end }}