Fix HTML lang attribute (#169)
* Fix #165 * use .Site.Language.Lang instead of .Site.LanguageCode according to hugo documentation * add contributor D_DAndrew
This commit is contained in:
parent
81666ed54b
commit
b535058204
|
@ -34,3 +34,4 @@
|
|||
- [Paul Lettington](https://github.com/plett)
|
||||
- [Thomas Vochten](https://github.com/thomasvochten)
|
||||
- [Caspar Krieger](https://www.asparck.com)
|
||||
- [D_DAndrew](https://d-dandrew.github.io)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="{{ .Site.LanguageCode }}">
|
||||
<html lang="{{ .Site.Language.Lang }}">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
|
|
Loading…
Reference in New Issue