- Move all existing docs content (concepts, project, solution) to /docs/v1/ - Add legacy banner component to warn users about archived documentation - Create v1 index page with legacy notice and redirect guidance - Implement automatic banner display for all v1 paths - Preserve all original content for reference during migration This enables incremental content migration while maintaining access to original documentation.
17 lines
660 B
HTML
17 lines
660 B
HTML
{{ define "main" }}
|
|
{{ partial "legacy-banner.html" . }}
|
|
<div class="td-content">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ with .Params.description }}<div class="lead">{{ . | markdownify }}</div>{{ end }}
|
|
{{ .Content }}
|
|
{{ if (and (not .Params.hide_feedback) (.Site.Params.ui.feedback.enable) (.Site.GoogleAnalytics)) }}
|
|
{{ partial "feedback.html" .Site.Params.ui.feedback }}
|
|
<br />
|
|
{{ end }}
|
|
{{ if (.Site.DisqusShortname) }}
|
|
<br />
|
|
{{ partial "disqus-comment.html" . }}
|
|
{{ end }}
|
|
<div class="text-muted mt-5 pt-3 border-top">{{ partial "page-meta-lastmod.html" . }}</div>
|
|
</div>
|
|
{{ end }}
|