Update: default page style

- use [SimpleCSS](https://simplecss.org) as main CSS file.
- page title with name of website
This commit is contained in:
KAMATAKI Yuya
2023-10-23 22:04:46 +09:00
parent 853f457e4a
commit 3b79660c74
3 changed files with 21 additions and 6 deletions

View File

@@ -2,14 +2,28 @@
<html>
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<meta width="device-width" initial-scale="1.0">
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<title>{{ page.title }} | kamat's website</title>
</head>
<body>
<div>
<header>
<h1>kamat's website</h1>
<nav>
<ul>
<li><a href="/">Home</a></li>
</ul>
</nav>
</header>
<div id='content'>
<article>
<h2>{{ page.title }}</h2>
{{ page.content }}
</article>
</div>
<footer>
<small>Author: KAMATAKI Yuya</small>
</footer>
</body>
</html>