Files
interchan/board/templates/board/base.html
Alek Ratzloff 68d2d26b46 Move board navbar to be in the board and post view only
While it's a neat idea to put it on every page, it was also appearing on
*every page* - including stuff like "delete post" page and reply windows
and stuff.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2022-07-19 19:50:22 -07:00

26 lines
1.0 KiB
HTML

{% 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 %}- {{settings.SITE_NAME}}{% endblock %}</title>
<link rel="stylesheet" href="{% static 'board/style.css' %}">
<link rel="stylesheet" href="{% static 'board/font-awesome/css/font-awesome.min.css' %}">
{% block extrastyle %}{% endblock %}
<script src="{% static 'board/jquery.js' %}"></script>
<script src="{% static 'board/jsframe.min.js' %}"></script>
<script src="{% static 'board/post.js' %}"></script>
{% if user.is_staff %}
<link rel="stylesheet" href="{% static 'board/restricted.css' %}">
<script src="{% static 'board/restricted.js' %}"></script>
{% endif %}
{% block extrajs %}{% endblock %}
</head>
<body>
<main>
{% block content %}{% endblock content %}
</main>
</body>
</html>