refactor head tag to use variables

This commit is contained in:
Dean Attali 2020-08-22 08:39:54 +00:00
parent a04d8bb1b6
commit efe3a22f1f
2 changed files with 71 additions and 78 deletions

View file

@ -21,20 +21,20 @@ common-js:
<!DOCTYPE html>
<html lang="{{ page.language | default: site.language | default: 'en' }}">
<!-- Beautiful Jekyll | MIT license | Copyright Dean Attali 2020 -->
{% include head.html %}
<!-- Beautiful Jekyll | Copyright Dean Attali 2020 -->
{% include head.html %}
<body>
<body>
{% include gtm_body.html %}
{% include gtm_body.html %}
{% include nav.html %}
{% include nav.html %}
{{ content }}
{{ content }}
{% include footer.html %}
{% include footer.html %}
{% include footer-scripts.html %}
{% include footer-scripts.html %}
</body>
</body>
</html>