Files
chill.social/themes/chill-theme/layouts/_default/simple.html
Boris Waaub fe5736f64f feat: Update features and pricing details in the application
- Refactored feature descriptions and added new features for document generation and appointment management.
- Updated the pricing structure, including adjustments to pack prices and additional options for training.
- Introduced a new blog section with initial blog posts.
- Enhanced the technical documentation page with an embedded iframe for better accessibility.
- Improved CSS styles for better responsiveness and visual consistency across the application.
- Updated Hugo configuration to reflect new menu items and page structures.
2026-02-12 13:28:31 +01:00

13 lines
359 B
HTML

{{ define "main" }}
<div class="mx-auto px-4 py-8 mb-12 flex-1">
<h1 class="text-4xl font-bold text-center mb-5">{{ .Title }}</h1>
{{ with .Params.description }}
<p class="text-center text-gray-500 sm:text-xl mb-5">{{ . | markdownify }}</p>
{{ end }}
<div class="!max-w-none">
{{ .Content }}
</div>
</div>
{{ end }}