Add site/ containing some starter content
By no means the finished product, but a good starting point to actually build the static site.
This commit is contained in:
parent
1f901f9026
commit
16132ad007
|
@ -0,0 +1,16 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Page Title</title>
|
||||||
|
<link rel="stylesheet" href="">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="">
|
||||||
|
<h1>This is a Heading</h1>
|
||||||
|
<p>This is a paragraph.</p>
|
||||||
|
<p>This is another paragraph.</p>
|
||||||
|
</div>
|
||||||
|
#{{footer}}
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -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 /*
|
||||||
|
```
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
<footer>
|
||||||
|
<div>
|
||||||
|
<hr>
|
||||||
|
<p>Copyright (C) 2024 Archie Hilton. All rights reserved.</p>
|
||||||
|
</div>
|
||||||
|
</footer>
|
Loading…
Reference in New Issue