Jinja bugfix: add xmlns + xml:lang to <html>

This was not brought over during the initial commit involving
partisl/layout.html.

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-06-01 05:21:01 -07:00
parent 75cc0be189
commit a8a9c28783

View file

@ -1,5 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="{{ language }}"> <html xmlns="http://www.w3.org/1999/xhtml"
xml:lang="{{ language }}" lang="{{ language }}">
{% include 'partials/head.html' %} {% include 'partials/head.html' %}
<body> <body>