lxhome/templates/blog.html

34 lines
910 B
HTML
Raw Normal View History

2021-02-09 22:07:27 +00:00
<!doctype html>
<html lang="en">
<head>
{{{head}}}
<link rel="stylesheet" href="{{base-url}}/assets/styles/dark.css?1">
<link rel="stylesheet" href="{{base-url}}/assets/styles/main.css?1">
2021-02-09 22:07:27 +00:00
</head>
<body>
<header>
<nav style="text-align: center;">
<a href="/">HOME</a> | <a href="#">GPG</a> | <a href="/categories/">Categories</a> | <a href="/tags/">Tags</a>
2021-02-09 22:07:27 +00:00
</nav>
<hr/>
2021-02-09 22:07:27 +00:00
</header>
<article>
{{{preamble}}}
</article>
<main id="content">
2021-02-09 22:07:27 +00:00
{{{content}}}
</main>
2021-02-09 22:07:27 +00:00
<footer>
<span>© 2010-2021 Sameer Rahmani</span><br/>
<span>Built with <a href="https://www.gnu.org/software/emacs/">Emacs Lisp</a> and <a href="https://orgmode.org/">org-mode</a>.</span><br/>
<span><a href="https://devheroes.codes/lxsameer/lxhome">https://devheroes.codes/lxsameer/lxhome</a></span>
</footer>
</div>
</body>
</html>