mirror of
https://git.sr.ht/~adnano/kiln
synced 2024-11-08 14:19:20 +01:00
Add example site
This commit is contained in:
parent
afacbfafa1
commit
491b4637c1
3
example/.gitignore
vendored
Normal file
3
example/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
/dst
|
||||
/html/*
|
||||
!/html/style.css
|
4
example/config.ini
Normal file
4
example/config.ini
Normal file
@ -0,0 +1,4 @@
|
||||
title=Example Site
|
||||
|
||||
[feeds]
|
||||
/blog/=Example Feed
|
15
example/html/style.css
Normal file
15
example/html/style.css
Normal file
@ -0,0 +1,15 @@
|
||||
body {
|
||||
font-family: sans-serif;
|
||||
padding: 2rem 1.25rem;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
p, h1, h2, h3, ul, pre {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
pre {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
}
|
3
example/src/about.gmi
Normal file
3
example/src/about.gmi
Normal file
@ -0,0 +1,3 @@
|
||||
# About this Site
|
||||
|
||||
This is an example site.
|
3
example/src/blog/2020-11-19-Hello-world.gmi
Normal file
3
example/src/blog/2020-11-19-Hello-world.gmi
Normal file
@ -0,0 +1,3 @@
|
||||
# Hello, world!
|
||||
|
||||
This is an example blog post.
|
21
example/src/blog/2020-11-20-Example-post.gmi
Normal file
21
example/src/blog/2020-11-20-Example-post.gmi
Normal file
@ -0,0 +1,21 @@
|
||||
# Example Post
|
||||
|
||||
This is an example blog post.
|
||||
|
||||
This is a paragraph. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
||||
|
||||
# Heading 1
|
||||
## Heading 2
|
||||
### Heading 3
|
||||
|
||||
=> gemini://gemini.circumlunar.space This is a link
|
||||
|
||||
```Some alt text
|
||||
Some preformatted text
|
||||
```
|
||||
|
||||
* A list item
|
||||
* Another list item
|
||||
* Yet another list item
|
||||
|
||||
> This is a quote. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
5
example/src/blog/index.gmi
Normal file
5
example/src/blog/index.gmi
Normal file
@ -0,0 +1,5 @@
|
||||
# Example Blog
|
||||
|
||||
Welcome to my example blog!
|
||||
|
||||
=> feed/ Feed
|
3
example/src/index.gmi
Normal file
3
example/src/index.gmi
Normal file
@ -0,0 +1,3 @@
|
||||
# Example Site
|
||||
|
||||
Welcome to my example site!
|
3
example/src/page.gmi
Normal file
3
example/src/page.gmi
Normal file
@ -0,0 +1,3 @@
|
||||
# Example Page
|
||||
|
||||
This is an example page.
|
7
example/templates/feed.gmi
Normal file
7
example/templates/feed.gmi
Normal file
@ -0,0 +1,7 @@
|
||||
# {{ .Title }}
|
||||
|
||||
Feed for {{ .Path }} on {{ site.Title }}.
|
||||
Last updated on {{ .Updated.Format "2006-01-02" }}.
|
||||
|
||||
{{ range .Entries }}=> {{ .Path }} {{ .Date.Format "2006-01-02" }} {{ .Title }}
|
||||
{{ end -}}
|
9
example/templates/index.gmi
Normal file
9
example/templates/index.gmi
Normal file
@ -0,0 +1,9 @@
|
||||
# {{ .Title }}
|
||||
|
||||
{{ if .Content }}{{ .Content }}{{ end }}
|
||||
## Pages
|
||||
{{ range .Pages }}=> {{ .Path }} {{ .Title }}
|
||||
{{ end }}
|
||||
## Directories
|
||||
{{ range .Dirs }}=> {{ .Path }} {{ .Title }}
|
||||
{{ end }}
|
6
example/templates/output.html
Normal file
6
example/templates/output.html
Normal file
@ -0,0 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<meta name="viewport" content="width=device-width, intial-scale=1">
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
<title>{{ .Title }}</title>
|
||||
|
||||
{{ .Content }}
|
4
example/templates/page.gmi
Normal file
4
example/templates/page.gmi
Normal file
@ -0,0 +1,4 @@
|
||||
# {{ .Title }}
|
||||
{{ if not .Date.IsZero }}Posted on {{ .Date.Format "2006-01-02" }} on {{ site.Title }}.{{ end }}
|
||||
|
||||
{{ .Content }}
|
Loading…
Reference in New Issue
Block a user