beautifulSA-jekyll/_layouts/base.html
Sebastian Skałacki 4a19f20383
Allow configuring lang attribute on <html> tag (#608)
Add a page/site configuration variable named "language", which can be
set either in _config.yml or in a front matter in order to customize
value of "lang" attribute on <html> element.  Previously, it was
hardcoded to "en".
2020-04-22 17:58:01 -04:00

36 lines
798 B
HTML

---
common-css:
- "/css/bootstrap.min.css"
- "/css/bootstrap-social.css"
- "/css/main.css"
common-ext-css:
- "//cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css"
common-googlefonts:
- "Lora:400,700,400italic,700italic"
- "Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800"
common-js:
- "/js/jquery-1.11.2.min.js"
- "/js/bootstrap.min.js"
- "/js/main.js"
---
<!DOCTYPE html>
<html lang="{{ page.language | default: site.language | default: 'en' }}">
<!-- Beautiful Jekyll | MIT license | Copyright Dean Attali 2016 -->
{% include head.html %}
<body>
{% include gtm_body.html %}
{% include nav.html %}
{{ content }}
{% include footer.html %}
{% include footer-scripts.html %}
</body>
</html>