Page Update

This commit is contained in:
Liliesh 2025-07-06 09:21:10 +02:00
parent c8da4b3c34
commit ee9709e29d
Signed by: liliesh
GPG key ID: 680387646C7BAE8E
18 changed files with 1027 additions and 1 deletions

49
build/about.html Normal file
View file

@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<meta name="author" content="Liliesh">
<meta name="description" content="Some information about me">
<link rel="alternate" href="/atom.xml" type="application/atom+xml">
<link rel="stylesheet" href="/style.css" type="text/css">
<title>About Me | </title>
</head>
<body>
<header>
<h1><a href="/">Liliesh's Blog</a></h1>
<nav>
<h2></h2>
<ul>
<li><h2><a href="/">Blog</a></h2></li>
<li><h2><a href="/archive.html">Archive</a></h2></li>
<li><h2><a href="/tags/">Tags</a></h2></li>
<li><h2><a href="/about.html">About Me</a></h2></li>
</ul>
</nav>
</header>
<main>
<h1>About Me(ow)!</h1>
</main>
<footer>
<p>This website was built with <a href="https://github.com/venthur/blag">blag</a>.
<br>
Subscribe to the <a href="/atom.xml">atom feed</a>.
<br>
Contact me via
<a rel="me" href="https://wetdry.world/@techfoxxo">Fediverse</a>,
<a href="https://matrix.to/#/@liliesh:catgirl.cloud">Matrix</a>
</p>
</footer>
</body>
</html>

77
build/archive.html Normal file
View file

@ -0,0 +1,77 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<meta name="author" content="Liliesh">
<meta name="description" content="">
<link rel="alternate" href="/atom.xml" type="application/atom+xml">
<link rel="stylesheet" href="/style.css" type="text/css">
<title>Archive | </title>
</head>
<body>
<header>
<h1><a href="/">Liliesh's Blog</a></h1>
<nav>
<h2></h2>
<ul>
<li><h2><a href="/">Blog</a></h2></li>
<li><h2><a href="/archive.html">Archive</a></h2></li>
<li><h2><a href="/tags/">Tags</a></h2></li>
<li><h2><a href="/about.html">About Me</a></h2></li>
</ul>
</nav>
</header>
<main>
<article>
<header>
<time datetime="2023-01-02 12:00:00+00:00">2023-01-02</time>
<div>
<h2><a href="second-post.html">Second Post</a></h2>
<p>— This is the second blog post, so you can see how it looks like on the front page.</p>
</div>
</header>
</article>
<article>
<header>
<time datetime="2023-01-01 12:00:00+00:00">2023-01-01</time>
<div>
<h2><a href="hello-world.html">Hello World!</a></h2>
<p>— Hello there, this is the first blog post. You should read me first.</p>
</div>
</header>
</article>
</main>
<footer>
<p>This website was built with <a href="https://github.com/venthur/blag">blag</a>.
<br>
Subscribe to the <a href="/atom.xml">atom feed</a>.
<br>
Contact me via
<a rel="me" href="https://wetdry.world/@techfoxxo">Fediverse</a>,
<a href="https://matrix.to/#/@liliesh:catgirl.cloud">Matrix</a>
</p>
</footer>
</body>
</html>

37
build/atom.xml Normal file
View file

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Liliesh's Blog</title><link href="https://liliesh.pinkhaj.world/blog/" rel="alternate"></link><link href="https://liliesh.pinkhaj.world/blog/atom.xml" rel="self"></link><id>https://liliesh.pinkhaj.world/blog/</id><updated>2023-01-02T12:00:00+00:00</updated><entry><title>Second Post</title><link href="https://liliesh.pinkhaj.world/blog/second-post.html" rel="alternate"></link><published>2023-01-02T12:00:00+00:00</published><updated>2023-01-02T12:00:00+00:00</updated><author><name>Liliesh</name></author><id>tag:liliesh.pinkhaj.world,2023-01-02:/blog/second-post.html</id><summary type="html">This is the second blog post, so you can see how it looks like on the front page.</summary><content type="html">&lt;h2&gt;Second Post&lt;/h2&gt;
&lt;p&gt;This page serves no purpose :)&lt;/p&gt;
&lt;p&gt;&lt;img alt="Blag Screenshot" src="blag.png"&gt;&lt;/p&gt;</content></entry><entry><title>Hello World!</title><link href="https://liliesh.pinkhaj.world/blog/hello-world.html" rel="alternate"></link><published>2023-01-01T12:00:00+00:00</published><updated>2023-01-01T12:00:00+00:00</updated><author><name>Liliesh</name></author><id>tag:liliesh.pinkhaj.world,2023-01-01:/blog/hello-world.html</id><summary type="html">Hello there, this is the first blog post. You should read me first.</summary><content type="html">&lt;h2&gt;Hello World&lt;/h2&gt;
&lt;p&gt;This is an example blog post. Internally, blag differentiates between &lt;strong&gt;pages&lt;/strong&gt;
and &lt;strong&gt;articles&lt;/strong&gt;. Intuitively, pages are simple pages and articles are blog
posts. The decision whether a document is a page or an article is made
depending on the presence of the &lt;code&gt;date&lt;/code&gt; metadata element: Any document that
contains the &lt;code&gt;date&lt;/code&gt; metadata element is an article, everything else a page.&lt;/p&gt;
&lt;p&gt;This differentiation has consequences:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;blag uses different templates: &lt;code&gt;page.html&lt;/code&gt; and &lt;code&gt;article.html&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;only articles are collected in the Atom feed&lt;/li&gt;
&lt;li&gt;only articles are aggregated in the tag pages&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For more detailed information, please refer to the &lt;a href="https://blag.readthedocs.io"&gt;documentation&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Syntax Highlighting&lt;/h3&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;&lt;span class="k"&gt;def&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nf"&gt;foo&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;bar&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;
&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="sd"&gt;&amp;quot;&amp;quot;&amp;quot;This is a docstring.&lt;/span&gt;
&lt;span class="sd"&gt; &amp;quot;&amp;quot;&amp;quot;&lt;/span&gt;
&lt;span class="c1"&gt;# comment&lt;/span&gt;
&lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="n"&gt;bar&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Syntax highlighting is done via &lt;a href="https://pygments.org"&gt;Pygments&lt;/a&gt;. For code blocks, blag
generates the necessary CSS classes by default, which you can use to style your
code using CSS. It provides you with a default light- and dark theme, for more
information on how to generate a different theme, please refer to &lt;a href="https://pygments.org"&gt;Pygments&amp;rsquo;
documentation&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;Next Steps&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Adapt the files in &lt;code&gt;templates&lt;/code&gt; to your needs&lt;/li&gt;
&lt;li&gt;Check out the files in &lt;code&gt;static&lt;/code&gt; and modify as needed&lt;/li&gt;
&lt;li&gt;Add some content&lt;/li&gt;
&lt;li&gt;Change the &lt;a href="favicon.ico"&gt;favicon.ico&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</content></entry></feed>

BIN
build/blag.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

84
build/code-dark.css Normal file
View file

@ -0,0 +1,84 @@
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.hll { background-color: #49483e }
.c { color: #959077 } /* Comment */
.err { color: #ed007e; background-color: #1e0010 } /* Error */
.esc { color: #f8f8f2 } /* Escape */
.g { color: #f8f8f2 } /* Generic */
.k { color: #66d9ef } /* Keyword */
.l { color: #ae81ff } /* Literal */
.n { color: #f8f8f2 } /* Name */
.o { color: #ff4689 } /* Operator */
.x { color: #f8f8f2 } /* Other */
.p { color: #f8f8f2 } /* Punctuation */
.ch { color: #959077 } /* Comment.Hashbang */
.cm { color: #959077 } /* Comment.Multiline */
.cp { color: #959077 } /* Comment.Preproc */
.cpf { color: #959077 } /* Comment.PreprocFile */
.c1 { color: #959077 } /* Comment.Single */
.cs { color: #959077 } /* Comment.Special */
.gd { color: #ff4689 } /* Generic.Deleted */
.ge { color: #f8f8f2; font-style: italic } /* Generic.Emph */
.ges { color: #f8f8f2; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.gr { color: #f8f8f2 } /* Generic.Error */
.gh { color: #f8f8f2 } /* Generic.Heading */
.gi { color: #a6e22e } /* Generic.Inserted */
.go { color: #66d9ef } /* Generic.Output */
.gp { color: #ff4689; font-weight: bold } /* Generic.Prompt */
.gs { color: #f8f8f2; font-weight: bold } /* Generic.Strong */
.gu { color: #959077 } /* Generic.Subheading */
.gt { color: #f8f8f2 } /* Generic.Traceback */
.kc { color: #66d9ef } /* Keyword.Constant */
.kd { color: #66d9ef } /* Keyword.Declaration */
.kn { color: #ff4689 } /* Keyword.Namespace */
.kp { color: #66d9ef } /* Keyword.Pseudo */
.kr { color: #66d9ef } /* Keyword.Reserved */
.kt { color: #66d9ef } /* Keyword.Type */
.ld { color: #e6db74 } /* Literal.Date */
.m { color: #ae81ff } /* Literal.Number */
.s { color: #e6db74 } /* Literal.String */
.na { color: #a6e22e } /* Name.Attribute */
.nb { color: #f8f8f2 } /* Name.Builtin */
.nc { color: #a6e22e } /* Name.Class */
.no { color: #66d9ef } /* Name.Constant */
.nd { color: #a6e22e } /* Name.Decorator */
.ni { color: #f8f8f2 } /* Name.Entity */
.ne { color: #a6e22e } /* Name.Exception */
.nf { color: #a6e22e } /* Name.Function */
.nl { color: #f8f8f2 } /* Name.Label */
.nn { color: #f8f8f2 } /* Name.Namespace */
.nx { color: #a6e22e } /* Name.Other */
.py { color: #f8f8f2 } /* Name.Property */
.nt { color: #ff4689 } /* Name.Tag */
.nv { color: #f8f8f2 } /* Name.Variable */
.ow { color: #ff4689 } /* Operator.Word */
.pm { color: #f8f8f2 } /* Punctuation.Marker */
.w { color: #f8f8f2 } /* Text.Whitespace */
.mb { color: #ae81ff } /* Literal.Number.Bin */
.mf { color: #ae81ff } /* Literal.Number.Float */
.mh { color: #ae81ff } /* Literal.Number.Hex */
.mi { color: #ae81ff } /* Literal.Number.Integer */
.mo { color: #ae81ff } /* Literal.Number.Oct */
.sa { color: #e6db74 } /* Literal.String.Affix */
.sb { color: #e6db74 } /* Literal.String.Backtick */
.sc { color: #e6db74 } /* Literal.String.Char */
.dl { color: #e6db74 } /* Literal.String.Delimiter */
.sd { color: #e6db74 } /* Literal.String.Doc */
.s2 { color: #e6db74 } /* Literal.String.Double */
.se { color: #ae81ff } /* Literal.String.Escape */
.sh { color: #e6db74 } /* Literal.String.Heredoc */
.si { color: #e6db74 } /* Literal.String.Interpol */
.sx { color: #e6db74 } /* Literal.String.Other */
.sr { color: #e6db74 } /* Literal.String.Regex */
.s1 { color: #e6db74 } /* Literal.String.Single */
.ss { color: #e6db74 } /* Literal.String.Symbol */
.bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
.fm { color: #a6e22e } /* Name.Function.Magic */
.vc { color: #f8f8f2 } /* Name.Variable.Class */
.vg { color: #f8f8f2 } /* Name.Variable.Global */
.vi { color: #f8f8f2 } /* Name.Variable.Instance */
.vm { color: #f8f8f2 } /* Name.Variable.Magic */
.il { color: #ae81ff } /* Literal.Number.Integer.Long */

74
build/code-light.css Normal file
View file

@ -0,0 +1,74 @@
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.hll { background-color: #ffffcc }
.c { color: #3D7B7B; font-style: italic } /* Comment */
.err { border: 1px solid #FF0000 } /* Error */
.k { color: #008000; font-weight: bold } /* Keyword */
.o { color: #666666 } /* Operator */
.ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */
.cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */
.cp { color: #9C6500 } /* Comment.Preproc */
.cpf { color: #3D7B7B; font-style: italic } /* Comment.PreprocFile */
.c1 { color: #3D7B7B; font-style: italic } /* Comment.Single */
.cs { color: #3D7B7B; font-style: italic } /* Comment.Special */
.gd { color: #A00000 } /* Generic.Deleted */
.ge { font-style: italic } /* Generic.Emph */
.ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.gr { color: #E40000 } /* Generic.Error */
.gh { color: #000080; font-weight: bold } /* Generic.Heading */
.gi { color: #008400 } /* Generic.Inserted */
.go { color: #717171 } /* Generic.Output */
.gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.gs { font-weight: bold } /* Generic.Strong */
.gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.gt { color: #0044DD } /* Generic.Traceback */
.kc { color: #008000; font-weight: bold } /* Keyword.Constant */
.kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
.kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
.kp { color: #008000 } /* Keyword.Pseudo */
.kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
.kt { color: #B00040 } /* Keyword.Type */
.m { color: #666666 } /* Literal.Number */
.s { color: #BA2121 } /* Literal.String */
.na { color: #687822 } /* Name.Attribute */
.nb { color: #008000 } /* Name.Builtin */
.nc { color: #0000FF; font-weight: bold } /* Name.Class */
.no { color: #880000 } /* Name.Constant */
.nd { color: #AA22FF } /* Name.Decorator */
.ni { color: #717171; font-weight: bold } /* Name.Entity */
.ne { color: #CB3F38; font-weight: bold } /* Name.Exception */
.nf { color: #0000FF } /* Name.Function */
.nl { color: #767600 } /* Name.Label */
.nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
.nt { color: #008000; font-weight: bold } /* Name.Tag */
.nv { color: #19177C } /* Name.Variable */
.ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
.w { color: #bbbbbb } /* Text.Whitespace */
.mb { color: #666666 } /* Literal.Number.Bin */
.mf { color: #666666 } /* Literal.Number.Float */
.mh { color: #666666 } /* Literal.Number.Hex */
.mi { color: #666666 } /* Literal.Number.Integer */
.mo { color: #666666 } /* Literal.Number.Oct */
.sa { color: #BA2121 } /* Literal.String.Affix */
.sb { color: #BA2121 } /* Literal.String.Backtick */
.sc { color: #BA2121 } /* Literal.String.Char */
.dl { color: #BA2121 } /* Literal.String.Delimiter */
.sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
.s2 { color: #BA2121 } /* Literal.String.Double */
.se { color: #AA5D1F; font-weight: bold } /* Literal.String.Escape */
.sh { color: #BA2121 } /* Literal.String.Heredoc */
.si { color: #A45A77; font-weight: bold } /* Literal.String.Interpol */
.sx { color: #008000 } /* Literal.String.Other */
.sr { color: #A45A77 } /* Literal.String.Regex */
.s1 { color: #BA2121 } /* Literal.String.Single */
.ss { color: #19177C } /* Literal.String.Symbol */
.bp { color: #008000 } /* Name.Builtin.Pseudo */
.fm { color: #0000FF } /* Name.Function.Magic */
.vc { color: #19177C } /* Name.Variable.Class */
.vg { color: #19177C } /* Name.Variable.Global */
.vi { color: #19177C } /* Name.Variable.Instance */
.vm { color: #19177C } /* Name.Variable.Magic */
.il { color: #666666 } /* Literal.Number.Integer.Long */

BIN
build/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

98
build/hello-world.html Normal file
View file

@ -0,0 +1,98 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<meta name="author" content="Liliesh">
<meta name="description" content="Hello there, this is the first blog post. You should read me first.">
<link rel="alternate" href="/atom.xml" type="application/atom+xml">
<link rel="stylesheet" href="/style.css" type="text/css">
<title>Hello World! | </title>
</head>
<body>
<header>
<h1><a href="/">Liliesh's Blog</a></h1>
<nav>
<h2></h2>
<ul>
<li><h2><a href="/">Blog</a></h2></li>
<li><h2><a href="/archive.html">Archive</a></h2></li>
<li><h2><a href="/tags/">Tags</a></h2></li>
<li><h2><a href="/about.html">About Me</a></h2></li>
</ul>
</nav>
</header>
<main>
<h2>Hello World!</h2>
<aside>
<p>published on 2023-01-01
· tagged with
<a href="/tags/blag.html">#blag</a> and
<a href="/tags/pygments.html">#pygments</a>
</p>
</aside>
<h2>Hello World</h2>
<p>This is an example blog post. Internally, blag differentiates between <strong>pages</strong>
and <strong>articles</strong>. Intuitively, pages are simple pages and articles are blog
posts. The decision whether a document is a page or an article is made
depending on the presence of the <code>date</code> metadata element: Any document that
contains the <code>date</code> metadata element is an article, everything else a page.</p>
<p>This differentiation has consequences:</p>
<ul>
<li>blag uses different templates: <code>page.html</code> and <code>article.html</code></li>
<li>only articles are collected in the Atom feed</li>
<li>only articles are aggregated in the tag pages</li>
</ul>
<p>For more detailed information, please refer to the <a href="https://blag.readthedocs.io">documentation</a></p>
<h3>Syntax Highlighting</h3>
<div class="codehilite"><pre><span></span><code><span class="k">def</span><span class="w"> </span><span class="nf">foo</span><span class="p">(</span><span class="n">bar</span><span class="p">):</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;This is a docstring.</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="c1"># comment</span>
<span class="k">return</span> <span class="n">bar</span>
</code></pre></div>
<p>Syntax highlighting is done via <a href="https://pygments.org">Pygments</a>. For code blocks, blag
generates the necessary CSS classes by default, which you can use to style your
code using CSS. It provides you with a default light- and dark theme, for more
information on how to generate a different theme, please refer to <a href="https://pygments.org">Pygments&rsquo;
documentation</a>.</p>
<h3>Next Steps</h3>
<ul>
<li>Adapt the files in <code>templates</code> to your needs</li>
<li>Check out the files in <code>static</code> and modify as needed</li>
<li>Add some content</li>
<li>Change the <a href="favicon.ico">favicon.ico</a></li>
</ul>
</main>
<footer>
<p>This website was built with <a href="https://github.com/venthur/blag">blag</a>.
<br>
Subscribe to the <a href="/atom.xml">atom feed</a>.
<br>
Contact me via
<a rel="me" href="https://wetdry.world/@techfoxxo">Fediverse</a>,
<a href="https://matrix.to/#/@liliesh:catgirl.cloud">Matrix</a>
</p>
</footer>
</body>
</html>

79
build/index.html Normal file
View file

@ -0,0 +1,79 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<meta name="author" content="Liliesh">
<meta name="description" content="">
<link rel="alternate" href="/atom.xml" type="application/atom+xml">
<link rel="stylesheet" href="/style.css" type="text/css">
<title>Liliesh's Blog | </title>
</head>
<body>
<header>
<h1><a href="/">Liliesh's Blog</a></h1>
<nav>
<h2></h2>
<ul>
<li><h2><a href="/">Blog</a></h2></li>
<li><h2><a href="/archive.html">Archive</a></h2></li>
<li><h2><a href="/tags/">Tags</a></h2></li>
<li><h2><a href="/about.html">About Me</a></h2></li>
</ul>
</nav>
</header>
<main>
<article>
<header>
<time datetime="2023-01-02 12:00:00+00:00">2023-01-02</time>
<div>
<h2><a href="second-post.html">Second Post</a></h2>
<p>— This is the second blog post, so you can see how it looks like on the front page.</p>
</div>
</header>
</article>
<article>
<header>
<time datetime="2023-01-01 12:00:00+00:00">2023-01-01</time>
<div>
<h2><a href="hello-world.html">Hello World!</a></h2>
<p>— Hello there, this is the first blog post. You should read me first.</p>
</div>
</header>
</article>
<p><a href="/archive.html">all articles...</a></p>
</main>
<footer>
<p>This website was built with <a href="https://github.com/venthur/blag">blag</a>.
<br>
Subscribe to the <a href="/atom.xml">atom feed</a>.
<br>
Contact me via
<a rel="me" href="https://wetdry.world/@techfoxxo">Fediverse</a>,
<a href="https://matrix.to/#/@liliesh:catgirl.cloud">Matrix</a>
</p>
</footer>
</body>
</html>

66
build/second-post.html Normal file
View file

@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<meta name="author" content="Liliesh">
<meta name="description" content="This is the second blog post, so you can see how it looks like on the front page.">
<link rel="alternate" href="/atom.xml" type="application/atom+xml">
<link rel="stylesheet" href="/style.css" type="text/css">
<title>Second Post | </title>
</head>
<body>
<header>
<h1><a href="/">Liliesh's Blog</a></h1>
<nav>
<h2></h2>
<ul>
<li><h2><a href="/">Blog</a></h2></li>
<li><h2><a href="/archive.html">Archive</a></h2></li>
<li><h2><a href="/tags/">Tags</a></h2></li>
<li><h2><a href="/about.html">About Me</a></h2></li>
</ul>
</nav>
</header>
<main>
<h2>Second Post</h2>
<aside>
<p>published on 2023-01-02
· tagged with
<a href="/tags/blag.html">#blag</a>
</p>
</aside>
<h2>Second Post</h2>
<p>This page serves no purpose :)</p>
<p><img alt="Blag Screenshot" src="blag.png"></p>
</main>
<footer>
<p>This website was built with <a href="https://github.com/venthur/blag">blag</a>.
<br>
Subscribe to the <a href="/atom.xml">atom feed</a>.
<br>
Contact me via
<a rel="me" href="https://wetdry.world/@techfoxxo">Fediverse</a>,
<a href="https://matrix.to/#/@liliesh:catgirl.cloud">Matrix</a>
</p>
</footer>
</body>
</html>

153
build/style.css Normal file
View file

@ -0,0 +1,153 @@
@import "code-light.css" (prefers-color-scheme: light);
@import "code-dark.css" (prefers-color-scheme: dark);
:root {
color-scheme: light dark;
--background: light-dark(#FFFFFF, #2B363B);
--background-dim: light-dark(#f5f7f9, #2F3C42);
--foreground: light-dark(#2B303A, #f0f2f3);
--foreground-dim: light-dark(#576379, #d5d5d5);
--foreground-heavy: light-dark(#191C22, #f2f4f5);
--primary-color: light-dark(#375287, #A1C5FF);
}
html {
font-size: 18px;
font-family: serif;
}
body {
margin: 0 auto;
max-width: 50rem;
background: var(--background);
color: var(--foreground);
line-height: 1.5;
padding: 0rem 0.5rem;
}
aside {
font-size: smaller;
font-style: italic;
color: var(--foreground-dim);
}
img {
max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
strong {
color: var(--foreground-heavy);
}
a {
color: var(--primary-color);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
text-decoration: underline;
}
nav ul {
list-style: none;
}
nav li {
display: inline;
}
nav li + li:before {
content: " · ";
margin: 0 0.5ex;
}
article header {
display: flex;
flex-direction: row;
margin: 1rem 0;
}
article header time {
white-space: nowrap;
color: var(--foreground-dim);
font-style: italic;
flex: 0 0 12ex;
}
article header h2,
article header p {
font-size: 1rem;
display: inline;
}
code,
pre {
background: var(--background-dim);
border-radius: 0.3rem;
font-family: monospace;
}
pre {
padding: 1rem;
border-left: 2px solid var(--primary-color);
overflow: auto;
}
code {
padding: 0.1rem 0.2rem;
}
/* reset the padding for code inside pre */
pre code {
padding: 0;
}
blockquote {
background: var(--background-dim);
border-radius: 0 0.3rem 0.3rem 0;
font-style: italic;
border-left: 2px solid var(--primary-color);
margin: 0;
padding: 1rem;
}
/* reset the margin for p inside blockquotes */
blockquote p {
margin: 0;
}
body > header {
padding: 2rem 0;
}
body footer {
margin: 3rem 0;
color: var(--foreground-dim);
font-size: smaller;
text-align: center;
}
header nav {
display: flex;
flex-direction: row;
justify-content: space-between;
}
header h1 {
margin: 0 auto;
color: var(--primary-color);
}
header h2 {
display: inline;
font-size: 1.2rem;
}

79
build/tags/blag.html Normal file
View file

@ -0,0 +1,79 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<meta name="author" content="Liliesh">
<meta name="description" content="">
<link rel="alternate" href="/atom.xml" type="application/atom+xml">
<link rel="stylesheet" href="/style.css" type="text/css">
<title>#blag | </title>
</head>
<body>
<header>
<h1><a href="/">Liliesh's Blog</a></h1>
<nav>
<h2></h2>
<ul>
<li><h2><a href="/">Blog</a></h2></li>
<li><h2><a href="/archive.html">Archive</a></h2></li>
<li><h2><a href="/tags/">Tags</a></h2></li>
<li><h2><a href="/about.html">About Me</a></h2></li>
</ul>
</nav>
</header>
<main>
<h2>Articles tagged "blag"</h2>
<article>
<header>
<time datetime="2023-01-02 12:00:00+00:00">2023-01-02</time>
<div>
<h2><a href="../second-post.html">Second Post</a></h2>
<p>— This is the second blog post, so you can see how it looks like on the front page.</p>
</div>
</header>
</article>
<article>
<header>
<time datetime="2023-01-01 12:00:00+00:00">2023-01-01</time>
<div>
<h2><a href="../hello-world.html">Hello World!</a></h2>
<p>— Hello there, this is the first blog post. You should read me first.</p>
</div>
</header>
</article>
</main>
<footer>
<p>This website was built with <a href="https://github.com/venthur/blag">blag</a>.
<br>
Subscribe to the <a href="/atom.xml">atom feed</a>.
<br>
Contact me via
<a rel="me" href="https://wetdry.world/@techfoxxo">Fediverse</a>,
<a href="https://matrix.to/#/@liliesh:catgirl.cloud">Matrix</a>
</p>
</footer>
</body>
</html>

58
build/tags/index.html Normal file
View file

@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<meta name="author" content="Liliesh">
<meta name="description" content="">
<link rel="alternate" href="/atom.xml" type="application/atom+xml">
<link rel="stylesheet" href="/style.css" type="text/css">
<title>Tags | </title>
</head>
<body>
<header>
<h1><a href="/">Liliesh's Blog</a></h1>
<nav>
<h2></h2>
<ul>
<li><h2><a href="/">Blog</a></h2></li>
<li><h2><a href="/archive.html">Archive</a></h2></li>
<li><h2><a href="/tags/">Tags</a></h2></li>
<li><h2><a href="/about.html">About Me</a></h2></li>
</ul>
</nav>
</header>
<main>
<h2>Tags</h2>
<ul>
<li>
<a href="blag.html">blag (2 articles)</a>
</li>
<li>
<a href="pygments.html">pygments (1 articles)</a>
</li>
</ul>
</main>
<footer>
<p>This website was built with <a href="https://github.com/venthur/blag">blag</a>.
<br>
Subscribe to the <a href="/atom.xml">atom feed</a>.
<br>
Contact me via
<a rel="me" href="https://wetdry.world/@techfoxxo">Fediverse</a>,
<a href="https://matrix.to/#/@liliesh:catgirl.cloud">Matrix</a>
</p>
</footer>
</body>
</html>

65
build/tags/pygments.html Normal file
View file

@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<meta name="author" content="Liliesh">
<meta name="description" content="">
<link rel="alternate" href="/atom.xml" type="application/atom+xml">
<link rel="stylesheet" href="/style.css" type="text/css">
<title>#pygments | </title>
</head>
<body>
<header>
<h1><a href="/">Liliesh's Blog</a></h1>
<nav>
<h2></h2>
<ul>
<li><h2><a href="/">Blog</a></h2></li>
<li><h2><a href="/archive.html">Archive</a></h2></li>
<li><h2><a href="/tags/">Tags</a></h2></li>
<li><h2><a href="/about.html">About Me</a></h2></li>
</ul>
</nav>
</header>
<main>
<h2>Articles tagged "pygments"</h2>
<article>
<header>
<time datetime="2023-01-01 12:00:00+00:00">2023-01-01</time>
<div>
<h2><a href="../hello-world.html">Hello World!</a></h2>
<p>— Hello there, this is the first blog post. You should read me first.</p>
</div>
</header>
</article>
</main>
<footer>
<p>This website was built with <a href="https://github.com/venthur/blag">blag</a>.
<br>
Subscribe to the <a href="/atom.xml">atom feed</a>.
<br>
Contact me via
<a rel="me" href="https://wetdry.world/@techfoxxo">Fediverse</a>,
<a href="https://matrix.to/#/@liliesh:catgirl.cloud">Matrix</a>
</p>
</footer>
</body>
</html>

85
build/testpage.html Normal file
View file

@ -0,0 +1,85 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<meta name="author" content="Liliesh">
<meta name="description" content="">
<link rel="alternate" href="/atom.xml" type="application/atom+xml">
<link rel="stylesheet" href="/style.css" type="text/css">
<title> | </title>
</head>
<body>
<header>
<h1><a href="/">Liliesh's Blog</a></h1>
<nav>
<h2></h2>
<ul>
<li><h2><a href="/">Blog</a></h2></li>
<li><h2><a href="/archive.html">Archive</a></h2></li>
<li><h2><a href="/tags/">Tags</a></h2></li>
<li><h2><a href="/about.html">About Me</a></h2></li>
</ul>
</nav>
</header>
<main>
<h1>This Is A Headline</h1>
<p>This is some <strong>bold text</strong> with some <code>code</code> inside. This is <em>some_underlined</em>
text with some <code>code</code> inside. This is some text with some <code>code</code> inside. This
is some text with some <code>code</code> inside. This is some text with some <code>code</code>
inside. This is some text with some <code>code</code> inside. This is some text with some
<code>code</code> inside. This is some text with some <code>code</code> inside.</p>
<p>This is some <a href="https://example.com">link</a> inside the text &ndash; it does not really
lead anywhere! This is some <a href="https://example.com">link</a> inside the text &ndash; it
does not really lead anywhere! This is some <a href="https://example.com">link</a> inside
the text &ndash; it does not really lead anywhere!</p>
<ul>
<li>some bullets</li>
<li>some other</li>
<li>bullets</li>
<li>foo</li>
</ul>
<div class="codehilite"><pre><span></span><code><span class="c1"># this is some python code</span>
<span class="k">class</span><span class="w"> </span><span class="nc">Foo</span><span class="p">:</span>
<span class="k">def</span><span class="w"> </span><span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">foo</span><span class="p">,</span> <span class="n">bar</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">foo</span> <span class="o">=</span> <span class="n">foo</span>
<span class="bp">self</span><span class="o">.</span><span class="n">bar</span> <span class="o">=</span> <span class="n">bar</span>
<span class="k">def</span><span class="w"> </span><span class="nf">do_something</span><span class="p">():</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;This is the docstring of this method.</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="k">return</span> <span class="n">foo</span>
</code></pre></div>
<h2>Some other headline</h2>
<p>This is some other text</p>
<div class="codehilite"><pre><span></span><code><span class="c"># some comment</span>
<span class="nf">foo</span><span class="o">:</span>
<span class="w"> </span>ls<span class="w"> </span>-lh
</code></pre></div>
</main>
<footer>
<p>This website was built with <a href="https://github.com/venthur/blag">blag</a>.
<br>
Subscribe to the <a href="/atom.xml">atom feed</a>.
<br>
Contact me via
<a rel="me" href="https://wetdry.world/@techfoxxo">Fediverse</a>,
<a href="https://matrix.to/#/@liliesh:catgirl.cloud">Matrix</a>
</p>
</footer>
</body>
</html>