Commit e7876d61f34151cefdfb8df56a3737de6ad72417
1 parent
5fc9423e
Exists in
dev
colibrifavicon
Showing
3 changed files
with
5 additions
and
3 deletions
Show diff stats
2.7 KB
src/misc/templates/base.html
... | ... | @@ -8,7 +8,7 @@ |
8 | 8 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
9 | 9 | <meta name="description" content="Control center for the SVOM French GFT"> |
10 | 10 | <meta name="author" content="CNRS-IRAP"> |
11 | - | |
11 | + <link rel="icon" type="image/png" href="../public/static/media/colibrifavicon.png" /> | |
12 | 12 | |
13 | 13 | <title >Colibri Control Center</title> |
14 | 14 | |
... | ... | @@ -115,7 +115,8 @@ a { |
115 | 115 | <nav class="navbar navbar-inverse navbar-fixed-top navbar-expand-lg" role="navigation"> |
116 | 116 | <!-- Brand and toggle get grouped for better mobile display --> |
117 | 117 | <div class="navbar-header"> |
118 | - <a class="navbar-brand" href={% url "index" %} style="color: black;">Colibri Control Center</a> | |
118 | + <img alt="" src="../public/static/media/colibrifavicon.png"> | |
119 | + <a class="navbar-brand" href={% url "index" %} style="color: black;">Colibri Control Center*</a> | |
119 | 120 | </div> |
120 | 121 | <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> |
121 | 122 | ... | ... |
src/misc/templates/base_unlogged.html
... | ... | @@ -9,7 +9,7 @@ |
9 | 9 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
10 | 10 | <meta name="description" content="Control center for the SVOM French GFT"> |
11 | 11 | <meta name="author" content="CNRS-IRAP"> |
12 | - | |
12 | + <link rel="icon" type="image/png" href="../public/static/media/colibrifavicon.png" /> | |
13 | 13 | |
14 | 14 | <title >Colibri Control Center</title> |
15 | 15 | |
... | ... | @@ -88,6 +88,7 @@ a { |
88 | 88 | <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation"> |
89 | 89 | <!-- Brand and toggle get grouped for better mobile display --> |
90 | 90 | <div class="navbar-header"> |
91 | + <img alt="" src="../public/static/media/colibrifavicon.png"> | |
91 | 92 | <a class="navbar-brand" href={% url "index" %} style="color: black;">Colibri Control Center</a> |
92 | 93 | </div> |
93 | 94 | <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> | ... | ... |