commit cae7bf22582a9ac78b2c27a2461429a8d944df18 Author: gus gus@torproject.org Date: Tue Oct 13 22:14:27 2020 -0400
Fix favicon path --- templates/layout.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/templates/layout.html b/templates/layout.html index 6ee4038..d383701 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -7,9 +7,9 @@
<link rel="stylesheet" href="{{ '/static/fonts/fontawesome/css/all.min.css'|asseturl }}" rel="stylesheet"> <!-- Standard favicon --> -<link rel="icon" type="image/x-icon" href="{{ '/static/images/favicon/favicon.ico'|asseturl }}"> +<link rel="icon" type="image/x-icon" href="{{ '/static/images/favicon.ico'|asseturl }}"> <!-- Recommended favicon format --> -<link rel="icon" type="image/png" href="{{ '/static/images/favicon/favicon.png'|asseturl }}"> +<link rel="icon" type="image/png" href="{{ '/static/images/favicon.png'|asseturl }}">
<title>{% block title %}{{ this.title }}{% endblock %} | {{ _("Tor Project | Tor Browser Manual") }}</title> <body class="no-gutters" data-spy="scroll" data-target="#sidenav-topics" id="topics" data-children=".item">
tor-commits@lists.torproject.org