mirror of
https://github.com/godotengine/godot-website.git
synced 2025-12-31 09:48:43 +03:00
This PR replaces the current CMS website with a static version of it built using Jekyll. - Everything should be working 1 to 1 with the same permalinks except for the `/news` page (not articles) which was renamed as `/blog` (old links will redirect to new ones). - The showcase entries on the home page now redirect to their showcase page in our site so that the user can choose which store front or page to visit next. - I also changed the first link from the nav bar to go to the showcase page since the features one is still pretty outdated. Co-authored-by: Yuri Sizov <yuris@humnom.net>
43 lines
1.1 KiB
HTML
43 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 %} |