commit 966e97783940444fc84e202f1206286bd000abac
parent 2de348eb0dc9f5b343e8976b83aa4a0811982183
Author: Frederic Cambus <fred@statdns.com>
Date: Sun, 28 Feb 2016 17:58:49 +0100
Moving default theme to its own repository
Diffstat:
5 files changed, 0 insertions(+), 61 deletions(-)
diff --git a/templates/archives.mustache b/templates/archives.mustache
@@ -1,10 +0,0 @@
-{{> header}}
-<h1>{{page.title}}</h1>
-{{#site.posts}}
-<h3><a href="/{{url}}">{{title}}</a></h3>
-{{date}}
-{{#categoryDisplay}}
- · <a href="/categories/{{url}}">{{category}}</a>
-{{/categoryDisplay}}
-{{/site.posts}}
-{{> footer}}
diff --git a/templates/footer.mustache b/templates/footer.mustache
@@ -1,8 +0,0 @@
- <footer>
- <hr />
- Copyright (c) {{site.copyright}}-{{site.year}}, <a href="{{site.url}}">{{site.author}}</a>
- <div id="powered">Powered by <a href="">Motyl</a></div>
- </footer>
- </div>
-</body>
-</html>
diff --git a/templates/header.mustache b/templates/header.mustache
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <meta charset="utf-8">
- <title>{{page.title}} - {{site.name}}</title>
-
- <meta name="description" content="{{page.description}}" />
- <meta name="keywords" content="{{page.keywords}}" />
- <meta name="author" content="{{site.author}}" />
- <meta name="robots" content="index, follow, archive" />
-
- <link rel="canonical" href="{{{site.url}}}{{{page.url}}}" />
-
- <link rel="stylesheet" href="/styles/motyl.css" type="text/css" />
-
- <link href="atom.xml" type="application/atom+xml" rel="alternate" title="ATOM Feed" />
-</head>
-
-<body>
- <header>
- <h2><a href="/">{{site.author}}</a></h2>
- {{#site.pages}}
- <a href="{{{url}}}">{{{title}}}</a>
- {{/site.pages}}
- </header>
-
- <hr />
-
- <div id="container">
diff --git a/templates/page.mustache b/templates/page.mustache
@@ -1,4 +0,0 @@
-{{> header}}
-<h1>{{page.title}}</h1>
-{{{page.content}}}
-{{> footer}}
-\ No newline at end of file
diff --git a/templates/post.mustache b/templates/post.mustache
@@ -1,8 +0,0 @@
-{{> header}}
-<h1>{{page.title}}</h1>
-{{page.date}}
-{{#page.categoryDisplay}}
- · <a href="/categories/{{url}}">{{category}}</a>
-{{/page.categoryDisplay}}
-{{{page.content}}}
-{{> footer}}
-\ No newline at end of file