1
0

vault backup: 2025-12-07 17:19:42
All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 2m48s

This commit is contained in:
2025-12-07 17:19:42 +01:00
parent 502887ad61
commit 2e231ec64c
28 changed files with 109 additions and 39 deletions

View File

@@ -0,0 +1,20 @@
{% extends "base.jinja2" %}
{% block title %}{{ filename }}{% endblock %}
{% block content %}
<h1>{{ title }}</h1>
<div class="image-container">
<img src="{{ filename }}" alt="{{ title }}" class="preview-image">
</div>
<style>
.image-container {
margin-top: 15px;
}
.preview-image {
max-width: 100%;
height: auto;
border-radius: 5px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
</style>
{% endblock %}