update zola template

This commit is contained in:
2025-03-24 21:46:08 +02:00
commit b55e4929ab
40 changed files with 109109 additions and 0 deletions

19
tailwind.config.js Normal file
View File

@@ -0,0 +1,19 @@
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: [
'./templates/**/*.html',
'./content/**/*.md',
'./themes/**/*.html',
],
darkMode: 'class',
theme: {
extend: {},
},
variants: {},
plugins: [
require('@tailwindcss/typography'),
],
}