hugo is nice - but it's huge. I've never built a static site generator before and thought the world could use one more - it's not like there's already enough choice out there! No, but seriously. I love hugo and it has all the bells and whistles and you should definitely use that and not this. I just like reinventing the wheel to learn about stuff - and I like the 80/20 rule. This gives like 60% of what I want already and is tiny fraction of hugo in terms of LOC (hugo without it's bazillion dependencies is like 80k+ - this is like 500 and very likely won't ever grow above let's say 5k). Also org mode is awesome and why not use it as a configuration format as well. Let's see where this goes. YOLO.
37 lines
687 B
HTML
37 lines
687 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="/style.css" type="text/css" />
|
|
<title>About</title>
|
|
</head>
|
|
|
|
<body>
|
|
<header class='header'>
|
|
<a class="logo" href="/">home</a>
|
|
<nav>
|
|
<a href="https://www.github.com/niklasfasching">github</a>
|
|
<a href="/about">about</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<div class="container">
|
|
<h1 class="title">About
|
|
<br>
|
|
<span class="subtitle"></span>
|
|
</h1>
|
|
<ul class="tags">
|
|
|
|
</ul>
|
|
<h1 class="title"><p>
|
|
About
|
|
</p>
|
|
</h1>
|
|
<p>
|
|
and some content
|
|
</p>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|