11ty / eleventy-base-blog

A starter repository for a blog web site using the Eleventy static site generator.
https://eleventy-base-blog.netlify.app/
MIT License
1.21k stars 619 forks source link

Use `metadata.language` for the `lang` attribute #98

Closed SiarheiBobryk closed 2 years ago

SiarheiBobryk commented 3 years ago

It's already en by default.

hyunbinseo commented 2 years ago
<html lang="{{ lang or metadata.language }}">

Above global attribute might be more consistent, considering the following default metadata element.

<meta name="description" content="{{ description or metadata.description }}">
zachleat commented 2 years ago

I like it! Thanks!