~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/wiki/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
2
{% load i18n %}
 
3
{% load static %}
3
4
 
4
5
{% block title %}
5
6
Wiki - {{ block.super }}
9
10
{{ block.super}}
10
11
<link rel="alternate" type="application/rss+xml" title="Wiki History (RSS)" href="{% url 'wiki_history_feed_rss' %}" />
11
12
<link rel="alternate" type="application/atom+xml" title="Wiki History (Atom)" href="{% url 'wiki_history_feed_atom' %}" />
12
 
<link rel="stylesheet" type="text/css" media="all" href="{{ MEDIA_URL }}css/wiki.css" />
 
13
<link rel="stylesheet" type="text/css" media="all" href="{% static 'css/wiki.css' %}" />
13
14
{% endblock %}
14
15
 
15
16
{# Define all(!) tabs for the wiki here (all in one place).