Push before release

This commit is contained in:
2025-07-15 20:55:12 +02:00
parent 60daa40712
commit b9a403e9d9
3 changed files with 40 additions and 36 deletions

View File

@@ -1,5 +1,5 @@
# *This (2024-02-13)
Naturally I devote the first blog post to the website.
# <a href="#2025-02-13" name="2025-02-13">*this (2025-02-13)</a>
Naturally I devote the first blog post to the creation of this website.
Let's find out if I'm any good in writing such things.
## Motivation
@@ -16,14 +16,14 @@ I just suck at it. Deal with it :)
Having programmed some time with modern JS/TS frameworks I'm a stark oppponent of this
whole technology stack. It just adds - layers and layers - of - complexity over complexity -
nobody ever has any chance to understand. That's why I simply want a plain html+css stack,
nobody ever got any chance to understand. That's why I simply want a plain html+css website,
suppported by some GNU programs.
## Technical details
You can find the whole source code of this in my [git()](https://git.rhetenor.de/rhetenor/website).
Beside HTML+CSS I wanted a bit of a template mechanism, but didn't want it to be utterly complex.
Beside HTML+CSS I wanted some kind of template mechanism, but didn't want it to be utterly complex.
So I use `cat`, `make` to glue everything together and `pandoc` to translate Markdown to HTML for this
blog.
blog, because HTML is not too fun to write.
### Building a page
To start the template I have a `start.html` which contains everything from the start `<html>` tag,
@@ -51,7 +51,7 @@ I will need some paging mechanism and at one point maybe a search. But until I d
ignore it for now.
### Marquee tag
Just joking it died with Internet Explorer and never was in the standard!
Just joking it died with Internet Explorer and never was standardized!
### References
I think I need some reference mechanism, to easilier include them, such that it is not that much of a hazzle.

View File

@@ -1,9 +1,10 @@
<main id="blog">
<h1 id="mainHeading">$ mount /dev/blog</h1>
<article>
<h1 id="this-2024-02-13">*This (2024-02-13)</h1>
<p>Naturally I devote the first blog post to the website. Lets find out
if Im any good in writing such things.</p>
<h1 id="this-2025-02-13"><a href="#2025-02-13" name="2025-02-13">*this
(2025-02-13)</a></h1>
<p>Naturally I devote the first blog post to the creation of this
website. Lets find out if Im any good in writing such things.</p>
<h2 id="motivation">Motivation</h2>
<p>The motivation for the website came from frustration with modern
sites and a bit of nostalgia. But mainly I wanted the <a
@@ -13,40 +14,42 @@ and what I believe and give me a correctiv. I cant remember where I
read about it the first time, but I thought the idea was neat.
Especially as more of a private person, it motivates me to keep going
with things when I imagine people reading this.</p>
<p>The design of this page is as bad as it is for once, it was the style
at the time (be happy I dont include a <code>&lt;marquee&gt;</code>
tag. After all. Why not.) and for the second: I just suck at it. Deal
with it :)</p>
<p>Having programmed quite some time with modern JS/TS frameworks Im a
stark oppponent of this whole technology stack. It just adds layers and
layers of complexity over complexity nobody ever has any chance to
understand. Thats why I simply want a plain html+css stack, suppported
by Linux programs.</p>
<p>The design of this page is as bad as it is, because for once, it was
the style at the time (be happy I dont include a
<code>&lt;marquee&gt;</code> tag. After all. Why not.) and secondly: I
just suck at it. Deal with it :)</p>
<p>Having programmed some time with modern JS/TS frameworks Im a stark
oppponent of this whole technology stack. It just adds - layers and
layers - of - complexity over complexity - nobody ever got any chance to
understand. Thats why I simply want a plain html+css website,
suppported by some GNU programs.</p>
<h2 id="technical-details">Technical details</h2>
<p>You can find the whole source code of this in my <a
href="https://git.rhetenor.de/rhetenor/website">git()</a>. Beside
HTML+CSS I wanted a bit of a template mechanism, but didnt want it to
be utterly complex.</p>
HTML+CSS I wanted some kind of template mechanism, but didnt want it to
be utterly complex. So I use <code>cat</code>, <code>make</code> to glue
everything together and <code>pandoc</code> to translate Markdown to
HTML for this blog, because HTML is not too fun to write.</p>
<h3 id="building-a-page">Building a page</h3>
<p>As such I build this sites together with <code>cat</code>. To start
the template I have a <code>start.html</code> which contains everything
from the start <code>&lt;html&gt;</code> tag, the whole
<p>To start the template I have a <code>start.html</code> which contains
everything from the start <code>&lt;html&gt;</code> tag, the whole
<code>&lt;head&gt;</code> and the start <code>&lt;body&gt;</code> tag.
Then the <code>nav.html</code> with the navigation and the
<code>side.html</code> with the sidebar gets included. Afterwards the
actual page gets included and at the end the <code>end.html</code> which
just closes the tags.</p>
Then the <code>nav.html</code> and <code>side.html</code> are included
with navigation and sidebar . Afterwards the actual
<code>&lt;article&gt;</code> gets included and everything is closed
inside <code>end.html</code>.</p>
<p>So for example the <code>index.html</code> page is built using
<code>cat start.html nav.html side.html index.html end.html</code></p>
<p>Same applies to every other page.</p>
<h3 id="automating-using-make">Automating using make</h3>
<p>I automated this for a whole folder using a Makefile on which I dont
want to elaborate, its just a standard Makefile. Simple at the start
and getting more cryptic as more one works on it. Probably the story of
all Makefiles.</p>
want to elaborate too much, its just a “simple” Makefile. Makefiles are
always simple when you start out and keep getting more cryptic as more
as you work on it.</p>
<h3 id="blog">Blog</h3>
<p>Since Im not that much of a fan of writing HTML all the time, but
quite some fan of Markdown, I decided to use it for this blog. I write
these posts as .md pages and convert them using pandoc with
think Markdown is not that bad, I decided to use it for this blog. I
write these posts as .md pages and convert them using pandoc with
<code>pandoc -f markdown -t html *.md -o blog.html</code>. All of this
also automated using markdown.</p>
<h2 id="future-work">Future Work</h2>
@@ -56,10 +59,11 @@ more content here it will become confusing. I will need some paging
mechanism and at one point maybe a search. But until I decide it is the
time, I will just ignore it for now.</p>
<h3 id="marquee-tag">Marquee tag</h3>
<p>Just joking it died with Internet Explorer and never was in the
standard!</p>
<p>Just joking it died with Internet Explorer and never was
standardized!</p>
<h3 id="references">References</h3>
<p>I think I need some reference mechanism</p>
<p>I think I need some reference mechanism, to easilier include them,
such that it is not that much of a hazzle.</p>
<main id="blog">
<h1 id="mainHeading">
$ mount /dev/blog

View File

@@ -4,7 +4,7 @@ aside {
width: 0;
}
min-height: 100%;
max-width: 14%;
max-width: 20%;
height: 100%;
overflow: hidden;
margin-right: 1vw;