diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-08-11 11:36:08 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-08-11 11:36:08 +0200 |
commit | 4b6e77ad9172b29839b76e29614bf4c0ba81c90d (patch) | |
tree | b315210ddebeed11e60e8353ca9641cdda8e01e3 /module/web/templates/default | |
parent | beginning new pyload web-ui from scratch (diff) | |
download | pyload-4b6e77ad9172b29839b76e29614bf4c0ba81c90d.tar.xz |
show footer at bottom
Diffstat (limited to 'module/web/templates/default')
-rw-r--r-- | module/web/templates/default/base.html | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/module/web/templates/default/base.html b/module/web/templates/default/base.html index 36a81d662..879faa0bd 100644 --- a/module/web/templates/default/base.html +++ b/module/web/templates/default/base.html @@ -16,26 +16,28 @@ {% endblock %}
</head>
<body>
-<header>
- <div class="center">
- <img class="logo" alt="" src="static/img/default/logo.png">
- <a href="/en/Start"><span class="title">pyLoad</span></a>
- </div>
-</header>
-<div id="wrapper">
- {% for message in messages %}
- <b><p>{{ message }}</p></b>
- {% endfor %}
+<div id="wrap">
+ <header>
+ <div class="center">
+ <img class="logo" alt="" src="static/img/default/logo.png">
+ <a href="/en/Start"><span class="title">pyLoad</span></a>
+ </div>
+ </header>
+ <div id="push"></div>
+ <div id="content">
+ {% for message in messages %}
+ <b><p>{{ message }}</p></b>
+ {% endfor %}
- <h1>Test!</h1>
+ <h1>Test!</h1>
- {% block content %}
- {% endblock content %}
+ {% block content %}
+ {% endblock content %}
+ </div>
</div>
<footer>
<div class="center">
<img class="logo" src="static/img/default/logo_grey.png"/>
-
<div class="block copyright">
© 2008-2012<br>
The pyLoad Team<br>
@@ -68,11 +70,8 @@ dsfdsf <br>
sdf dsg <br>
</div>
-
</div>
-
</footer>
-<!-- end #footer -->
{% block deferred %}
{% endblock deferred %}
</body>
|