3d2a-index/templates/base.html

21 lines
381 B
HTML
Raw Normal View History

2025-01-19 01:30:48 -06:00
{% load static %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
2025-01-19 01:30:48 -06:00
<link rel="stylesheet" href="{% static 'styles.css' %}">
<title>{% block title %}3D2A File Index{% endblock %}</title>
</head>
<body>
2025-01-19 02:14:04 -06:00
<div id="navbar">
<a href="/">
<h1>3D2A Index</h1>
</a>
2025-01-19 01:30:48 -06:00
</div>
<div id="content">
{% block content %}
{% endblock %}
</div>
</body>
</html>