bulma/docs/_layouts/default.html
Stanislav Termosa 06dd1f462d Prevent Chrome to suggest translation from Latin (#518)
Add `lang` attribute to `html` tag
2017-02-26 10:54:12 +00:00

9 lines
325 B
HTML

<!DOCTYPE html>
<html lang="en" class="{% if page.route %}route-{{page.route}}{% elsif page.layout %}route-{{page.layout}}{% endif %}">
{% include head.html %}
<body class="layout-{{ page.layout }}{% if page.doc-tab %} page-{{ page.doc-tab}}{% endif %}">
{{ content }}
{% include footer.html %}
</body>
</html>