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>
|
||||
371
themes/pyx-theme/static/css/style.css
Normal file
371
themes/pyx-theme/static/css/style.css
Normal file
@@ -0,0 +1,371 @@
|
||||
/* Reset and Base Styles */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
:root {
|
||||
--primary-blue: #0066cc;
|
||||
--text-black: #1a1a1a;
|
||||
--background-white: #ffffff;
|
||||
--light-gray: #f5f5f5;
|
||||
--medium-gray: #e0e0e0;
|
||||
}
|
||||
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
scroll-snap-type: y mandatory;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
||||
color: var(--text-black);
|
||||
background: var(--background-white);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
header {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
backdrop-filter: blur(10px);
|
||||
z-index: 1000;
|
||||
border-bottom: 1px solid var(--medium-gray);
|
||||
}
|
||||
|
||||
header nav {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 1rem 2rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
header nav a.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
header nav img {
|
||||
height: 32px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
header nav ul {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
gap: 2rem;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
header nav a {
|
||||
color: var(--text-black);
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
header nav a:hover {
|
||||
color: var(--primary-blue);
|
||||
}
|
||||
|
||||
header .language-switcher {
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
header .language-switcher a {
|
||||
padding: 0.25rem 0.75rem;
|
||||
border: 1px solid var(--medium-gray);
|
||||
border-radius: 4px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
header .language-switcher a:hover {
|
||||
background: var(--light-gray);
|
||||
border-color: var(--primary-blue);
|
||||
}
|
||||
|
||||
/* Main Content */
|
||||
main {
|
||||
margin-top: 65px;
|
||||
}
|
||||
|
||||
/* Section Styles */
|
||||
section {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 4rem 2rem;
|
||||
scroll-snap-align: start;
|
||||
}
|
||||
|
||||
section:nth-child(even) {
|
||||
background: var(--light-gray);
|
||||
}
|
||||
|
||||
.section-content {
|
||||
max-width: 1200px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Hero Section */
|
||||
.hero {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hero .logo {
|
||||
max-width: 400px;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 3rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 1rem;
|
||||
color: var(--text-black);
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.5rem;
|
||||
color: #666;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.hero .cta {
|
||||
display: inline-block;
|
||||
padding: 1rem 2rem;
|
||||
background: var(--primary-blue);
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 8px;
|
||||
font-weight: 600;
|
||||
transition: background 0.3s ease, transform 0.2s ease;
|
||||
}
|
||||
|
||||
.hero .cta:hover {
|
||||
background: #0052a3;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* Services Section */
|
||||
.services {
|
||||
background: var(--light-gray);
|
||||
}
|
||||
|
||||
.services h2 {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 3rem;
|
||||
text-align: center;
|
||||
color: var(--text-black);
|
||||
}
|
||||
|
||||
.service-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.service-list article {
|
||||
background: white;
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
|
||||
.service-list article:hover {
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 4px 16px rgba(0, 102, 204, 0.2);
|
||||
}
|
||||
|
||||
.service-list h3 {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 1rem;
|
||||
color: var(--primary-blue);
|
||||
}
|
||||
|
||||
.service-list h3 a {
|
||||
color: var(--primary-blue);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.service-list p {
|
||||
color: #666;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
/* About Section */
|
||||
.about {
|
||||
background: white;
|
||||
}
|
||||
|
||||
.about h2 {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 2rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.about .content {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
font-size: 1.1rem;
|
||||
line-height: 1.8;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
/* Projects Section */
|
||||
.projects h2 {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 3rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.project-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
||||
gap: 2rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.project-list article {
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.project-list article:hover {
|
||||
transform: translateY(-4px);
|
||||
}
|
||||
|
||||
.project-list img {
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.project-list .project-content {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.project-list h3 {
|
||||
font-size: 1.3rem;
|
||||
margin-bottom: 0.5rem;
|
||||
color: var(--text-black);
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
footer {
|
||||
background: var(--text-black);
|
||||
color: white;
|
||||
padding: 3rem 2rem 1rem;
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
footer h3 {
|
||||
color: var(--primary-blue);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: #ccc;
|
||||
text-decoration: none;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
footer a:hover {
|
||||
color: var(--primary-blue);
|
||||
}
|
||||
|
||||
footer ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
footer li {
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.footer-bottom {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding-top: 2rem;
|
||||
border-top: 1px solid #444;
|
||||
text-align: center;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
/* Scroll Indicator */
|
||||
.scroll-indicator {
|
||||
position: absolute;
|
||||
bottom: 2rem;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
animation: bounce 2s infinite;
|
||||
}
|
||||
|
||||
.scroll-indicator::before {
|
||||
content: "↓";
|
||||
font-size: 2rem;
|
||||
color: var(--primary-blue);
|
||||
}
|
||||
|
||||
@keyframes bounce {
|
||||
0%, 20%, 50%, 80%, 100% {
|
||||
transform: translateX(-50%) translateY(0);
|
||||
}
|
||||
40% {
|
||||
transform: translateX(-50%) translateY(-10px);
|
||||
}
|
||||
60% {
|
||||
transform: translateX(-50%) translateY(-5px);
|
||||
}
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 768px) {
|
||||
header nav {
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
header nav ul {
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
section {
|
||||
min-height: auto;
|
||||
padding: 3rem 1rem;
|
||||
}
|
||||
|
||||
.service-list,
|
||||
.project-list {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
10
themes/pyx-theme/theme.toml
Normal file
10
themes/pyx-theme/theme.toml
Normal file
@@ -0,0 +1,10 @@
|
||||
name = "Pyx Theme"
|
||||
license = "Proprietary"
|
||||
description = "Custom theme for Pyx Engineering AG"
|
||||
homepage = "https://www.pyx.ch/"
|
||||
tags = ["corporate", "multilingual", "business"]
|
||||
min_version = "0.123.0"
|
||||
|
||||
[author]
|
||||
name = "Pyx Engineering AG"
|
||||
homepage = "https://www.pyx.ch/"
|
||||
Reference in New Issue
Block a user