21 lines
381 B
HTML
21 lines
381 B
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 %}
|
|
</div>
|
|
</body>
|
|
</html>
|