gunicorn/overrides/home.html
Benoit Chesneau dcec6e701a docs: Modern landing page with custom template
- Add custom home.html template to break out of MkDocs constraints
- Create Caddy-inspired minimal CSS for landing page
- Redesign hero section with terminal demo
- Add framework tags and worker type cards
- Full-width sections with vertical narrative flow
- Dark mode support
2026-01-23 01:20:03 +01:00

31 lines
531 B
HTML

{% extends "main.html" %}
{% block tabs %}
{{ super() }}
{% endblock %}
{% block htmltitle %}
<title>Gunicorn - Python WSGI HTTP Server for UNIX</title>
{% endblock %}
{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{ 'assets/stylesheets/home.css' | url }}">
{% endblock %}
{% block hero %}{% endblock %}
{% block content %}{% endblock %}
{% block site_nav %}{% endblock %}
{% block container %}
<main class="home">
{{ page.content }}
</main>
{% endblock %}
{% block footer %}
{{ super() }}
{% endblock %}