From 20b25b3bff8bd7e037465779558dad6693cccfea Mon Sep 17 00:00:00 2001 From: Zaine Arch Date: Wed, 6 Aug 2025 14:52:46 +0100 Subject: [PATCH] Auto-publish on Wed 6 Aug 14:52:46 BST 2025 --- output/about.html | 242 ++++++++++++++++++++++++++++++++++++++++++++++ output/index.html | 50 ++++++++-- output/style.css | 29 ++++++ 3 files changed, 314 insertions(+), 7 deletions(-) create mode 100644 output/about.html create mode 100644 output/style.css diff --git a/output/about.html b/output/about.html new file mode 100644 index 0000000..0929886 --- /dev/null +++ b/output/about.html @@ -0,0 +1,242 @@ + + + + + + + +About Me + + + + + +
+

About Me

+
+

Table of Contents

+ +
+
+

1. About Me 👋

+
+

+I'm building a personal site using Emacs, Org-mode, and Cloudflare Pages. +

+ +

+This page is linked from the homepage! +

+
+
+
+

2. Interests

+
+
    +
  • Linux
  • +
  • Open source
  • +
  • Org mode
  • +
  • Static sites
  • +
+
+
+
+

3. Back to Home

+
+
+
+

Created: 2025-08-06 Wed 14:52

+

Validate

+
+ + diff --git a/output/index.html b/output/index.html index d5f3444..cefb7a0 100644 --- a/output/index.html +++ b/output/index.html @@ -3,10 +3,10 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + - +Welcome to My Org Website - +
+

Welcome to My Org Website

-
-

1. Again changes

+
+

1. Hello from Org Mode 🌱

+
+

+This is a simple homepage built with Emacs Org-mode and published using org-publish. +

+ +

+Feel free to explore: +

+ + +
+
+
+

2. Blog Posts

+
+

+Here are some placeholder posts: +

+
    +
  1. Org Mode Official Site
  2. +
  3. Learn more about me
  4. +
+
+
+
+

3. Contact

+
+

+Feel free to reach out on GitHub: https://github.com/yourusername +

+
-

Created: 2025-08-06 Wed 14:45

+

Created: 2025-08-06 Wed 14:52

Validate

diff --git a/output/style.css b/output/style.css new file mode 100644 index 0000000..22cfd01 --- /dev/null +++ b/output/style.css @@ -0,0 +1,29 @@ +body { + font-family: sans-serif; + max-width: 700px; + margin: 2rem auto; + padding: 1rem; + line-height: 1.6; + background-color: #f9f9f9; + color: #333; +} + +h1, h2, h3 { + color: #004c99; +} + +a { + color: #0066cc; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +pre, code { + background: #eee; + padding: 0.2em 0.4em; + border-radius: 4px; + font-family: monospace; +}