2022-02-01 04:01:07 +00:00
|
|
|
{% from "macros.html.j2" import make_header %}{% from "macros.html.j2" import make_social_links %}<!DOCTYPE html>
|
2021-04-16 04:57:43 +00:00
|
|
|
<html lang="en">
|
2022-02-01 04:01:07 +00:00
|
|
|
{{ make_header(config, css_bundle=css_bundle, js_bundle=js_bundle) }}
|
2021-04-16 04:57:43 +00:00
|
|
|
<body>
|
2022-02-01 04:01:07 +00:00
|
|
|
<div id="background-image"></div>
|
2021-04-16 04:57:43 +00:00
|
|
|
|
|
|
|
<div id="preloader" class="nojs"><div class="spinner"><div></div></div></div>
|
|
|
|
|
|
|
|
<div id="content">
|
2022-02-01 04:01:07 +00:00
|
|
|
<img
|
|
|
|
id="logo"
|
|
|
|
alt="Road to the great wide nowhere"
|
|
|
|
src="https://cdn.enp.one/img/logos/aah-md.jpg"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<h1>{{ config.title }}</h1>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
This is a project of mine where I turn my random travels, undirected wanderings, and
|
|
|
|
unexpected discoveries into something other people can enjoy along with me. There are a
|
|
|
|
lot of cool things in the world and I like to find them, wherever I happen to be. If you're
|
|
|
|
interested in seeing some of these arbitrary oddities then check out the links below.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<ul class="buttons">
|
|
|
|
<li>
|
|
|
|
<a class="button nav" title="Explore All Around Here" href="{{ config.baseurl }}{{ config.build.post_base }}">
|
|
|
|
<i class="fas fa-binoculars"></i> Explore
|
|
|
|
</a>
|
2021-04-16 04:57:43 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
2022-02-01 04:01:07 +00:00
|
|
|
|
|
|
|
<footer>
|
|
|
|
<div>
|
|
|
|
{{ make_social_links(config) }}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<a title="Personal website" href="https://enpaul.net/">©2022-{{ today.year }} enpaul</a>
|
|
|
|
</div>
|
|
|
|
</footer>
|
2021-04-16 04:57:43 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|