Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/pages/projects/aiohttp.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Title: Aiohttp
Links: Docs=https://docs.aiohttp.org/en/stable/
Links: Documentation=https://docs.aiohttp.org/en/stable/
Github=https://github.com/aio-libs/aiohttp/
Sponsor=https://opencollective.com/aio-libs/projects/aiohttp
Sponsorship=https://opencollective.com/aio-libs/projects/aiohttp

An asynchronous HTTP Client/Server for Python's [asyncio](https://docs.python.org/3/library/asyncio.html).

Expand Down
81 changes: 61 additions & 20 deletions theme/static/css/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions theme/templates/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@ <h2>{{ page.title }}</h2>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}

{% for link in page.links %}
<a href="{{ link.partition("=")[2] }}">{{ link.partition("=")[0] }}</a>
{% endfor %}
{% if page.links %}
<div class="aio-post-links">
{% for link in page.links %}
<a class="aio-post-links__item" href="{{ link.partition("=")[2] }}">{{ link.partition("=")[0] }}</a>
{% endfor %}
</div>
{% endif %}

{{ page.content }}

Expand Down
Loading