init hugo with theme pickels

This commit is contained in:
2025-09-27 20:56:47 +02:00
commit 4517f2892e
9 changed files with 112 additions and 0 deletions

0
.hugo_build.lock Normal file
View File

5
archetypes/default.md Normal file
View File

@@ -0,0 +1,5 @@
+++
date = '{{ .Date }}'
draft = true
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+++

View File

@@ -0,0 +1,8 @@
---
title: "Content Placeholder"
build:
render: never
list: never
publishResources: false
---

54
hugo.toml Normal file
View File

@@ -0,0 +1,54 @@
baseURL = 'https://blog.librete.ch/'
languageCode = 'en-us'
title = 'LibreTECH'
copyright = '© Michał Czechowski'
enableGitInfo = true
theme = 'hugo_theme_pickles'
publishDir = '/var/www/virtual/tengo/blog.librete.ch'
hugo_cache = '/home/tengo/tmp'
[pagination]
pagerSize = 10
[params]
paginate = 10
#custom_css = ['/css/custom.css']
# Social (from site)
github = 'nextlevelshit'
linkedin = 'michael-werner-czechowski'
author = 'Michał Czechowski'
authorwebsite = 'https://www.librete.ch'
#avatar = '/path/to/avatar'
contact = 'mailto:hello@librete.ch'
bio = 'IT-Architekt & Spezialist für Open Source Transformation'
subtitle = 'Thoughts on Open Source, Software Engineering & Technology'
#logo = '/path/to/logo'
#favicon = '/path/to/favicon'
[[menu.main]]
name = 'Blog'
url = '/'
weight = 1
[[menu.main]]
name = 'Tags'
url = '/tags'
weight = 2
[related]
threshold = 80
includeNewer = false
toLower = false
[[related.indices]]
name = 'keywords'
weight = 150
[[related.indices]]
name = 'tags'
weight = 100

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Categories on LibreTECH</title>
<link>https://blog.librete.ch/categories/</link>
<description>Recent content in Categories on LibreTECH</description>
<generator>Hugo</generator>
<language>en-us</language>
<atom:link href="https://blog.librete.ch/categories/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

11
public/index.xml Normal file
View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>LibreTECH</title>
<link>https://blog.librete.ch/</link>
<description>Recent content on LibreTECH</description>
<generator>Hugo</generator>
<language>en-us</language>
<atom:link href="https://blog.librete.ch/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

11
public/sitemap.xml Normal file
View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://blog.librete.ch/categories/</loc>
</url><url>
<loc>https://blog.librete.ch/</loc>
</url><url>
<loc>https://blog.librete.ch/tags/</loc>
</url>
</urlset>

11
public/tags/index.xml Normal file
View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Tags on LibreTECH</title>
<link>https://blog.librete.ch/tags/</link>
<description>Recent content in Tags on LibreTECH</description>
<generator>Hugo</generator>
<language>en-us</language>
<atom:link href="https://blog.librete.ch/tags/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

Submodule themes/hugo_theme_pickles added at 7836542c60