gunicorn/overrides/home.html
Benoit Chesneau 1591a6c773 fix: iPad mobile menu and documentation link warnings
- Fix mobile side menu not displaying on iPad by keeping site_nav
  content but hiding sidebar on desktop via CSS
- Fix broken links in asgi.md and guides/http2.md
- Add HTTP/2 guide to navigation
2026-01-30 01:29:45 +01:00

40 lines
763 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 }}">
<style>
/* Hide sidebar on desktop, keep drawer for mobile/tablet */
@media screen and (min-width: 76.25em) {
.md-sidebar--primary { display: none; }
}
.md-sidebar--secondary { display: none; }
</style>
{% endblock %}
{% block hero %}{% endblock %}
{% block content %}{% endblock %}
{% block site_nav %}
{{ super() }}
{% endblock %}
{% block container %}
<main class="home">
{{ page.content }}
</main>
{% endblock %}
{% block footer %}
{{ super() }}
{% endblock %}