summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-12-12 19:10:27 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-12-12 19:10:27 -0500
commitbcf8f7438278880f092361814bbcd3207d11e937 (patch)
treec9b83fb0770dd17f352673c3ff13b8b13b09a180 /templates/base.html
parent02fdb37d55ec1158162d4c35c3b43d1bcd4e58fa (diff)
parent024fd1b2843d2abd0094faedfbc49e1d1a21edd0 (diff)
Merge commit '024fd1b' (Remove cdnprefix template tag)
Conflicts: templates/base.html templates/public/art.html templates/public/donate.html templates/public/download.html templates/public/index.html
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/base.html b/templates/base.html
index f4284e2d..6f4c73f5 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -1,12 +1,12 @@
-{% load url from future %}<!DOCTYPE html>
+{% load url from future %}{% load static from staticfiles %}<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %}Parabola GNU/Linux-libre{% endblock %}</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
- <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}archweb.css" media="screen, projection" />
- <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}archweb-print.css" media="print" />
- <link rel="icon" type="image/x-icon" href="{{ STATIC_URL }}favicon.ico" />
- <link rel="shortcut icon" type="image/x-icon" href="{{ STATIC_URL }}favicon.ico" />
+ <link rel="stylesheet" type="text/css" href="{% static "archweb.css" %}" media="screen, projection" />
+ <link rel="stylesheet" type="text/css" href="{% static "archweb-print.css" %}" media="print" />
+ <link rel="icon" type="image/x-icon" href="{% static "favicon.ico" %}" />
+ <link rel="shortcut icon" type="image/x-icon" href="{% static "favicon.ico" %}" />
<link rel="search" type="application/opensearchdescription+xml" href="{% url 'opensearch-packages' as osp %}{{ osp }}" title="Parabola Packages" />
{% block head %}{% endblock %}
</head>