mirror of
https://github.com/frappe/gunicorn.git
synced 2026-07-02 10:41:30 +08:00
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
This commit is contained in:
parent
bca7c6fce9
commit
1591a6c773
@ -241,7 +241,7 @@ asgi_lifespan = "auto" # Auto-detect lifespan support
|
|||||||
| uvloop support | Yes | Yes | Yes |
|
| uvloop support | Yes | Yes | Yes |
|
||||||
|
|
||||||
!!! note
|
!!! note
|
||||||
HTTP/2 requires SSL/TLS and the h2 library. See [HTTP/2 Support](http2.md) for details.
|
HTTP/2 requires SSL/TLS and the h2 library. See [HTTP/2 Support](guides/http2.md) for details.
|
||||||
|
|
||||||
Gunicorn's ASGI worker provides the same process management, logging, and
|
Gunicorn's ASGI worker provides the same process management, logging, and
|
||||||
configuration capabilities you're familiar with from WSGI deployments.
|
configuration capabilities you're familiar with from WSGI deployments.
|
||||||
|
|||||||
@ -843,7 +843,6 @@ For public servers, you can use online tools:
|
|||||||
|
|
||||||
## See Also
|
## See Also
|
||||||
|
|
||||||
- [Settings Reference](reference/settings.md#http2_max_concurrent_streams) - All HTTP/2 settings
|
- [Settings Reference](../reference/settings.md#http2_max_concurrent_streams) - All HTTP/2 settings
|
||||||
- [ASGI Worker](asgi.md) - ASGI worker with HTTP/2 support
|
- [ASGI Worker](../asgi.md) - ASGI worker with HTTP/2 support
|
||||||
- [Deploy](deploy.md) - General deployment guidance
|
- [Deploy](../deploy.md) - General deployment guidance
|
||||||
- [SSL Configuration](deploy.md#using-ssl) - SSL/TLS setup
|
|
||||||
|
|||||||
@ -15,6 +15,7 @@ nav:
|
|||||||
- Guides:
|
- Guides:
|
||||||
- Deploy: deploy.md
|
- Deploy: deploy.md
|
||||||
- Docker: guides/docker.md
|
- Docker: guides/docker.md
|
||||||
|
- HTTP/2: guides/http2.md
|
||||||
- ASGI Worker: asgi.md
|
- ASGI Worker: asgi.md
|
||||||
- Dirty Arbiters: dirty.md
|
- Dirty Arbiters: dirty.md
|
||||||
- uWSGI Protocol: uwsgi.md
|
- uWSGI Protocol: uwsgi.md
|
||||||
|
|||||||
@ -11,13 +11,22 @@
|
|||||||
{% block styles %}
|
{% block styles %}
|
||||||
{{ super() }}
|
{{ super() }}
|
||||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/home.css' | url }}">
|
<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 %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block hero %}{% endblock %}
|
{% block hero %}{% endblock %}
|
||||||
|
|
||||||
{% block content %}{% endblock %}
|
{% block content %}{% endblock %}
|
||||||
|
|
||||||
{% block site_nav %}{% endblock %}
|
{% block site_nav %}
|
||||||
|
{{ super() }}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block container %}
|
{% block container %}
|
||||||
<main class="home">
|
<main class="home">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user