Skip to content

Commit 54e4cdd

Browse files
committed
add about page; delete old website; misc improvements
1 parent fff492d commit 54e4cdd

19 files changed

+54
-2177
lines changed

TODO.rss

Lines changed: 0 additions & 23 deletions
This file was deleted.

assets/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ code.zig {
206206
grid-column-start: 1; grid-column-end: 3; /* exclusive end */
207207
grid-row-start: 3; grid-row-end: 4;
208208
}
209-
/* .static_column { } unneeded */
209+
.static_column { border-radius: 5px; outline: 1px solid; padding: 5px; }
210210
/* .static_row { } unneeded */
211211

212212
.flex_grid { column-gap: 20px; justify-content: center; margin: 15px; }

clean.sh

Lines changed: 0 additions & 15 deletions
This file was deleted.

content/articles/about.smd

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
.title = "About",
3+
.author = "Jan Philipp Hafer",
4+
.date = @date("2025-01-03:00:00:00"),
5+
.layout = "about.shtml",
6+
.tags = ["about", "overview", "blog"],
7+
.draft = false,
8+
---
9+
10+
### Content
11+
- The purpose of the website is improving the state of the art
12+
with current focus on debugging (not making bugs or removing them).
13+
- Articles are of technical nature with focus of overview and user perspective
14+
and are aimed towards readers with technical background. Articles may be work in process (wip).
15+
- Posts are usually experience reports too short and not in-depth enough for articles.
16+
17+
### Author
18+
- My name is Jan Philipp Hafer and my hobby is system analysis with current
19+
focus on debugging.
20+
- So far I have done various hardware and software things on embedded and desktop
21+
including the full development pipeline.
22+
- One side effect is that I have the habit of asking authors of
23+
projects debugging and design questions, if such information is missing,
24+
and collect best practices and semantics including trade-offs for various systems.

impressum.html

Lines changed: 0 additions & 15 deletions
This file was deleted.

index.html

Lines changed: 0 additions & 32 deletions
This file was deleted.

layouts/about.shtml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<title :text="$site.title"></title>
6+
<link rel="stylesheet" type="text/css" href="$site.asset('normalize.css').link()">
7+
<link rel="stylesheet" type="text/css" href="$site.asset('style.css').link()">
8+
</head>
9+
<body>
10+
<div class="home_page">
11+
<div class='static_grid'>
12+
<div class='static_double_column1'>
13+
<h1><span class="reset_a"><a href="/">Jans Website.</a></span> About.</h1>
14+
</div>
15+
<div class='static_double_column2'>
16+
<h2 :text="$page.title"></h2>
17+
</div>
18+
<div class='static_double_column3'>
19+
<div :html="$page.content()"></div>
20+
</div>
21+
</div>
22+
</div>
23+
</body>
24+
</html>

layouts/article.shtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<div class="home_page">
1111
<div class='static_grid'>
1212
<div class='static_double_column1'>
13-
<h1><span class="reset_a"><a href="/">Jans Website</a></span></h1>
13+
<h1><span class="reset_a"><a href="/">Jans Website.</a></span> <span class="reset_a"><a href="/articles/about/">About.</a></span></h1>
1414
</div>
1515
<div class='static_double_column2'>
1616
<h2 :text="$page.title"></h2>

layouts/blog_post.shtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<div class="home_page">
1111
<div class='static_grid'>
1212
<div class='static_double_column1'>
13-
<h1><span class="reset_a"><a href="/">Jans Website</a></span></h1>
13+
<h1><span class="reset_a"><a href="/">Jans Website.</a></span> <span class="reset_a"><a href="/articles/about/">About.</a></span></h1>
1414
</div>
1515
<div class='static_double_column2'>
1616
<h2 :text="$page.title"></h2>

layouts/home.shtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<div class="home_page">
1111
<div class='static_grid'>
1212
<div class='static_double_column1'>
13-
<h1>Jans Website</h1>
13+
<h1>Jans Website. <span class="reset_a"><a href="/articles/about/">About.</a></span></h1>
1414
</div>
1515
<div class='static_double_column2'>
1616
<h2 :text="$page.title"></h2>

0 commit comments

Comments
 (0)