diff --git a/.editorconfig b/.editorconfig index f1378ec1a..e67a396e4 100644 --- a/.editorconfig +++ b/.editorconfig @@ -14,6 +14,9 @@ indent_style = space indent_size = 2 quote_type = single +[*.html] +max_line_length = 120 + [*.{html,sass,js,jsx,scss,css,php,svg}] charset = utf-8 indent_style = tab diff --git a/common/static/favicon/favicon.svg b/common/static/favicon/favicon.svg new file mode 100644 index 000000000..465f1a346 --- /dev/null +++ b/common/static/favicon/favicon.svg @@ -0,0 +1 @@ + diff --git a/common/static/icons/apple-touch-icon.png b/common/static/icons/apple-touch-icon.png new file mode 100644 index 000000000..c1637760b Binary files /dev/null and b/common/static/icons/apple-touch-icon.png differ diff --git a/tracker/templates/super.html b/tracker/templates/super.html index e3489b81a..038ea438a 100644 --- a/tracker/templates/super.html +++ b/tracker/templates/super.html @@ -1,16 +1,18 @@ +{% load i18n %} {% load static wagtailmetadata_tags %} {% load wagtail_site from wagtailcore_tags %} {% load render_bundle from webpack_loader %} +{% get_current_language as LANGUAGE_CODE %} - - + + - {% if request.in_preview_panel %} - - {% endif %} {% block head %} - + + + + {% block title %} {% if self.seo_title %}{{ self.seo_title }}{% else %}{{ self.title }}{% endif %} @@ -23,8 +25,6 @@ {% endblock %} - - {% block css %} {% render_bundle 'common' 'css' %} @@ -49,6 +49,9 @@ {% endif %} {% endwith %} {% endblock %} + {% if request.in_preview_panel %} + + {% endif %} {% endblock %}