[TASK] Add jquery 2.1.1.
This commit is contained in:
parent
e965a76fb8
commit
daf535a5f3
|
@ -4,3 +4,6 @@
|
||||||
[submodule "contrib/bootstrap"]
|
[submodule "contrib/bootstrap"]
|
||||||
path = contrib/bootstrap
|
path = contrib/bootstrap
|
||||||
url = https://github.com/twbs/bootstrap.git
|
url = https://github.com/twbs/bootstrap.git
|
||||||
|
[submodule "contrib/jquery"]
|
||||||
|
path = contrib/jquery
|
||||||
|
url = https://github.com/jquery/jquery.git
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,4 +1,3 @@
|
||||||
{% load staticfiles compressed %}
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
@ -7,6 +6,9 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta name="description" content="Merging Citavi projects and mapping existing datasets.">
|
<meta name="description" content="Merging Citavi projects and mapping existing datasets.">
|
||||||
<title>{% block title %}{{page.name}} :: {{page.title}}{% endblock %}</title>
|
<title>{% block title %}{{page.name}} :: {{page.title}}{% endblock %}</title>
|
||||||
|
{% load staticfiles compressed %}
|
||||||
|
<!-- jQuery -->
|
||||||
|
<script type="application/javascript" src="{% static 'jquery/jquery-2.1.1.min.js' %}" charset="utf-8"></script>
|
||||||
<!-- Bootstrap -->
|
<!-- Bootstrap -->
|
||||||
{% compressed_css 'bootstrap' %}
|
{% compressed_css 'bootstrap' %}
|
||||||
{% compressed_js 'bootstrap' %}
|
{% compressed_js 'bootstrap' %}
|
||||||
|
@ -36,7 +38,9 @@
|
||||||
</nav>
|
</nav>
|
||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
<div id="header" class="container">
|
<div id="header" class="container">
|
||||||
{% block header %}<h1>{{page.title}}</h1>{% endblock %}
|
{% block header %}
|
||||||
|
<h1>{{page.title}}</h1>
|
||||||
|
{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="content" class="container">
|
<div id="content" class="container">
|
||||||
|
@ -44,7 +48,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div id="footer" class="footer">
|
<div id="footer" class="footer">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<p class="text-muted">{% block footer %}This software proudly presented by: <a href="http://hs-hannocer.de">Hochschule Hannover</a>{% endblock %}</p>
|
<p class="text-muted">{% block footer %}This software proudly presented by <a href="http://hs-hannocer.de">Hochschule Hannover</a>{% endblock %}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in New Issue