Commit 8f158abc authored by Administrator's avatar Administrator 💬

feat: improve lessons' titles

parent d9cdce85
...@@ -6,7 +6,14 @@ ...@@ -6,7 +6,14 @@
<head> <head>
{% block head %} {% block head %}
<meta charset="utf-8" /> <meta charset="utf-8" />
<title>{% if header.title %}{{ header.title|e('html') }} | {% endif %}{{ site.title|e('html') }}</title>
{% block page_title %}
<title>
{% if page and page.title %}{{ page.title | e('html') }} | {% endif %}
{% if header.title %}{{ header.title | e('html') }} | {% endif %}
{{ site.title | e('html') }}
</title>
{% endblock %}
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
...@@ -28,7 +35,7 @@ ...@@ -28,7 +35,7 @@
{% block javascripts %} {% block javascripts %}
{# TODO: ZEPTO JS PLEASE #} {# TODO: ZEPTO JS PLEASE #}
{# Yes! We managed to remove all these crappy dependencies \o/ #} {# Yes! We managed to remove all these crappy dependencies \o/ #}
{# … No we did not, not until we remake the language selector #} {# … No we did not, not until we remake the language selector -- we did #}
{# {% do assets.addJs('jquery', 101) %}#} {# {% do assets.addJs('jquery', 101) %}#}
{# {% do assets.addJs('theme://js/jquery.treemenu.js', {group:'bottom'}) %}#} {# {% do assets.addJs('theme://js/jquery.treemenu.js', {group:'bottom'}) %}#}
{# {% do assets.addJs('theme://js/site.js', {group:'bottom'}) %}#} {# {% do assets.addJs('theme://js/site.js', {group:'bottom'}) %}#}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment