Skip to content

Commit

Permalink
add about page; delete old website; misc improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
matu3ba committed Jan 3, 2025
1 parent fff492d commit 54e4cdd
Show file tree
Hide file tree
Showing 19 changed files with 54 additions and 2,177 deletions.
23 changes: 0 additions & 23 deletions TODO.rss

This file was deleted.

2 changes: 1 addition & 1 deletion assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ code.zig {
grid-column-start: 1; grid-column-end: 3; /* exclusive end */
grid-row-start: 3; grid-row-end: 4;
}
/* .static_column { } unneeded */
.static_column { border-radius: 5px; outline: 1px solid; padding: 5px; }
/* .static_row { } unneeded */

.flex_grid { column-gap: 20px; justify-content: center; margin: 15px; }
Expand Down
15 changes: 0 additions & 15 deletions clean.sh

This file was deleted.

24 changes: 24 additions & 0 deletions content/articles/about.smd
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
.title = "About",
.author = "Jan Philipp Hafer",
.date = @date("2025-01-03:00:00:00"),
.layout = "about.shtml",
.tags = ["about", "overview", "blog"],
.draft = false,
---

### Content
- The purpose of the website is improving the state of the art
with current focus on debugging (not making bugs or removing them).
- Articles are of technical nature with focus of overview and user perspective
and are aimed towards readers with technical background. Articles may be work in process (wip).
- Posts are usually experience reports too short and not in-depth enough for articles.

### Author
- My name is Jan Philipp Hafer and my hobby is system analysis with current
focus on debugging.
- So far I have done various hardware and software things on embedded and desktop
including the full development pipeline.
- One side effect is that I have the habit of asking authors of
projects debugging and design questions, if such information is missing,
and collect best practices and semantics including trade-offs for various systems.
15 changes: 0 additions & 15 deletions impressum.html

This file was deleted.

32 changes: 0 additions & 32 deletions index.html

This file was deleted.

24 changes: 24 additions & 0 deletions layouts/about.shtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title :text="$site.title"></title>
<link rel="stylesheet" type="text/css" href="$site.asset('normalize.css').link()">
<link rel="stylesheet" type="text/css" href="$site.asset('style.css').link()">
</head>
<body>
<div class="home_page">
<div class='static_grid'>
<div class='static_double_column1'>
<h1><span class="reset_a"><a href="/">Jans Website.</a></span> About.</h1>
</div>
<div class='static_double_column2'>
<h2 :text="$page.title"></h2>
</div>
<div class='static_double_column3'>
<div :html="$page.content()"></div>
</div>
</div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion layouts/article.shtml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="home_page">
<div class='static_grid'>
<div class='static_double_column1'>
<h1><span class="reset_a"><a href="/">Jans Website</a></span></h1>
<h1><span class="reset_a"><a href="/">Jans Website.</a></span> <span class="reset_a"><a href="/articles/about/">About.</a></span></h1>
</div>
<div class='static_double_column2'>
<h2 :text="$page.title"></h2>
Expand Down
2 changes: 1 addition & 1 deletion layouts/blog_post.shtml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="home_page">
<div class='static_grid'>
<div class='static_double_column1'>
<h1><span class="reset_a"><a href="/">Jans Website</a></span></h1>
<h1><span class="reset_a"><a href="/">Jans Website.</a></span> <span class="reset_a"><a href="/articles/about/">About.</a></span></h1>
</div>
<div class='static_double_column2'>
<h2 :text="$page.title"></h2>
Expand Down
2 changes: 1 addition & 1 deletion layouts/home.shtml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="home_page">
<div class='static_grid'>
<div class='static_double_column1'>
<h1>Jans Website</h1>
<h1>Jans Website. <span class="reset_a"><a href="/articles/about/">About.</a></span></h1>
</div>
<div class='static_double_column2'>
<h2 :text="$page.title"></h2>
Expand Down
2 changes: 1 addition & 1 deletion layouts/optimal_debugging.shtml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="home_page">
<div class='static_grid'>
<div class='static_double_column1'>
<h1><span class="reset_a"><a href="/">Jans Website</a></span></h1>
<h1><span class="reset_a"><a href="/">Jans Website.</a></span> <span class="reset_a"><a href="/articles/about/">About.</a></span></h1>
</div>
<div class='static_double_column2'>
<h2 :text="$page.title"></h2>
Expand Down
2 changes: 1 addition & 1 deletion layouts/shennanigans_in_c.shtml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="home_page">
<div class='static_grid'>
<div class='static_double_column1'>
<h1><span class="reset_a"><a href="/">Jans Website</a></span></h1>
<h1><span class="reset_a"><a href="/">Jans Website.</a></span> <span class="reset_a"><a href="/articles/about/">About.</a></span></h1>
</div>
<div class='static_double_column2'>
<h2 :text="$page.title"></h2>
Expand Down
112 changes: 0 additions & 112 deletions post/ci_library.html

This file was deleted.

Loading

0 comments on commit 54e4cdd

Please sign in to comment.