diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-04-21 16:06:07 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-04-21 16:06:07 +0300 |
commit | 98d85738e0eb7f21669f78420d5e3a457117de66 (patch) | |
tree | b26b977766a2291cd87b16ba3ecf985beb915d26 | |
parent | 24639575c32e48a3db46e06be6a3a25cd80e8991 (diff) | |
download | eug-vs-xyz-98d85738e0eb7f21669f78420d5e3a457117de66.tar.gz |
feat: setup templates
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | templates/openring.html (renamed from templates/openring-template.html) | 0 | ||||
-rw-r--r-- | templates/page.html | 1 | ||||
-rw-r--r-- | templates/rss.xml | 5 | ||||
-rw-r--r-- | templates/rss_item.xml | 4 |
5 files changed, 12 insertions, 3 deletions
@@ -1,3 +1,2 @@ -*.html -*.xml -blog/preview.md +out +tmp diff --git a/templates/openring-template.html b/templates/openring.html index be91912..be91912 100644 --- a/templates/openring-template.html +++ b/templates/openring.html diff --git a/templates/page.html b/templates/page.html index 3600409..a839e46 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,6 +1,7 @@ <html> <head> <link rel="shortcut icon" type="image/jpg" href="/public/icon-64.png"/> + <link rel="stylesheet" href="/public/style.css" /> </head> <body> <header class="display: inline"> diff --git a/templates/rss.xml b/templates/rss.xml new file mode 100644 index 0000000..683bdb2 --- /dev/null +++ b/templates/rss.xml @@ -0,0 +1,5 @@ +<rss> + <channel> + </channel> +</rss> + diff --git a/templates/rss_item.xml b/templates/rss_item.xml new file mode 100644 index 0000000..a3987fd --- /dev/null +++ b/templates/rss_item.xml @@ -0,0 +1,4 @@ +<item> + <description><![CDATA[ + ]]></description> +</item> |