* Add/use small-footer * Fix borked HTML * Extract scripts to new include * Add spacing * Fix some padding * Fix a test that uses /actions * Fix old links Co-authored-by: Sarah Schneider <sarahs@users.noreply.github.com> * Update /developers in general footer * Don't hard code free-pro-team * Use the small-footer everywhere * Tweak border Co-authored-by: Sarah Schneider <sarahs@users.noreply.github.com>
21 lines
455 B
HTML
21 lines
455 B
HTML
<!doctype html>
|
|
<html lang="{{currentLanguage}}">
|
|
{% include head %}
|
|
|
|
<body class="d-lg-flex">
|
|
{% include sidebar %}
|
|
|
|
<main class="width-full">
|
|
{% include header %}
|
|
{% include deprecation-banner %}
|
|
{% if page.relativePath == 'index.md' %}
|
|
{% include landing %}
|
|
{% else %}
|
|
{% include article %}
|
|
{% endif %}
|
|
{% include support %}
|
|
{% include small-footer %}
|
|
</main>
|
|
</body>
|
|
</html>
|