Initial commit
This commit is contained in:
commit
bda33ef628
36 changed files with 4233 additions and 0 deletions
8
example/content/404.md
Normal file
8
example/content/404.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: Not Found
|
||||
layout: base
|
||||
---
|
||||
|
||||
# 404
|
||||
|
||||
Page not found. [Go home](/).
|
||||
9
example/content/about.md
Normal file
9
example/content/about.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
title: About
|
||||
description: About this example site.
|
||||
layout: base
|
||||
---
|
||||
|
||||
# About
|
||||
|
||||
This page shows a simple content page.
|
||||
13
example/content/index.md
Normal file
13
example/content/index.md
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title: Home
|
||||
description: Example home page.
|
||||
layout: base
|
||||
---
|
||||
|
||||
# Example Site
|
||||
|
||||
This is a small demo site for ypsilanti.
|
||||
|
||||
## Posts
|
||||
|
||||
- [First Post](/posts/first-post/)
|
||||
21
example/content/posts/first-post.md
Normal file
21
example/content/posts/first-post.md
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
title: First Post
|
||||
date: 2026-01-01
|
||||
description: A demo post with tags and markdown features.
|
||||
layout: post
|
||||
tags: demo, linux
|
||||
categories: technology
|
||||
---
|
||||
|
||||
This is a dated post. It appears in the generated post index, feed, tags, and categories.
|
||||
|
||||
## Markdown Features
|
||||
|
||||
| feature | status |
|
||||
| - | - |
|
||||
| tables | yes |
|
||||
| footnotes | yes |
|
||||
|
||||
Here is a footnote.[^1]
|
||||
|
||||
[^1]: This is a footnote.
|
||||
Loading…
Add table
Add a link
Reference in a new issue