diff options
author | davidovski <david@davidovski.xyz> | 2021-08-26 04:15:22 +0100 |
---|---|---|
committer | davidovski <david@sendula.com> | 2021-08-26 04:15:22 +0100 |
commit | 2e4002e5ad2f495088da627bd7ee8a216eb4e7b1 (patch) | |
tree | d5fb9fe514eb04277eeb25bc000c311fef156bc4 /templates |
initial commit
Diffstat (limited to 'templates')
-rw-r--r-- | templates/index.html | 46 | ||||
-rw-r--r-- | templates/item.xml | 6 | ||||
-rw-r--r-- | templates/page.html | 46 | ||||
-rw-r--r-- | templates/rss.xml | 10 | ||||
-rw-r--r-- | templates/summary.html | 4 |
5 files changed, 112 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..666cc01 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,46 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + + <link rel="stylesheet" href="/style.css"> + <title>davidovski.xyz</title> + </head> + <body> + <div class="main"> + <div class="header"> + <a href="https://davidovski.xyz/"<h1 class="title">davidovski.xyz</h1></a> + <hr> + <div class="links"> + <a href="https://github.com/davidovski">git</a> + | + <a href="https://osu.ppy.sh/users/11140827">osu</a> + | + <a href="https://myanimelist.net/animelist/davidovski">mal</a> + | + <a href="https://orangepeel.pw/">op</a> + || + <a style="color: var(--red);" href="https://davidovski.xyz/m">m</a> + | + <a style="color: var(--red);" href="https://davidovski.xyz/f">f</a> + | + <a style="color: var(--red);" href="https://davidovski.xyz/s">s</a> + || + <a style="color: var(--green)" href="http://chat.davidovski.xyz/">chat</a> + | + <a style="color: var(--green)" href="mailto:david@davidovski.xyz">mail</a> + | + <a style="color: var(--green)" href="/rss.xml">rss</a> + </div> + </div> + + <hr> + <p>welcome to my site</p> + <hr> + <div class="entries"> + %entries% + </div> + </div> + + </body> +</html> diff --git a/templates/item.xml b/templates/item.xml new file mode 100644 index 0000000..031cd35 --- /dev/null +++ b/templates/item.xml @@ -0,0 +1,6 @@ +<item> + <title>%name%</title> + <link>https://davidovski.xyz/%url%</link> + <pubDate>%date%</pubDate> + <description><![CDATA[%content%]]></description> +</item> diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..666cc01 --- /dev/null +++ b/templates/page.html @@ -0,0 +1,46 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + + <link rel="stylesheet" href="/style.css"> + <title>davidovski.xyz</title> + </head> + <body> + <div class="main"> + <div class="header"> + <a href="https://davidovski.xyz/"<h1 class="title">davidovski.xyz</h1></a> + <hr> + <div class="links"> + <a href="https://github.com/davidovski">git</a> + | + <a href="https://osu.ppy.sh/users/11140827">osu</a> + | + <a href="https://myanimelist.net/animelist/davidovski">mal</a> + | + <a href="https://orangepeel.pw/">op</a> + || + <a style="color: var(--red);" href="https://davidovski.xyz/m">m</a> + | + <a style="color: var(--red);" href="https://davidovski.xyz/f">f</a> + | + <a style="color: var(--red);" href="https://davidovski.xyz/s">s</a> + || + <a style="color: var(--green)" href="http://chat.davidovski.xyz/">chat</a> + | + <a style="color: var(--green)" href="mailto:david@davidovski.xyz">mail</a> + | + <a style="color: var(--green)" href="/rss.xml">rss</a> + </div> + </div> + + <hr> + <p>welcome to my site</p> + <hr> + <div class="entries"> + %entries% + </div> + </div> + + </body> +</html> diff --git a/templates/rss.xml b/templates/rss.xml new file mode 100644 index 0000000..58e206d --- /dev/null +++ b/templates/rss.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<rss version="2.0"> + +<channel> + <title>davidovski</title> + <link>https://davidovski.xyz</link> + <description>davidovski's site</description> + %items% +</channel> +</rss> diff --git a/templates/summary.html b/templates/summary.html new file mode 100644 index 0000000..9f226af --- /dev/null +++ b/templates/summary.html @@ -0,0 +1,4 @@ +<div class="entry"> + <div class="small">%date% <a href="%url%">🔗</a></div> + %content% +</div> |