mirror of
https://github.com/zyllian/webdog.git
synced 2025-05-09 18:16:40 -07:00
Initial commit
This commit is contained in:
commit
1c706726c1
14 changed files with 1202 additions and 0 deletions
15
site/build/index.html
Normal file
15
site/build/index.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head><meta charset="utf-8">
|
||||
|
||||
<link rel="stylesheet" href="/static/site.css">
|
||||
<title>zoey.dev</title><base href="https://zoey.dev"></head>
|
||||
|
||||
<body>
|
||||
<h1>Welcome</h1>
|
||||
<p>Welcome to the site!</p>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
4
site/build/static/site.css
Normal file
4
site/build/static/site.css
Normal file
|
@ -0,0 +1,4 @@
|
|||
body {
|
||||
font-family: sans-serif;
|
||||
margin: 0;
|
||||
}
|
3
site/config.yaml
Normal file
3
site/config.yaml
Normal file
|
@ -0,0 +1,3 @@
|
|||
base_url: "https://zoey.dev"
|
||||
title: zoey.dev
|
||||
description: "Zoey's site."
|
3
site/pages/index.md
Normal file
3
site/pages/index.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Welcome
|
||||
|
||||
Welcome to the site!
|
4
site/static/site.css
Normal file
4
site/static/site.css
Normal file
|
@ -0,0 +1,4 @@
|
|||
body {
|
||||
font-family: sans-serif;
|
||||
margin: 0;
|
||||
}
|
13
site/templates/base.hbs
Normal file
13
site/templates/base.hbs
Normal file
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
{{{head}}}
|
||||
<link rel="stylesheet" href="/static/site.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{{{page}}}
|
||||
</body>
|
||||
|
||||
</html>
|
7
site/test.md
Normal file
7
site/test.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: Test Page
|
||||
---
|
||||
|
||||
# Heading
|
||||
|
||||
_Hi_ there.
|
Loading…
Add table
Add a link
Reference in a new issue