~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/wlhelp/base.html

  • Committer: franku
  • Date: 2018-11-22 11:08:51 UTC
  • Revision ID: somal@arcor.de-20181122110851-77riof0o4dx2zcm6
split user uploaded content from static content

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{% extends "base.html" %}
 
2
{% load static %}
2
3
 
3
4
{% block title %}
4
5
Encyclopedia - {{ block.super }}
5
6
{% endblock %}
6
7
 
7
8
{% block extra_head %}
8
 
        <link rel="stylesheet" type="text/css" media="all" href="{{ MEDIA_URL }}css/encyclopedia.css" />
9
 
        <script src="{{ MEDIA_URL }}js/encyclopedia.js"></script>
 
9
        <link rel="stylesheet" type="text/css" media="all" href="{% static 'css/encyclopedia.css' %}" />
 
10
        <script src="{% static 'js/encyclopedia.js' %}"></script>
10
11
{{ block.super}}
11
12
{% endblock %}
 
 
b'\\ No newline at end of file'