📝 Add docs for using FastAPI Cloud (#14359)

This commit is contained in:
Sebastián Ramírez
2025-11-17 20:33:53 +01:00
committed by GitHub
parent 02e108d166
commit 994d6cc912
11 changed files with 273 additions and 8 deletions

View File

@@ -145,14 +145,20 @@ def build_lang(
index_sponsors_template = """
{% if sponsors %}
### Keystone Sponsor
{% for sponsor in sponsors.keystone -%}
<a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}"></a>
{% endfor %}
### Gold and Silver Sponsors
{% for sponsor in sponsors.gold -%}
<a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}"></a>
{% endfor -%}
{%- for sponsor in sponsors.silver -%}
<a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}"></a>
{% endfor %}
{% endif %}
"""