- Set up complete Hugo project structure with bilingual support (EN/DE) - Create custom pyx-theme with modern, clean design - Implement infinite scrolling single-page layout with sections - Style with white background, black text, and blue accent color - Add responsive navigation with smooth anchor scrolling - Move logo assets to static/images directory - Configure i18n translations for English and German (Swiss spelling) - Add company data structure in data/company.yaml - Create archetypes for consistent content frontmatter - Update CLAUDE.md with comprehensive project documentation Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
<footer>
|
|
<div class="footer-content">
|
|
<div class="company-info">
|
|
<h3>{{ .Site.Data.company.name }}</h3>
|
|
{{ with .Site.Data.company.address }}
|
|
<address>
|
|
{{ if .street }}{{ .street }}<br>{{ end }}
|
|
{{ if .postal }}{{ .postal }} {{ end }}{{ if .city }}{{ .city }}<br>{{ end }}
|
|
{{ if .country }}{{ .country }}{{ end }}
|
|
</address>
|
|
{{ end }}
|
|
{{ with .Site.Data.company.phone }}
|
|
<p>{{ i18n "phone" }}: <a href="tel:{{ . }}">{{ . }}</a></p>
|
|
{{ end }}
|
|
{{ with .Site.Data.company.email }}
|
|
<p>{{ i18n "email" }}: <a href="mailto:{{ . }}">{{ . }}</a></p>
|
|
{{ end }}
|
|
{{ with .Site.Data.company.uid }}
|
|
<p>UID: {{ . }}</p>
|
|
{{ end }}
|
|
</div>
|
|
|
|
<nav class="footer-nav">
|
|
<ul>
|
|
<li><a href="{{ "/impressum" | relLangURL }}">{{ i18n "impressum" }}</a></li>
|
|
<li><a href="{{ "/privacy" | relLangURL }}">{{ i18n "privacy" }}</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
|
|
<div class="footer-bottom">
|
|
<p>© {{ now.Year }} {{ .Site.Data.company.name }}. {{ i18n "allRightsReserved" }}</p>
|
|
</div>
|
|
</footer>
|