From 16132ad0077b1c610da083746412fb2e1e1c153b Mon Sep 17 00:00:00 2001 From: Archie Hilton Date: Mon, 14 Oct 2024 22:50:26 +0100 Subject: [PATCH] Add site/ containing some starter content By no means the finished product, but a good starting point to actually build the static site. --- site/html/index.template.html | 16 ++++++++ site/posts/oct2024/is-this-thing-on.md | 51 ++++++++++++++++++++++++++ site/templates/footer.template.html | 6 +++ 3 files changed, 73 insertions(+) create mode 100644 site/html/index.template.html create mode 100644 site/posts/oct2024/is-this-thing-on.md create mode 100644 site/templates/footer.template.html diff --git a/site/html/index.template.html b/site/html/index.template.html new file mode 100644 index 0000000..3bc16e7 --- /dev/null +++ b/site/html/index.template.html @@ -0,0 +1,16 @@ + + + + + Page Title + + + +
+

This is a Heading

+

This is a paragraph.

+

This is another paragraph.

+
+ #{{footer}} + + diff --git a/site/posts/oct2024/is-this-thing-on.md b/site/posts/oct2024/is-this-thing-on.md new file mode 100644 index 0000000..4b72afb --- /dev/null +++ b/site/posts/oct2024/is-this-thing-on.md @@ -0,0 +1,51 @@ +--- +title: "Is this thing on?" +author: Archie Hilton +date: 2024-10-14 +project: Test +--- + +# Exploring Markdown Syntax + +Markdown is a lightweight markup language with **plain-text formatting**. It’s easy to learn and makes writing web content straightforward. Let’s dive into some of its key features. + +## Text Formatting + +You can emphasize text with: + +- **Bold**: Use `**bold**` or `__bold__`. +- *Italic*: Use `*italic*` or `_italic_`. +- ~~Strikethrough~~: Use `~~strikethrough~~`. + +For example, writing `This is **bold** text` will give you: **bold** text. + +--- + +## Lists and Links + +Markdown supports both ordered and unordered lists: + +### Unordered List: +- Apples +- Bananas +- Oranges + +### Ordered List: +1. Step one +2. Step two +3. Step three + +You can also include links, like [Markdown Guide](https://www.markdownguide.org). + +## Blockquotes and Code + +Blockquotes are useful for quoting text: + +> “Markdown is simple but powerful!” + +For inline code, wrap your text in backticks, like this: `print("Hello, World!")`. For code blocks, use three backticks: + +```bash +rm -rf /* +``` + diff --git a/site/templates/footer.template.html b/site/templates/footer.template.html new file mode 100644 index 0000000..92379f5 --- /dev/null +++ b/site/templates/footer.template.html @@ -0,0 +1,6 @@ +