Accessibility: add language to lang attr on html tag

I only use the first subtag of the language string given by `get_language()`, because `get_language()` returns an all-lowercase string, and I don't know if it'll be considered valid by browsers.
This commit is contained in:
Joachim
2021-04-22 20:41:58 +02:00
parent 45fcb0f454
commit 00e6d0524f
2 changed files with 9 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{% load bookwyrm_tags %}
{% load i18n %}
<!DOCTYPE html>
<html lang="en">
<html lang="{% get_lang %}">
<head>
<title>{% block title %}BookWyrm{% endblock %} | {{ site.name }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">