aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2022-01-16 13:07:10 -0500
committerJesús <heckyel@hyperbola.info>2022-01-16 13:07:10 -0500
commitebb98c20b517cd1329b5a500eae3e3b0c2bc6f8c (patch)
tree28f3bf690029120da43bcb844d9908148c0d38d3
parentad582908184b993e6d0a79680056d1ed31033c5e (diff)
downloadpersonal-site-ebb98c20b517cd1329b5a500eae3e3b0c2bc6f8c.tar.lz
personal-site-ebb98c20b517cd1329b5a500eae3e3b0c2bc6f8c.tar.xz
personal-site-ebb98c20b517cd1329b5a500eae3e3b0c2bc6f8c.zip
Fix static path
Invalid block tag on line 15: 'static'.
-rw-r--r--django/core/templates/core/base.djhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/templates/core/base.djhtml b/django/core/templates/core/base.djhtml
index 728bcf0..1a5d082 100644
--- a/django/core/templates/core/base.djhtml
+++ b/django/core/templates/core/base.djhtml
@@ -1,6 +1,7 @@
<!Doctype html>
<html lang="en">
<head>
+ {% load static %}
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Sitio personal de Jesús</title>
@@ -18,7 +19,6 @@
<meta name="twitter:title" content="Sitio personal de Jesús"/>
<meta name="twitter:description" content="Trabajos, proyectos y contribuciones de Jesús E."/>
<meta name="twitter:image" content="{% static 'core/images/favicon.png' %}"/>
- {% load static %}
<link rel="icon" href="{% static 'core/images/favicon.png' %}" sizes="192x192" />
<link rel="stylesheet" type="text/css"
href="{% static 'core/lib/normalize-css/normalize.css' %}"