diff options
| author | historia <[not public]> | 2026-06-15 18:17:10 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-15 18:17:10 -0400 |
| commit | fec892047e4c0b810981fa8f20223e0b1c4f72b4 (patch) | |
| tree | a6fdc109a3a32ae383a88d01ba44322be4b8bcc3 /demo/dst/lists | |
| parent | 193666c2bba01bb9bc1a21ac270c0affe15ea757 (diff) | |
| download | ssg-blog-fec892047e4c0b810981fa8f20223e0b1c4f72b4.tar.gz | |
refactor. added rss feed.
Diffstat (limited to 'demo/dst/lists')
| -rw-r--r-- | demo/dst/lists/board-games.html | 38 | ||||
| -rw-r--r-- | demo/dst/lists/movies.html | 38 |
2 files changed, 76 insertions, 0 deletions
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 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <link rel="icon" type="image/png" href="https://example.org/favicon.png"> + <link rel="stylesheet" href="style.css"> + <title>Board games</title> +</head> +<body> +<div class="container"> +<a id="header" href="https://example.org"> +<pre> + _____ _ + | ____|_ ____ _ _ __ ___ _ __ | | ___ + | _| \ \/ / _` | '_ ` _ \| '_ \| |/ _ \ + | |___ > < (_| | | | | | | |_) | | __/ + |_____/_/\_\__,_|_| |_| |_| .__/|_|\___| + |_| + example.org +</pre> +</a> +<div id="navigation"> +<a href="https://example.org/">Home</a> - +<a href="https://codeberg.org/">Repos</a> - +<a href="https://example.org/rss.xml">RSS</a> - +<a href="https://example.org/about.html">About</a> +</div> +</div> +<h1 id="board-games">Board Games</h1> +<p>Here are some board games I like:</p> +<ol> +<li>Puerto Rico</li> +<li>Ascension: Chronicle of the Godslayer</li> +<li>Twilight Struggle</li> +</ol> +<p>Play them with me, thanks.</p> +</body> +</html> 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 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <link rel="icon" type="image/png" href="https://example.org/favicon.png"> + <link rel="stylesheet" href="style.css"> + <title>Movies</title> +</head> +<body> +<div class="container"> +<a id="header" href="https://example.org"> +<pre> + _____ _ + | ____|_ ____ _ _ __ ___ _ __ | | ___ + | _| \ \/ / _` | '_ ` _ \| '_ \| |/ _ \ + | |___ > < (_| | | | | | | |_) | | __/ + |_____/_/\_\__,_|_| |_| |_| .__/|_|\___| + |_| + example.org +</pre> +</a> +<div id="navigation"> +<a href="https://example.org/">Home</a> - +<a href="https://codeberg.org/">Repos</a> - +<a href="https://example.org/rss.xml">RSS</a> - +<a href="https://example.org/about.html">About</a> +</div> +</div> +<h1 id="a-list-of-movies">A List of Movies</h1> +<p>Here are my favorite movies</p> +<ol> +<li>Primer</li> +<li>The Lighthouse</li> +<li>Tetsuo: The Iron Man</li> +</ol> +<p>I hope you enjoyed this insightful article.</p> +</body> +</html> |
