From fec892047e4c0b810981fa8f20223e0b1c4f72b4 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Mon, 15 Jun 2026 18:17:10 -0400 Subject: refactor. added rss feed. --- demo/dst/.files | 8 +++ demo/dst/404.html | 32 ++++++++++++ demo/dst/about.html | 32 ++++++++++++ .../an-interesting-article/assets/stamps.webp | Bin 0 -> 46960 bytes .../dst/articles/an-interesting-article/index.html | 34 +++++++++++++ .../assets/japanese-train.webp | Bin 0 -> 128168 bytes .../another-interesting-article/index.html | 34 +++++++++++++ demo/dst/articles/article3.html | 32 ++++++++++++ demo/dst/favicon.png | Bin 0 -> 393 bytes demo/dst/index.html | 37 ++++++++++++++ demo/dst/lists/board-games.html | 38 +++++++++++++++ demo/dst/lists/movies.html | 38 +++++++++++++++ demo/dst/rss.xml | 39 +++++++++++++++ demo/dst/sitemap.xml | 14 ++++++ demo/dst/style.css | 54 +++++++++++++++++++++ 15 files changed, 392 insertions(+) create mode 100644 demo/dst/.files create mode 100644 demo/dst/404.html create mode 100644 demo/dst/about.html create mode 100644 demo/dst/articles/an-interesting-article/assets/stamps.webp create mode 100644 demo/dst/articles/an-interesting-article/index.html create mode 100644 demo/dst/articles/another-interesting-article/assets/japanese-train.webp create mode 100644 demo/dst/articles/another-interesting-article/index.html create mode 100644 demo/dst/articles/article3.html create mode 100644 demo/dst/favicon.png create mode 100644 demo/dst/index.html create mode 100644 demo/dst/lists/board-games.html create mode 100644 demo/dst/lists/movies.html create mode 100644 demo/dst/rss.xml create mode 100644 demo/dst/sitemap.xml create mode 100644 demo/dst/style.css (limited to 'demo/dst') diff --git a/demo/dst/.files b/demo/dst/.files new file mode 100644 index 0000000..f7d8b18 --- /dev/null +++ b/demo/dst/.files @@ -0,0 +1,8 @@ +./404.md +./about.md +./lists/movies.md +./lists/board-games.md +./articles/an-interesting-article/index.md +./articles/article3.md +./articles/another-interesting-article/index.md +./style.css diff --git a/demo/dst/404.html b/demo/dst/404.html new file mode 100644 index 0000000..b6e2d1e --- /dev/null +++ b/demo/dst/404.html @@ -0,0 +1,32 @@ + + + + + + + + + +
+ +
+  _____                           _      
+ | ____|_  ____ _ _ __ ___  _ __ | | ___ 
+ |  _| \ \/ / _` | '_ ` _ \| '_ \| |/ _ \
+ | |___ >  < (_| | | | | | | |_) | |  __/
+ |_____/_/\_\__,_|_| |_| |_| .__/|_|\___|
+                           |_|           
+                              example.org
+
+
+ +
+

404 Not Found

+

I couldn’t find that page.

+ + diff --git a/demo/dst/about.html b/demo/dst/about.html new file mode 100644 index 0000000..b17b7fe --- /dev/null +++ b/demo/dst/about.html @@ -0,0 +1,32 @@ + + + + + + + + + +
+ +
+  _____                           _      
+ | ____|_  ____ _ _ __ ___  _ __ | | ___ 
+ |  _| \ \/ / _` | '_ ` _ \| '_ \| |/ _ \
+ | |___ >  < (_| | | | | | | |_) | |  __/
+ |_____/_/\_\__,_|_| |_| |_| .__/|_|\___|
+                           |_|           
+                              example.org
+
+
+ +
+

About

+

Here is an about page for my website

+ + diff --git a/demo/dst/articles/an-interesting-article/assets/stamps.webp b/demo/dst/articles/an-interesting-article/assets/stamps.webp new file mode 100644 index 0000000..9785ce7 Binary files /dev/null and b/demo/dst/articles/an-interesting-article/assets/stamps.webp differ diff --git a/demo/dst/articles/an-interesting-article/index.html b/demo/dst/articles/an-interesting-article/index.html new file mode 100644 index 0000000..ea236df --- /dev/null +++ b/demo/dst/articles/an-interesting-article/index.html @@ -0,0 +1,34 @@ + + + + + + + This is a very interesting article about stamps + + +
+ +
+  _____                           _      
+ | ____|_  ____ _ _ __ ___  _ __ | | ___ 
+ |  _| \ \/ / _` | '_ ` _ \| '_ \| |/ _ \
+ | |___ >  < (_| | | | | | | |_) | |  __/
+ |_____/_/\_\__,_|_| |_| |_| .__/|_|\___|
+                           |_|           
+                              example.org
+
+
+ +
+

This is a very interesting article about stamps

+

Here is a picture of some cool stamps

+

+

Thank you for reading my nice article.

+ + diff --git a/demo/dst/articles/another-interesting-article/assets/japanese-train.webp b/demo/dst/articles/another-interesting-article/assets/japanese-train.webp new file mode 100644 index 0000000..c4cab3e Binary files /dev/null and b/demo/dst/articles/another-interesting-article/assets/japanese-train.webp differ diff --git a/demo/dst/articles/another-interesting-article/index.html b/demo/dst/articles/another-interesting-article/index.html new file mode 100644 index 0000000..bc82292 --- /dev/null +++ b/demo/dst/articles/another-interesting-article/index.html @@ -0,0 +1,34 @@ + + + + + + + I love trains + + +
+ +
+  _____                           _      
+ | ____|_  ____ _ _ __ ___  _ __ | | ___ 
+ |  _| \ \/ / _` | '_ ` _ \| '_ \| |/ _ \
+ | |___ >  < (_| | | | | | | |_) | |  __/
+ |_____/_/\_\__,_|_| |_| |_| .__/|_|\___|
+                           |_|           
+                              example.org
+
+
+ +
+

I love trains

+

Aren’t Japanese trains great? I particularly like the boxy ones. Here is a picture of a train:

+

+

Thank you for looking at this train

+ + diff --git a/demo/dst/articles/article3.html b/demo/dst/articles/article3.html new file mode 100644 index 0000000..2b2c5f9 --- /dev/null +++ b/demo/dst/articles/article3.html @@ -0,0 +1,32 @@ + + + + + + + This is a third article! + + +
+ +
+  _____                           _      
+ | ____|_  ____ _ _ __ ___  _ __ | | ___ 
+ |  _| \ \/ / _` | '_ ` _ \| '_ \| |/ _ \
+ | |___ >  < (_| | | | | | | |_) | |  __/
+ |_____/_/\_\__,_|_| |_| |_| .__/|_|\___|
+                           |_|           
+                              example.org
+
+
+ +
+

Article 3

+

Wow another one

+ + diff --git a/demo/dst/favicon.png b/demo/dst/favicon.png new file mode 100644 index 0000000..4c22246 Binary files /dev/null and b/demo/dst/favicon.png differ diff --git a/demo/dst/index.html b/demo/dst/index.html new file mode 100644 index 0000000..bfc86b6 --- /dev/null +++ b/demo/dst/index.html @@ -0,0 +1,37 @@ + + + + + + + Example + + +
+ +
+  _____                           _      
+ | ____|_  ____ _ _ __ ___  _ __ | | ___ 
+ |  _| \ \/ / _` | '_ ` _ \| '_ \| |/ _ \
+ | |___ >  < (_| | | | | | | |_) | |  __/
+ |_____/_/\_\__,_|_| |_| |_| .__/|_|\___|
+                           |_|           
+                              example.org
+
+
+ +
+

Articles

+2024-10-04: This is a very interesting article about stamps
+2024-09-10: I love trains
+2023-10-08: This is a third article!
+

Lists

+2024-07-12: Board games
+2022-06-05: Movies
+ + diff --git a/demo/dst/lists/board-games.html b/demo/dst/lists/board-games.html new file mode 100644 index 0000000..b85ce6b --- /dev/null +++ b/demo/dst/lists/board-games.html @@ -0,0 +1,38 @@ + + + + + + + Board games + + +
+ +
+  _____                           _      
+ | ____|_  ____ _ _ __ ___  _ __ | | ___ 
+ |  _| \ \/ / _` | '_ ` _ \| '_ \| |/ _ \
+ | |___ >  < (_| | | | | | | |_) | |  __/
+ |_____/_/\_\__,_|_| |_| |_| .__/|_|\___|
+                           |_|           
+                              example.org
+
+
+ +
+

Board Games

+

Here are some board games I like:

+
    +
  1. Puerto Rico
  2. +
  3. Ascension: Chronicle of the Godslayer
  4. +
  5. Twilight Struggle
  6. +
+

Play them with me, thanks.

+ + diff --git a/demo/dst/lists/movies.html b/demo/dst/lists/movies.html new file mode 100644 index 0000000..496e0d1 --- /dev/null +++ b/demo/dst/lists/movies.html @@ -0,0 +1,38 @@ + + + + + + + Movies + + +
+ +
+  _____                           _      
+ | ____|_  ____ _ _ __ ___  _ __ | | ___ 
+ |  _| \ \/ / _` | '_ ` _ \| '_ \| |/ _ \
+ | |___ >  < (_| | | | | | | |_) | |  __/
+ |_____/_/\_\__,_|_| |_| |_| .__/|_|\___|
+                           |_|           
+                              example.org
+
+
+ +
+

A List of Movies

+

Here are my favorite movies

+
    +
  1. Primer
  2. +
  3. The Lighthouse
  4. +
  5. Tetsuo: The Iron Man
  6. +
+

I hope you enjoyed this insightful article.

+ + diff --git a/demo/dst/rss.xml b/demo/dst/rss.xml new file mode 100644 index 0000000..34d2e0a --- /dev/null +++ b/demo/dst/rss.xml @@ -0,0 +1,39 @@ + + + +Blog +https://example.org/ +Blog + + +This is a very interesting article about stamps +https://example.org/articles/an-interesting-article/ +https://example.org/articles/an-interesting-article/ +Fri, 04 Oct 2024 00:00:00 GMT + + +I love trains +https://example.org/articles/another-interesting-article/ +https://example.org/articles/another-interesting-article/ +Tue, 10 Sep 2024 00:00:00 GMT + + +Board games +https://example.org/lists/board-games.html +https://example.org/lists/board-games.html +Fri, 12 Jul 2024 00:00:00 GMT + + +This is a third article! +https://example.org/articles/article3.html +https://example.org/articles/article3.html +Sun, 08 Oct 2023 00:00:00 GMT + + +Movies +https://example.org/lists/movies.html +https://example.org/lists/movies.html +Sun, 05 Jun 2022 00:00:00 GMT + + + diff --git a/demo/dst/sitemap.xml b/demo/dst/sitemap.xml new file mode 100644 index 0000000..6d48f32 --- /dev/null +++ b/demo/dst/sitemap.xml @@ -0,0 +1,14 @@ + + +https://example.org/404.html2026-06-151.0 +https://example.org/about.html2026-06-151.0 +https://example.org/lists/movies.html2026-06-151.0 +https://example.org/lists/board-games.html2026-06-151.0 +https://example.org/articles/an-interesting-article/2026-06-151.0 +https://example.org/articles/article3.html2026-06-151.0 +https://example.org/articles/another-interesting-article/2026-06-151.0 + diff --git a/demo/dst/style.css b/demo/dst/style.css new file mode 100644 index 0000000..5080521 --- /dev/null +++ b/demo/dst/style.css @@ -0,0 +1,54 @@ +html { + font-size: 100%; + font-family:sans-serif; + /* font-family:sans-serif; */ + /* font:1.2em/1.62 sans-serif; */ +} + +body { + line-height: 1.6; + max-width:40em; + background-color: #ededed; + margin: auto; +} + +.container { + text-align: center; +} + +.container pre { + display: inline-block; + text-align: left; + line-height: 1.0; +} + +#header { + text-decoration: none; + color: inherit; + font-size:125%; +} + +#navigation { + font-family:monospace; + font-size:125%; +} + +h1 { font-size: 1.4rem; } +h2 { font-size: 1.2rem; } +h3 { font-size: 1.0rem;} + +a:link, a:visited { + color: #2626FF; +} + +a:hover, a:focus { + color: #4c4cFF; +} + +li + li { + margin-top:0.2em; +} + +ul img { + vertical-align:middle; +} -- cgit v1.2.3