Initial commit

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2022-05-03 18:02:04 -07:00
commit 126db039e2
27 changed files with 1033 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{% block title %}{% if title %}{{title}}{% else %}Index{% endif %}{% endblock %}</title>
<link rel="stylesheet" href="{% static 'board/style.css' %}">
<script src="{% static 'board/jquery.js' %}"></script>
<script src="{% static 'board/post.js' %}"></script>
</head>
<body>
<main>
{% block content %}{% endblock content %}
</main>
</body>
</html>