3d2a-index/templates/base.html

41 lines
1.5 KiB
HTML

{% load static %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="{% static 'styles.css' %}">
<title>{% block title %}3D2A File Index{% endblock %}</title>
</head>
<body>
<div id="navbar">
<a href="/">
<h1>3D2A Index</h1>
</a>
</div>
<div id="content">
{% block content %}
{% endblock %}
{% if page_obj %}
<div id="paginator">
{% if page_obj.has_previous %}
<a href="?page=1">first</a>|
<a href="?page={{ page_obj.previous_page_number }}">previous</a>
{% endif %}
{{ page_obj.number }}/{{ page_obj.paginator.num_pages }}
{% if page_obj.has_next %}
<a href="?page={{ page_obj.next_page_number }}">next</a>|
<a href="?page={{ page_obj.paginator.num_pages }}">last</a>
{% endif %}
</div>
{% endif %}
<div id="footer">
{% block footer %}
<p>All content on this page is provided as-is. No warranties are provided, express or implied, including warranties of accuracy, merchantability, and fitness for a particular purpose. A majority of content displayed here is proxied/cached from other websites -- names, descriptions, and depictions of items are (c) copyright their original holders as linked in each entry.</p>
<p>No original content on this page is to be used or offerred commercially for any reason, including tags, categorization, and services such as indexing and searching.</p>
<p>DEFCAD can choke on my entire cock. No DEFCAD-exclusive content is contained on this website.</p>
{% endblock %}
</div>
</div>
</body>
</html>