blob: bd3bf4f2100537deea3abe24680d4f3aa03037f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/style.css" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<title>Oops! I did it again</title>
</head>
<body>
<header>
<h1>Bloggings</h1>
<a href="/index.php">Back</a>
</header>
<main>
<article>
<h2>Oops! I did it again</h2>
<h3>2026-05-31</h3>
<h4>More blog improvements</h4>
<p>
This blog now
<a href="https://git.wittamore.fr/bloggings/tree/"
>sits in my git repository</a
>, so I made a few changes.
</p>
<p>
One is the
<a href="https://git.wittamore.fr/blog-scripts/tree/blogsend"
>blogsend</a
>
bash script which now does a git commit on my local machine, and a git
pull on the remote web server. The other is the git repos itself which
now has the web site in one repos, and the bash scripts in another.
</p>
<p>
All this is probably of little interest to anyone other than myself,
but if you want to run a smol blog you might find it useful, after all
that's why I'm posting it.
</p>
</article>
</main>
<footer>
<p>§</p>
</footer>
</body>
</html>
|