mirror of
https://github.com/frappe/gunicorn.git
synced 2026-07-02 18:51:31 +08:00
- 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
31 lines
531 B
HTML
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 %}
|