1
0
mirror of synced 2025-12-26 14:02:45 -05:00
Files
docs/layouts/default.html
Jason Etcovitch 5d09adb106 Add/use small-footer for Actions landing page (#16265)
* 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>
2020-11-03 13:12:25 -05:00

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>