diff --git a/mo/web/templates/base.html b/mo/web/templates/base.html index 4413fc3dcce773096cbf69aaab6df90900822b1d..361c62f7f1b11baa946e9fbc51d6261b18418a15 100644 --- a/mo/web/templates/base.html +++ b/mo/web/templates/base.html @@ -4,6 +4,9 @@ <title>Odevzdávací systém MO: {% block title %}{% endblock %}</title> <link rel=stylesheet href="{{ asset_url('bootstrap.min.css') }}" type='text/css' media=all> <link rel=stylesheet href="{{ asset_url('mo.css') }}" type='text/css' media=all> + <link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='img/favicon-32x32.png') }}"> + <link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='img/favicon-16x16.png') }}"> + <link rel="shortcut icon" href="{{ url_for('static', filename='img/favicon.ico') }}"> {% block head %}{% endblock %} </head> <body> diff --git a/static/img/favicon-16x16.png b/static/img/favicon-16x16.png new file mode 100644 index 0000000000000000000000000000000000000000..ef470ffceb2f5f5b306ca29118fbb32f73c462a7 Binary files /dev/null and b/static/img/favicon-16x16.png differ diff --git a/static/img/favicon-32x32.png b/static/img/favicon-32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..07d95f38ec7a1b8d6f9e10499ebaad2541b65f59 Binary files /dev/null and b/static/img/favicon-32x32.png differ diff --git a/static/img/favicon.ico b/static/img/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..f5a2c8a9767b40152a896d31d39bffcd9d69cc84 Binary files /dev/null and b/static/img/favicon.ico differ