taxonomies (categories, tags, year/month/slug), syntax.css und Blog (posts).

This commit is contained in:
Franz Klotsche
2025-11-22 18:50:09 +01:00
parent dc0b5d8cfc
commit 230912cb0c
100 changed files with 4699 additions and 290 deletions

View File

@@ -10,8 +10,11 @@
{{- else -}}
{{ .Site.Params.description }}
{{- end -}}">
<link rel="stylesheet" href="{{ "css/syntax.css"
| relURL }}">
<link rel="stylesheet" href="{{ "css/style.css"
| relURL }}">
<!-- RSS -->
{{ range .AlternativeOutputFormats -}}
{{- $link := `<link rel="%s" type="%s" href="%s" title="%s">` -}}
@@ -39,4 +42,37 @@
gtag('js', new Date());
gtag('config', 'G-TT2JW5ZYFZ');
</script>
<!--
<script>
var remark_config = {
host: "http://192.168.178.24:8080",
site_id: "remark",
locale: "de"
}
</script>-->
<script>
var remark_config = {
// Gebruik de nieuwe Railway URL
host: 'https://remark42hugo-neocities-org.up.railway.app',
// De site ID moet overeenkomen met de REMARK_SITE variabele
site_id: 'neocities',
locale: 'de',
allowAnon: true,
url: '{{ .Permalink }}',
theme: 'light'
};
// Laad de embed code vanaf de Railway host
(function(c) {
for(var i = 0; i < c.length; i++) {
var d = document, s = d.createElement('script');
s.src = c[i];
(d.head || d.body).appendChild(s);
}
})(['https://remark42hugo-neocities-org.up.railway.app/web/config.js',
'https://remark42hugo-neocities-org.up.railway.app/web/embed.js']);
</script>

View File

@@ -1,8 +1,9 @@
<nav>
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/projects">Projects</a>
<a href="/presentations">Presentations</a>
<a href="/resume">Résumé</a>
<a href="/contact">Contact</a>
<a href="/">Start</a>
<a href="/about">Über mich</a>
<a href="/posts">Blog</a>
<a href="/projects">Projekte</a>
<a href="/presentations">Konzepte</a>
<a href="/resume">Lebenslauf</a>
<a href="/contact">Kontakt</a>
</nav>

View File

@@ -0,0 +1,14 @@
<article>
<header>
<h3>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h3>
<time>
{{ .Date | dateFormat "January" }}
{{ .Date | dateFormat "2" }}
</time>
</header>
{{ .Summary }}
</article>