mirror of
https://github.com/skoelle/moonweb-site.git
synced 2026-09-17 17:00:25 +00:00
initial commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
const path = require("path");
|
||||
|
||||
module.exports = function (eleventyConfig) {
|
||||
eleventyConfig.addPassthroughCopy({ "shared/theme-hub.css": "theme.css" });
|
||||
eleventyConfig.addPassthroughCopy({ "shared/base.css": "shared-base.css" });
|
||||
eleventyConfig.addPassthroughCopy({ "shared/favicon/hub.svg": "favicon.svg" });
|
||||
|
||||
return {
|
||||
dir: {
|
||||
input: "hub",
|
||||
includes: "../shared/_includes",
|
||||
output: "dist/hub"
|
||||
},
|
||||
serverOptions: {
|
||||
host: "0.0.0.0",
|
||||
port: 8081
|
||||
}
|
||||
};
|
||||
};
|
||||
@@ -0,0 +1,19 @@
|
||||
---
|
||||
title: "Impressum"
|
||||
section: "hub"
|
||||
description: "Legal imprint (Impressum) for moonweb.org."
|
||||
layout: base.njk
|
||||
---
|
||||
|
||||
<h1>Impressum</h1>
|
||||
|
||||
<address>
|
||||
Stefan Kölle<br>
|
||||
Neumarkter Str. 86c<br>
|
||||
81673 München
|
||||
</address>
|
||||
|
||||
<p>
|
||||
Phone/Fax: +49-(89)-20006547<br>
|
||||
E-Mail: <a href="mailto:info@inseco.de">info@inseco.de</a>
|
||||
</p>
|
||||
@@ -0,0 +1,42 @@
|
||||
---
|
||||
title: "Home"
|
||||
section: "hub"
|
||||
description: "moonweb.org — my personal homelab: smarthome, infrastructure, code, and retro hardware."
|
||||
layout: base.njk
|
||||
sections:
|
||||
- heading: "Homelab sites"
|
||||
cards:
|
||||
- title: "infra"
|
||||
summary: "Stack overview: Proxmox, Synology, network, backups, and how I work."
|
||||
href: "https://infra.moonweb.org"
|
||||
emoji: "🏗️"
|
||||
- title: "smarthome"
|
||||
summary: "What's actually running on home.moonweb.org, and why."
|
||||
href: "https://smarthome.moonweb.org"
|
||||
emoji: "🏠"
|
||||
- title: "code"
|
||||
summary: "Curated catalog of my GitHub projects."
|
||||
href: "https://code.moonweb.org"
|
||||
emoji: "💻"
|
||||
- title: "retro"
|
||||
summary: "Physical retro hardware collection."
|
||||
href: "https://retro.moonweb.org"
|
||||
emoji: "🕹️"
|
||||
- heading: "About me"
|
||||
cards:
|
||||
- title: "CV / stefankoelle.de"
|
||||
summary: "Career, contact, and background."
|
||||
href: "https://stefankoelle.de"
|
||||
emoji: "👤"
|
||||
- heading: "Time capsules"
|
||||
cards:
|
||||
- title: "28k8.moonweb.org"
|
||||
summary: "tHE tEMPLE BBS Mailbox and 90s releases archive."
|
||||
href: "https://28k8.moonweb.org"
|
||||
emoji: "💾"
|
||||
- title: "www.moonweb.org"
|
||||
summary: "The 2000s internet projects, networking and engineering."
|
||||
href: "https://www.moonweb.org"
|
||||
emoji: "🌐"
|
||||
---
|
||||
{% include "card-grid.njk" %}
|
||||
Reference in New Issue
Block a user