mirror of
https://github.com/godotengine/godot-website.git
synced 2025-12-31 09:48:43 +03:00
The web server redirects pages like `/blog` to `/blog/`, which slows down navigation a bit. This can be avoided by fully spelling out the URLs in internal links.
44 lines
1.1 KiB
HTML
44 lines
1.1 KiB
HTML
---
|
|
layout: default
|
|
header_text: ''
|
|
current_tab: ''
|
|
---
|
|
|
|
{% include header.html %}
|
|
|
|
<div class="head">
|
|
<div class="container flex eqsize" style="flex-direction: column">
|
|
<div class="main">
|
|
<h1 class="intro-title">{{ page.header_text }}</h1>
|
|
|
|
</div>
|
|
|
|
<div class="tabs">
|
|
<a href="/contact/" class="title-font {% if page.current_tab == 'contact' %} active {% endif %}">
|
|
Contact
|
|
</a>
|
|
<a href="/code-of-conduct/" class="title-font {% if page.current_tab == 'code-of-conduct' %} active {% endif %}">
|
|
Code of Conduct
|
|
</a>
|
|
<a href="/privacy-policy/" class="title-font {% if page.current_tab == 'privacy-policy' %} active {% endif %}">
|
|
Privacy
|
|
</a>
|
|
<a href="/governance/" class="title-font {% if page.current_tab == 'governance' %} active {% endif %}">
|
|
Governance
|
|
</a>
|
|
<a href="/teams/" class="title-font {% if page.current_tab == 'teams' %} active {% endif %}">
|
|
Teams
|
|
</a>
|
|
<a href="/license/" class="title-font {% if page.current_tab == 'license' %} active {% endif %}">
|
|
License
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container">
|
|
{{ content }}
|
|
</div>
|
|
|
|
{% include footer.html %}
|