It was like that when I got here
This commit is contained in:
parent
331423d3f6
commit
18251d7f00
36 changed files with 1534 additions and 1000 deletions
23
templates/base.html
Normal file
23
templates/base.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>{% block title %}{{title}}{% endblock %} | NCPN</title>
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
<script src="/script.js" defer></script>
|
||||
<noscript>
|
||||
<style>
|
||||
.jsonly {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
</noscript>
|
||||
{% block head %}{% endblock %}
|
||||
</head>
|
||||
<body class="{% block bodyClass %}{% endblock %}">
|
||||
<header>{% block header %}{% endblock %}</header>
|
||||
<main>{% block main %}{% endblock %}</main>
|
||||
<footer>Running NCPN v?.??</footer>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue