39 lines
1.8 KiB
Nix
39 lines
1.8 KiB
Nix
{
|
|
baseUrl = "https://blog.rhelmot.io/";
|
|
siteTitle = "rhelmot blog";
|
|
language = "en-US";
|
|
|
|
head = ''
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/an-old-hope.min.css" media="(prefers-color-scheme: dark)" rel="stylesheet">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/base16/solarized-light.min.css" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" rel="stylesheet">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/python.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/nix.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/c.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/rust.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/shell.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/bash.min.js"></script>
|
|
<script>hljs.highlightAll();</script>
|
|
'';
|
|
|
|
footer.html = ''
|
|
Posts licensed <a href="https://creativecommons.org/licenses/by-nc/4.0">CC-BY-NC 4.0</a>
|
|
'';
|
|
|
|
pages = [
|
|
{
|
|
path = "index.html";
|
|
title = "Home";
|
|
|
|
body.markdown = ''
|
|
Webster's dictionary defines "blog" as "a website that contains online personal reflections, comments, and often hyperlinks, videos, and photographs provided by the writer".
|
|
This is mine.
|
|
|
|
You will find mostly longform technical writing here.
|
|
|
|
<templates-posts-navigation />
|
|
'';
|
|
}
|
|
];
|
|
}
|