mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-06-21 06:50:56 +00:00
71d4db055e
- Add WeasyPrint dependencies to Dockerfile for server-side PDF generation - Update README with Quick Start guide for Docker and local development - Add PDF template for article rendering - Add error template for better error handling - Reorganize photography into top-12 subdirectory - Update pyproject.toml with PDF generation dependencies - Enhance content.py with PDF rendering capabilities - Improve directory template with gallery features 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
286 B
HTML
18 lines
286 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<h1>{{ title }}</h1>
|
|
|
|
<section>
|
|
<p>{{ message }}</p>
|
|
|
|
{% if details %}
|
|
<p>{{ details }}</p>
|
|
{% endif %}
|
|
</section>
|
|
</article>
|
|
{% endblock %}
|