mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
579 B
35 lines
579 B
<!DOCTYPE html>
|
|
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
{% gtm body %}
|
|
|
|
{% include header.html %}
|
|
|
|
{% if page.hero %}
|
|
{% include hero.html %}
|
|
{% endif %}
|
|
|
|
{{ content }}
|
|
|
|
{% include offcanvas.html %}
|
|
|
|
{% if page.hero %}
|
|
{% include search-hero.html %}
|
|
{% else %}
|
|
{% include search.html %}
|
|
{% endif %}
|
|
|
|
|
|
<script>
|
|
anchors.options = {
|
|
placement: 'left',
|
|
visible: 'hover'
|
|
};
|
|
anchors.add();
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|
|
|