Fix language in html tag
This commit is contained in:
parent
e29cd46960
commit
8277d0f869
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
{% set theme_config = attribute(config.themes, config.system.pages.theme) %}
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="{{ grav.language.getLanguage ?: 'en' }}">
|
||||
<head>
|
||||
{% block head %}
|
||||
<meta charset="utf-8" />
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="{{ grav.language.getLanguage ?: 'en' }}">
|
||||
<head>
|
||||
{% block head %}
|
||||
<meta charset="utf-8" />
|
||||
|
|
Loading…
Reference in a new issue