add output

This commit is contained in:
2025-03-18 19:23:09 +01:00
parent 49fd21ead4
commit 60e1fc5d5d
9 changed files with 45 additions and 215597 deletions

View File

@@ -1,10 +1,11 @@
{% extends "base.html" %}
{% block content %}
<!-- Content section (where Markdown content from _index.md appears) -->
<div class="bg-white w-full shadow overflow-hidden">
<div class="border-t border-gray-200">
<div class="px-4 py-5 sm:p-6">
<div class="prose prose-indigo lg:prose-xl">
<div class="prose prose-indigo lg:prose-xl w-full">
{% if section.content %}
{{ section.content | safe }}
{% else %}
@@ -16,11 +17,13 @@
</div>
</div>
<div class="mt-8 grid gap-6 grid-cols-1 md:grid-cols-2 lg:grid-cols-3">
<!-- Blog Section / List of Pages -->
<div class="mt-8 grid gap-8 grid-cols-1 md:grid-cols-2 lg:grid-cols-3">
{% for page in section.pages %}
<a href="{{ page.permalink }}" class="bg-white overflow-hidden shadow rounded-lg hover:shadow-lg transition-shadow duration-300">
<!-- Individual blog post card -->
<a href="{{ page.permalink }}" class="bg-white overflow-hidden shadow rounded-lg hover:shadow-xl transition-shadow duration-300">
<div class="px-4 py-5 sm:p-6">
<h3 class="text-lg font-medium text-gray-900 truncate">{{ page.title }}</h3>
<h3 class="text-lg lg:text-xl font-medium text-gray-900 truncate">{{ page.title }}</h3>
{% if page.description %}
<p class="mt-1 text-sm text-gray-500">{{ page.description }}</p>
{% endif %}