* Combine three super footer elements into one section * Update support-section.html * Update heading font sizes
21 lines
463 B
HTML
21 lines
463 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-section %}
|
|
{% include small-footer %}
|
|
</main>
|
|
</body>
|
|
</html>
|