Commit b03ffc0e2119f47cafb960ef0aa2a6b49ee167cd

Authored by Sergio Oliveira
1 parent 4be8858d

Small html fixes

src/templates/base.html
... ... @@ -5,19 +5,20 @@
5 5 {% block head %}
6 6 <meta charset="UTF-8" />
7 7 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  8 + <title>Colab - {% block title %}Colab{% endblock %}</title>
8 9  
9 10 <link rel="stylesheet" href="{{ STATIC_URL }}third-party/bootstrap/css/bootstrap.min.css" type="text/css" media="screen, projection" />
10 11  
11 12 <link rel="stylesheet"
12 13 href="{{ STATIC_URL }}third-party/font-awesome/css/font-awesome.min.css"
13   - type="text/css" media="screen" charset="utf-8"/>
  14 + type="text/css" media="screen" />
14 15  
15 16 {% if not is_mobile %}
16 17 {% conversejs_static %}
17 18 {% endif %}
18 19  
19 20 <link rel="stylesheet" href="{{ STATIC_URL }}css/screen.css"
20   - type="text/css" media="screen" charset="utf-8"/>
  21 + type="text/css" media="screen" />
21 22  
22 23 <script type="text/javascript" src="{{ STATIC_URL }}third-party/jquery-2.0.3.min.js"></script>
23 24 <script type="text/javascript" src="{{ STATIC_URL }}third-party/jquery.debouncedresize.js"></script>
... ...
src/templates/includes/big_header.html
... ... @@ -2,7 +2,7 @@
2 2  
3 3 <div class="row hidden-xs hidden-sm">
4 4 <div class="col-lg-2 col-lg-offset-5 text-center">
5   - <img src="{{ STATIC_URL }}img/logo.png" />
  5 + <img src="{{ STATIC_URL }}img/logo.png" alt="Colab" />
6 6 </div>
7 7 </div>
8 8  
... ...