Make HTML lang attribute configurable

This commit is contained in:
Juno Takano 2025-12-23 21:40:31 -03:00
commit ffead4fb47
2 changed files with 7 additions and 0 deletions

View file

@ -1,5 +1,9 @@
<!DOCTYPE html>
{% if config.content_language %}
<html lang="{{ config.content_language }}">
{% else %}
<html>
{% endif %}
<head>
{% if config.site_title %}
<title>{% block title %}{% endblock title %} &bullet; {{config.site_title}}</title>