[geany/www.geany.org] 84b8eb: Fix error page template overriding

Enrico Tröger git-noreply at xxxxx
Sat May 11 13:15:45 UTC 2019


Branch:      refs/heads/master
Author:      Enrico Tröger <enrico.troeger at uvena.de>
Committer:   Enrico Tröger <enrico.troeger at uvena.de>
Date:        Sun, 31 Mar 2019 13:56:11 UTC
Commit:      84b8eb10048e17e550bd63043c639fd63422c4be
             https://github.com/geany/www.geany.org/commit/84b8eb10048e17e550bd63043c639fd63422c4be

Log Message:
-----------
Fix error page template overriding


Modified Paths:
--------------
    geany/templates/errors/error_base.html

Modified: geany/templates/errors/error_base.html
11 lines changed, 5 insertions(+), 6 deletions(-)
===================================================================
@@ -1,13 +1,12 @@
 {% extends "skel.html" %}
+{% load static %}
 
 {% block top_menu %}
 <div class="navbar navbar-inverse navbar-fixed-top">
-    <div class="navbar-inner">
-        <div class="container">
-            <img src="{{ STATIC_URL }}img/geany-36x36.png" class="brand">
-            <a class="brand" href="{% url "home" %}">Geany</a>
-        </div>
-    </div>
+	<div class="container">
+		<img src="{% static "img/geany-36x36.png" %}" class="navbar-brand">
+		<a class="navbar-brand" href="{% url "home" %}">Geany</a>
+	</div>
 </div>
 {% endblock %}
 



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list