diff options
author | Wolfgang Müller | 2019-07-21 21:09:36 +0200 |
---|---|---|
committer | Wolfgang Müller | 2019-07-21 21:09:36 +0200 |
commit | 4fe23d93c4f39b08f5bc4320af37ba109e618295 (patch) | |
tree | 5fd739e5189f68bb6ea9f5edc60aa68325adfe44 /templates | |
download | site-4fe23d93c4f39b08f5bc4320af37ba109e618295.tar.gz |
Initial import
Diffstat (limited to 'templates')
-rw-r--r-- | templates/index.xml | 19 | ||||
-rw-r--r-- | templates/post.xml | 15 |
2 files changed, 34 insertions, 0 deletions
diff --git a/templates/index.xml b/templates/index.xml new file mode 100644 index 0000000..afe96ec --- /dev/null +++ b/templates/index.xml @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> + <head> + <title>oriole.systems</title> + <link rel="stylesheet" href="style.css"/> + <link rel="alternate" href="atom.xml" type="application/atom+xml" title="oriole.systems atom feed"/> + <link rel="icon" href="logo.svg"/> + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1"/> + </head> + <body class="frontpage"> + <nav class="main" data-sblg-nav="true" data-sblg-navcontent="true"> + <a href="${sblg-base}.html"> + ${sblg-titletext} + </a> + </nav> + <footer></footer> + </body> +</html> diff --git a/templates/post.xml b/templates/post.xml new file mode 100644 index 0000000..617ce32 --- /dev/null +++ b/templates/post.xml @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> + <head> + <title>${sblg-titletext} · oriole.systems</title> + <link rel="stylesheet" href="../style.css"/> + <link rel="alternate" href="../atom.xml" type="application/atom+xml" title="oriole.systems atom feed"/> + <link rel="icon" href="../logo.svg"/> + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1"/> + </head> + <body class="post"> + <article data-sblg-article="true" data-sblg-permlink="false"></article> + </body> +</html> + |