- Add TeleNeo font family with all weights (300-700) - Implement Telekom brand colors (magenta #E20074 as primary) - Add dark mode support with inverted color palette - Style navigation with soft hover states and active indicators - Override Bootstrap/Docsy variables for consistent theming - Fix deprecated Hugo template syntax for Disqus integration - Apply Telekom-inspired styling to all UI components
17 lines
677 B
HTML
17 lines
677 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.Config.Services.Disqus.Shortname) }}
|
|
<br />
|
|
{{ partial "disqus-comment.html" . }}
|
|
{{ end }}
|
|
<div class="text-muted mt-5 pt-3 border-top">{{ partial "page-meta-lastmod.html" . }}</div>
|
|
</div>
|
|
{{ end }}
|