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/src/404.md | 3 ++ demo/src/_footer.html | 2 + demo/src/_header.html | 28 +++++++++++ demo/src/about.md | 3 ++ .../an-interesting-article/assets/stamps.webp | Bin 0 -> 46960 bytes demo/src/articles/an-interesting-article/index.md | 12 +++++ .../assets/japanese-train.webp | Bin 0 -> 128168 bytes .../articles/another-interesting-article/index.md | 12 +++++ demo/src/articles/article3.md | 8 +++ demo/src/favicon.png | Bin 0 -> 393 bytes demo/src/lists/board-games.md | 14 ++++++ demo/src/lists/movies.md | 13 +++++ demo/src/style.css | 54 +++++++++++++++++++++ 13 files changed, 149 insertions(+) create mode 100644 demo/src/404.md create mode 100644 demo/src/_footer.html create mode 100644 demo/src/_header.html create mode 100644 demo/src/about.md create mode 100644 demo/src/articles/an-interesting-article/assets/stamps.webp create mode 100644 demo/src/articles/an-interesting-article/index.md create mode 100644 demo/src/articles/another-interesting-article/assets/japanese-train.webp create mode 100644 demo/src/articles/another-interesting-article/index.md create mode 100644 demo/src/articles/article3.md create mode 100644 demo/src/favicon.png create mode 100644 demo/src/lists/board-games.md create mode 100644 demo/src/lists/movies.md create mode 100644 demo/src/style.css (limited to 'demo/src') diff --git a/demo/src/404.md b/demo/src/404.md new file mode 100644 index 0000000..a0aa728 --- /dev/null +++ b/demo/src/404.md @@ -0,0 +1,3 @@ +# 404 Not Found + +I couldn't find that page. diff --git a/demo/src/_footer.html b/demo/src/_footer.html new file mode 100644 index 0000000..308b1d0 --- /dev/null +++ b/demo/src/_footer.html @@ -0,0 +1,2 @@ + + diff --git a/demo/src/_header.html b/demo/src/_header.html new file mode 100644 index 0000000..ca28d40 --- /dev/null +++ b/demo/src/_header.html @@ -0,0 +1,28 @@ + + + + + + + Example + + +
+ +
+  _____                           _      
+ | ____|_  ____ _ _ __ ___  _ __ | | ___ 
+ |  _| \ \/ / _` | '_ ` _ \| '_ \| |/ _ \
+ | |___ >  < (_| | | | | | | |_) | |  __/
+ |_____/_/\_\__,_|_| |_| |_| .__/|_|\___|
+                           |_|           
+                              example.org
+
+
+ +
diff --git a/demo/src/about.md b/demo/src/about.md new file mode 100644 index 0000000..1b073d8 --- /dev/null +++ b/demo/src/about.md @@ -0,0 +1,3 @@ +# About + +Here is an about page for my website diff --git a/demo/src/articles/an-interesting-article/assets/stamps.webp b/demo/src/articles/an-interesting-article/assets/stamps.webp new file mode 100644 index 0000000..9785ce7 Binary files /dev/null and b/demo/src/articles/an-interesting-article/assets/stamps.webp differ diff --git a/demo/src/articles/an-interesting-article/index.md b/demo/src/articles/an-interesting-article/index.md new file mode 100644 index 0000000..779f4b6 --- /dev/null +++ b/demo/src/articles/an-interesting-article/index.md @@ -0,0 +1,12 @@ +--- +title: This is a very interesting article about stamps +date: 2024-10-04 +--- + +# This is a very interesting article about stamps + +Here is a picture of some cool stamps + +![](assets/stamps.webp) + +Thank you for reading my nice article. diff --git a/demo/src/articles/another-interesting-article/assets/japanese-train.webp b/demo/src/articles/another-interesting-article/assets/japanese-train.webp new file mode 100644 index 0000000..c4cab3e Binary files /dev/null and b/demo/src/articles/another-interesting-article/assets/japanese-train.webp differ diff --git a/demo/src/articles/another-interesting-article/index.md b/demo/src/articles/another-interesting-article/index.md new file mode 100644 index 0000000..4e5d9b7 --- /dev/null +++ b/demo/src/articles/another-interesting-article/index.md @@ -0,0 +1,12 @@ +--- +title: I love trains +date: 2024-09-10 +--- + +# I love trains + +Aren't Japanese trains great? I particularly like the boxy ones. Here is a picture of a train: + +![](assets/japanese-train.webp) + +Thank you for looking at this train diff --git a/demo/src/articles/article3.md b/demo/src/articles/article3.md new file mode 100644 index 0000000..c98ebba --- /dev/null +++ b/demo/src/articles/article3.md @@ -0,0 +1,8 @@ +--- +title: This is a third article! +date: 2023-10-08 +--- + +# Article 3 + +Wow another one diff --git a/demo/src/favicon.png b/demo/src/favicon.png new file mode 100644 index 0000000..4c22246 Binary files /dev/null and b/demo/src/favicon.png differ diff --git a/demo/src/lists/board-games.md b/demo/src/lists/board-games.md new file mode 100644 index 0000000..6a40080 --- /dev/null +++ b/demo/src/lists/board-games.md @@ -0,0 +1,14 @@ +--- +title: Board games +date: 2024-07-12 +--- + +# Board Games + +Here are some board games I like: + +1. Puerto Rico +2. Ascension: Chronicle of the Godslayer +3. Twilight Struggle + +Play them with me, thanks. diff --git a/demo/src/lists/movies.md b/demo/src/lists/movies.md new file mode 100644 index 0000000..92d82e6 --- /dev/null +++ b/demo/src/lists/movies.md @@ -0,0 +1,13 @@ +--- +title: Movies +date: 2022-06-05 +--- +# A List of Movies + +Here are my favorite movies + +1. Primer +2. The Lighthouse +3. Tetsuo: The Iron Man + +I hope you enjoyed this insightful article. diff --git a/demo/src/style.css b/demo/src/style.css new file mode 100644 index 0000000..5080521 --- /dev/null +++ b/demo/src/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