diff options
author | Filipp Lepalaan <filipp@mac.com> | 2017-04-24 22:26:17 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2017-04-24 22:26:17 +0300 |
commit | 85e92ff2ee4ca30e0144790a1d95b8023595bf2f (patch) | |
tree | ff38ef1fe1957e00732ab43f891b7915a7a97274 /servo/templates/default.html | |
parent | 5934831e5921b78651418a589da3c67ed320a309 (diff) | |
download | Servo-85e92ff2ee4ca30e0144790a1d95b8023595bf2f.tar.gz Servo-85e92ff2ee4ca30e0144790a1d95b8023595bf2f.tar.bz2 Servo-85e92ff2ee4ca30e0144790a1d95b8023595bf2f.zip |
Cleanup
Diffstat (limited to 'servo/templates/default.html')
-rwxr-xr-x | servo/templates/default.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/servo/templates/default.html b/servo/templates/default.html index 139d083..363f3c8 100755 --- a/servo/templates/default.html +++ b/servo/templates/default.html @@ -1,21 +1,21 @@ {% load servo_tags %} {% load humanize %} -{% load cache %} +{% load static %} {% load i18n %} <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <link rel="icon" type="image/png" href="{{ STATIC_URL }}images/favicon.png"> - <link rel="apple-touch-icon" type="image/png" href="{{ STATIC_URL }}images/apple-touch-icon.png"> - <link href="{{ STATIC_URL }}js/bootstrap/css/bootstrap.min.css" rel="stylesheet"> - <link href="{{ STATIC_URL }}js/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"> - <link href="{{ STATIC_URL }}css/bootstrap-datetimepicker.min.css" rel="stylesheet"> - <link href="{{ STATIC_URL }}css/bootstrap-sortable.css" rel="stylesheet"> - <link href="{{ STATIC_URL }}css/glyphicons.css" rel="stylesheet"> - <link href="{{ STATIC_URL }}css/halflings.css" rel="stylesheet"> - <link href="{{ STATIC_URL }}css/servo.css" rel="stylesheet"> + <link rel="icon" type="image/png" href="{% static "images/favicon.png" %}"> + <link rel="apple-touch-icon" type="image/png" href="{% static "images/apple-touch-icon.png" %}"> + <link href="{% static "js/bootstrap/css/bootstrap.min.css" %}" rel="stylesheet"> + <link href="{% static "js/bootstrap/css/bootstrap-responsive.min.css" %}" rel="stylesheet"> + <link href="{% static "css/bootstrap-datetimepicker.min.css" %}" rel="stylesheet"> + <link href="{% static "css/bootstrap-sortable.css" %}" rel="stylesheet"> + <link href="{% static "css/glyphicons.css" %}" rel="stylesheet"> + <link href="{% static "css/halflings.css" %}" rel="stylesheet"> + <link href="{% static "css/servo.css" %}" rel="stylesheet"> <title>{{ title }} | Servo</title> </head> <body> |