-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.njk
More file actions
24 lines (24 loc) · 1015 Bytes
/
base.njk
File metadata and controls
24 lines (24 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Spatial Model Editor is a user friendly GUI editor to create and edit two-dimensional spatial SBML models of bio-chemical reactions and simulate them using the dune-copasi solver for reaction-diffusion systems.">
<meta name="author" content="Liam Keegan">
<meta name="google-site-verification" content="j9-pKiY0YNWFAS0d9qsHQr8aFUtvYHVxAYrZenKMcmI">
<title>Spatial Model Editor - {{ page_title }}</title>
<link rel="icon" type="image/svg+xml" href="assets/sme.svg">
<link href="main.css" rel="stylesheet">
</head>
<body>
{% include "navbar.njk" %}
{% block header %}
<div class="p-2 p-lg-4 text-center">
<h1 class="display-5 fw-bold">{{ page_title }}</h1>
</div>
{% endblock %}
{% block content %}{% endblock %}
{% block modals %}{% endblock %}
<script src="scripts.js"></script>
</body>
</html>