add bootstrap

This commit is contained in:
2023-02-22 19:56:03 +10:30
parent 917dde42f2
commit ba347dc9fd
7 changed files with 1655 additions and 6 deletions

View File

@ -4,7 +4,16 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/css/styles.css" />
<title>{{ title }}</title>
{% if title %}
<title>{{ site.title }} - {{ title }}</title>
{% else %}
<title>{{ site.title }}</title>
{% endif %}
{% if description %}
<meta name="description" content="{{ description }}">
{% else %}
<meta name="description" content="{{ site.description }}">
{% endif %}
</head>
<body>
<header>{% include 'partials/header.njk' %}</header>
@ -15,4 +24,5 @@
</main>
<footer>{% include 'partials/footer.njk' %}</footer>
</body>
</html>
</html>