Initialize Hugo website with custom infinite-scroll theme
- 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>
This commit is contained in:
22
themes/pyx-theme/layouts/_default/baseof.html
Normal file
22
themes/pyx-theme/layouts/_default/baseof.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ .Site.Language.Lang }}">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} | {{ .Site.Title }}{{ end }}</title>
|
||||
<meta name="description" content="{{ if .Description }}{{ .Description }}{{ else }}{{ .Site.Params.description }}{{ end }}">
|
||||
<meta name="author" content="{{ .Site.Params.author }}">
|
||||
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
{{ block "head" . }}{{ end }}
|
||||
</head>
|
||||
<body>
|
||||
{{ partial "header.html" . }}
|
||||
|
||||
<main>
|
||||
{{ block "main" . }}{{ end }}
|
||||
</main>
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
</body>
|
||||
</html>
|
||||
28
themes/pyx-theme/layouts/_default/list.html
Normal file
28
themes/pyx-theme/layouts/_default/list.html
Normal file
@@ -0,0 +1,28 @@
|
||||
{{ define "main" }}
|
||||
<section>
|
||||
<header>
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{ if .Description }}
|
||||
<p>{{ .Description }}</p>
|
||||
{{ end }}
|
||||
</header>
|
||||
|
||||
<div class="list">
|
||||
{{ range .Pages }}
|
||||
<article>
|
||||
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
|
||||
{{ if .Params.thumbnail }}
|
||||
{{ $image := .Resources.GetMatch .Params.thumbnail }}
|
||||
{{ if $image }}
|
||||
<img src="{{ ($image.Resize "400x").RelPermalink }}" alt="{{ .Title }}">
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ if .Description }}
|
||||
<p>{{ .Description }}</p>
|
||||
{{ end }}
|
||||
<a href="{{ .RelPermalink }}">Read more</a>
|
||||
</article>
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
23
themes/pyx-theme/layouts/_default/single.html
Normal file
23
themes/pyx-theme/layouts/_default/single.html
Normal file
@@ -0,0 +1,23 @@
|
||||
{{ define "main" }}
|
||||
<article>
|
||||
<header>
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{ if .Params.date }}
|
||||
<time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "January 2, 2006" }}</time>
|
||||
{{ end }}
|
||||
</header>
|
||||
|
||||
{{ if .Params.thumbnail }}
|
||||
<figure>
|
||||
{{ $image := .Resources.GetMatch .Params.thumbnail }}
|
||||
{{ if $image }}
|
||||
<img src="{{ ($image.Resize "800x").RelPermalink }}" alt="{{ .Title }}">
|
||||
{{ end }}
|
||||
</figure>
|
||||
{{ end }}
|
||||
|
||||
<div class="content">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
</article>
|
||||
{{ end }}
|
||||
91
themes/pyx-theme/layouts/index.html
Normal file
91
themes/pyx-theme/layouts/index.html
Normal file
@@ -0,0 +1,91 @@
|
||||
{{ define "main" }}
|
||||
<!-- Hero Section -->
|
||||
<section id="home" class="hero">
|
||||
<div class="section-content">
|
||||
<img src="/images/pyx_hires.png" alt="{{ .Site.Title }}" class="logo">
|
||||
<h1>{{ .Site.Title }}</h1>
|
||||
<p>{{ .Site.Params.description }}</p>
|
||||
<a href="#services" class="cta">{{ i18n "exploreServices" }}</a>
|
||||
</div>
|
||||
<div class="scroll-indicator"></div>
|
||||
</section>
|
||||
|
||||
<!-- About Section -->
|
||||
<section id="about" class="about">
|
||||
<div class="section-content">
|
||||
<h2>{{ i18n "about" }}</h2>
|
||||
<div class="content">
|
||||
{{ .Content }}
|
||||
<p>{{ i18n "aboutDescription" }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Services Section -->
|
||||
<section id="services" class="services">
|
||||
<div class="section-content">
|
||||
<h2>{{ i18n "services" }}</h2>
|
||||
<div class="service-list">
|
||||
{{ range where .Site.Pages "Section" "services" }}
|
||||
<article>
|
||||
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
||||
{{ if .Description }}
|
||||
<p>{{ .Description }}</p>
|
||||
{{ else }}
|
||||
<p>{{ .Summary }}</p>
|
||||
{{ end }}
|
||||
</article>
|
||||
{{ end }}
|
||||
{{ if eq (len (where .Site.Pages "Section" "services")) 0 }}
|
||||
<!-- Placeholder services -->
|
||||
<article>
|
||||
<h3>ML Operations</h3>
|
||||
<p>{{ i18n "mlOpsDescription" }}</p>
|
||||
</article>
|
||||
<article>
|
||||
<h3>Kafka Solutions</h3>
|
||||
<p>{{ i18n "kafkaDescription" }}</p>
|
||||
</article>
|
||||
<article>
|
||||
<h3>Elasticsearch</h3>
|
||||
<p>{{ i18n "elasticsearchDescription" }}</p>
|
||||
</article>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Projects Section -->
|
||||
<section id="projects" class="projects">
|
||||
<div class="section-content">
|
||||
<h2>{{ i18n "projects" }}</h2>
|
||||
<div class="project-list">
|
||||
{{ range where .Site.Pages "Section" "projects" }}
|
||||
<article>
|
||||
{{ if .Params.thumbnail }}
|
||||
{{ $image := .Resources.GetMatch .Params.thumbnail }}
|
||||
{{ if $image }}
|
||||
<img src="{{ ($image.Resize "600x").RelPermalink }}" alt="{{ .Title }}">
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<div class="project-content">
|
||||
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
||||
{{ if .Description }}
|
||||
<p>{{ .Description }}</p>
|
||||
{{ end }}
|
||||
</div>
|
||||
</article>
|
||||
{{ end }}
|
||||
{{ if eq (len (where .Site.Pages "Section" "projects")) 0 }}
|
||||
<!-- Placeholder message -->
|
||||
<article>
|
||||
<div class="project-content">
|
||||
<h3>{{ i18n "projectsComingSoon" }}</h3>
|
||||
<p>{{ i18n "projectsComingSoonDescription" }}</p>
|
||||
</div>
|
||||
</article>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
34
themes/pyx-theme/layouts/partials/footer.html
Normal file
34
themes/pyx-theme/layouts/partials/footer.html
Normal file
@@ -0,0 +1,34 @@
|
||||
<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>
|
||||
23
themes/pyx-theme/layouts/partials/header.html
Normal file
23
themes/pyx-theme/layouts/partials/header.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<header>
|
||||
<nav>
|
||||
<a href="{{ "/" | relLangURL }}" class="logo">
|
||||
<img src="/images/pyx_hires.png" alt="{{ .Site.Title }}">
|
||||
</a>
|
||||
|
||||
<ul>
|
||||
<li><a href="{{ "/" | relLangURL }}#home">{{ i18n "home" }}</a></li>
|
||||
<li><a href="{{ "/" | relLangURL }}#about">{{ i18n "about" }}</a></li>
|
||||
<li><a href="{{ "/" | relLangURL }}#services">{{ i18n "services" }}</a></li>
|
||||
<li><a href="{{ "/" | relLangURL }}#projects">{{ i18n "projects" }}</a></li>
|
||||
</ul>
|
||||
|
||||
<!-- Language switcher -->
|
||||
<ul class="language-switcher">
|
||||
{{ if .IsTranslated }}
|
||||
{{ range .Translations }}
|
||||
<li><a href="{{ .RelPermalink }}">{{ .Language.LanguageName }}</a></li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
Reference in New Issue
Block a user