diff options
author | Jesús <heckyel@hyperbola.info> | 2022-01-16 13:07:10 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-01-16 13:07:10 -0500 |
commit | ebb98c20b517cd1329b5a500eae3e3b0c2bc6f8c (patch) | |
tree | 28f3bf690029120da43bcb844d9908148c0d38d3 /django | |
parent | ad582908184b993e6d0a79680056d1ed31033c5e (diff) | |
download | personal-site-ebb98c20b517cd1329b5a500eae3e3b0c2bc6f8c.tar.lz personal-site-ebb98c20b517cd1329b5a500eae3e3b0c2bc6f8c.tar.xz personal-site-ebb98c20b517cd1329b5a500eae3e3b0c2bc6f8c.zip |
Fix static path
Invalid block tag on line 15: 'static'.
Diffstat (limited to 'django')
-rw-r--r-- | django/core/templates/core/base.djhtml | 2 |
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' %}" |