32 lines
753 B
Plaintext
32 lines
753 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<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>
|
|
<header>
|
|
<h1>kamat's website</h1>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="/">Home</a></li>
|
|
<li><a href="/pages/about">About</a></li>
|
|
<li><a href="/pages/profile">Profile</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>
|