aboutsummaryrefslogtreecommitdiffstats
path: root/sleepmap-theme/templates
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2015-01-26 20:06:20 +0100
committerDavid Runge <david.runge@frqrec.com>2015-01-26 20:06:20 +0100
commit8d144fb0274113b6fef6f94ad85091f4efbd0e31 (patch)
tree8243b6a087c61adbda0a9f40a805e4e4d08ca148 /sleepmap-theme/templates
downloadsleepmap-8d144fb0274113b6fef6f94ad85091f4efbd0e31.tar.gz
sleepmap-8d144fb0274113b6fef6f94ad85091f4efbd0e31.tar.bz2
sleepmap-8d144fb0274113b6fef6f94ad85091f4efbd0e31.tar.xz
sleepmap-8d144fb0274113b6fef6f94ad85091f4efbd0e31.zip
sleepmap-theme: Adding first clone (notmyidea-cms) with modifications
Diffstat (limited to 'sleepmap-theme/templates')
-rw-r--r--sleepmap-theme/templates/archives.html13
-rw-r--r--sleepmap-theme/templates/article.html30
-rw-r--r--sleepmap-theme/templates/article_infos.html14
-rw-r--r--sleepmap-theme/templates/author.html2
-rw-r--r--sleepmap-theme/templates/authors.html0
-rw-r--r--sleepmap-theme/templates/base.html90
-rw-r--r--sleepmap-theme/templates/categories.html8
-rw-r--r--sleepmap-theme/templates/category.html2
-rw-r--r--sleepmap-theme/templates/github.html9
-rw-r--r--sleepmap-theme/templates/index.html43
-rw-r--r--sleepmap-theme/templates/page.html10
-rw-r--r--sleepmap-theme/templates/tag.html2
-rw-r--r--sleepmap-theme/templates/taglist.html2
-rw-r--r--sleepmap-theme/templates/tags.html0
-rw-r--r--sleepmap-theme/templates/translations.html6
-rw-r--r--sleepmap-theme/templates/twitter.html3
16 files changed, 234 insertions, 0 deletions
diff --git a/sleepmap-theme/templates/archives.html b/sleepmap-theme/templates/archives.html
new file mode 100644
index 0000000..5ba2c81
--- /dev/null
+++ b/sleepmap-theme/templates/archives.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+{% block content %}
+<section id="content" class="body">
+<h1>Archives for {{ SITENAME }}</h1>
+
+<dl>
+{% for article in dates %}
+ <dt>{{ article.locale_date }}</dt>
+ <dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
+{% endfor %}
+</dl>
+</section>
+{% endblock %}
diff --git a/sleepmap-theme/templates/article.html b/sleepmap-theme/templates/article.html
new file mode 100644
index 0000000..1d869c0
--- /dev/null
+++ b/sleepmap-theme/templates/article.html
@@ -0,0 +1,30 @@
+{% extends "base.html" %}
+{% block title %}{{ article.title|striptags }}{% endblock %}
+{% block content %}
+<section id="content" class="body">
+<article>
+ <header> <h1 class="entry-title"><a href="{{ article.url }}"
+ rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title
+ }}</a></h1> {% include 'twitter.html' %} </header>
+ <div class="entry-content">
+ {% include 'article_infos.html' %}<!-- /.post-info -->
+ {{ article.content }}
+ </div><!-- /.entry-content -->
+ {% if DISQUS_SITENAME %}
+ <div class="comments">
+ <h2>Comments !</h2>
+ <div id="disqus_thread"></div>
+ <script type="text/javascript">
+ var disqus_identifier = "{{ article.url }}";
+ (function() {
+ var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
+ dsq.src = 'http://{{ DISQUS_SITENAME }}.disqus.com/embed.js';
+ (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
+ })();
+ </script>
+ </div>
+ {% endif %}
+
+</article>
+</section>
+{% endblock %}
diff --git a/sleepmap-theme/templates/article_infos.html b/sleepmap-theme/templates/article_infos.html
new file mode 100644
index 0000000..a1993a0
--- /dev/null
+++ b/sleepmap-theme/templates/article_infos.html
@@ -0,0 +1,14 @@
+<footer class="post-info">
+ <abbr class="published" title="{{ article.date.isoformat() }}">
+ {{ article.locale_date }}
+ </abbr>
+
+ {% if article.author %}
+ <address class="vcard author">
+ By <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
+ </address>
+ {% endif %}
+<p>In <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>. {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">get the pdf</a>{% endif %}</p>
+{% include 'taglist.html' %}
+{% include 'translations.html' %}
+</footer><!-- /.post-info -->
diff --git a/sleepmap-theme/templates/author.html b/sleepmap-theme/templates/author.html
new file mode 100644
index 0000000..0b37290
--- /dev/null
+++ b/sleepmap-theme/templates/author.html
@@ -0,0 +1,2 @@
+{% extends "index.html" %}
+{% block title %}{{ SITENAME }} - {{ author }}{% endblock %}
diff --git a/sleepmap-theme/templates/authors.html b/sleepmap-theme/templates/authors.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/sleepmap-theme/templates/authors.html
diff --git a/sleepmap-theme/templates/base.html b/sleepmap-theme/templates/base.html
new file mode 100644
index 0000000..64b1748
--- /dev/null
+++ b/sleepmap-theme/templates/base.html
@@ -0,0 +1,90 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <title>{% block title %}{{ SITENAME }}{%endblock%}</title>
+ <meta charset="utf-8" />
+ <link rel="stylesheet" href="{{ SITEURL }}/theme/css/{{ CSS_FILE }}" type="text/css" />
+ <link href="{{ SITEURL }}/{{ FEED }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} ATOM Feed" />
+ {% if FEED_RSS %}
+ <link href="{{ SITEURL }}/{{ FEED_RSS }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} RSS Feed" />
+ {% endif %}
+
+
+ <!--[if IE]>
+ <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
+
+ <!--[if lte IE 7]>
+ <link rel="stylesheet" type="text/css" media="all" href="{{ SITEURL }}/css/ie.css"/>
+ <script src="{{ SITEURL }}/js/IE8.js" type="text/javascript"></script><![endif]-->
+
+ <!--[if lt IE 7]>
+ <link rel="stylesheet" type="text/css" media="all" href="{{ SITEURL }}/css/ie6.css"/><![endif]-->
+
+</head>
+
+<body id="index" class="home">
+{% include 'github.html' %}
+ <header id="banner" class="body">
+ <h1><a href="{{ SITEURL }}/index.html">{{ SITENAME }} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a></h1>
+ <nav><ul>
+ {% for title, link in MENUITEMS %}
+ <li><a href="{{ link }}">{{ title }}</a></li>
+ {% endfor %}
+ {% if DISPLAY_PAGES_ON_MENU != False %}
+ {% for p in PAGES %}
+ <li {% if p == page %}class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li>
+ {% endfor %}
+ {% endif %}
+ <li><a href="{{ SITEURL }}/{{ ARCHIVES_URL }}">Archives</a></li>
+ {#{% for cat, null in categories %}
+ <li {% if cat == category %}class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
+ {% endfor %}#}
+ </ul></nav>
+ </header><!-- /#banner -->
+
+ {% block content %}
+ {% endblock %}
+
+ <aside id="sidebar">
+ <div class="widget">
+ <h2>Categories</h2>
+ <ul>
+ {% for cat, null in categories %}
+ <li {% if cat == category %}class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
+ {% endfor %}
+ </ul>
+ </div>
+ {% if LINKS %}
+ <div class="widget blogroll">
+ <h2>Links</h2>
+ <ul>
+ {% for name, link in LINKS %}
+ <li><a href="{{ link }}">{{ name }}</a></li>
+ {% endfor %}
+ </ul>
+ </div><!-- /.blogroll -->
+ {% endif %}
+ {% if SOCIAL %}
+ <div class="widget social">
+ <h2>Social</h2>
+ <ul>
+ <li><a href="{{ SITEURL }}/{{ FEED_ALL_ATOM }}" rel="alternate">atom feed</a></li>
+ {% if FEED_RSS %}
+ <li><a href="{{ SITEURL }}/{{ FEED_RSS }}" rel="alternate">rss feed</a></li>
+ {% endif %}
+
+ {% for name, link in SOCIAL %}
+ <li><a href="{{ link }}">{{ name }}</a></li>
+ {% endfor %}
+ </ul>
+ </div><!-- /.social -->
+ {% endif %}
+ </aside><!-- /#sidebar -->
+
+ <footer id="footer" class="body">
+ <address id="about" class="vcard body">
+ <p> © Sleep Map 2015 </p>
+ </address><!-- /#about -->
+ </footer><!-- /#footer -->
+</body>
+</html>
diff --git a/sleepmap-theme/templates/categories.html b/sleepmap-theme/templates/categories.html
new file mode 100644
index 0000000..7e4bd2c
--- /dev/null
+++ b/sleepmap-theme/templates/categories.html
@@ -0,0 +1,8 @@
+{% extends "base.html" %}
+{% block content %}
+<ul>
+{% for category, articles in categories %}
+ <li>{{ category }}</li>
+{% endfor %}
+</ul>
+{% endblock %}
diff --git a/sleepmap-theme/templates/category.html b/sleepmap-theme/templates/category.html
new file mode 100644
index 0000000..56f8e93
--- /dev/null
+++ b/sleepmap-theme/templates/category.html
@@ -0,0 +1,2 @@
+{% extends "index.html" %}
+{% block title %}{{ SITENAME }} - {{ category }}{% endblock %}
diff --git a/sleepmap-theme/templates/github.html b/sleepmap-theme/templates/github.html
new file mode 100644
index 0000000..75592ac
--- /dev/null
+++ b/sleepmap-theme/templates/github.html
@@ -0,0 +1,9 @@
+{% if GITHUB_URL %}
+<a href="{{ GITHUB_URL }}">
+{% if GITHUB_POSITION != "left" %}
+<img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" />
+{% else %}
+<img style="position: absolute; top: 0; left: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_left_white_ffffff.png" alt="Fork me on GitHub" />
+{% endif %}
+</a>
+{% endif %}
diff --git a/sleepmap-theme/templates/index.html b/sleepmap-theme/templates/index.html
new file mode 100644
index 0000000..5e1e676
--- /dev/null
+++ b/sleepmap-theme/templates/index.html
@@ -0,0 +1,43 @@
+{% extends "base.html" %}
+{% block content_title %}{% endblock %}
+{% block content %}
+{% if articles %}
+{% for article in articles %}
+ {% if loop.index == 1 %}
+ <section id="content" class="body">
+ <aside id="featured"><article>
+ <h1 class="entry-title"><a href="{{ SITEURL }}/{{ article.url
+ }}">{{ article.title }}</a></h1>
+ {% include 'article_infos.html' %}<!-- /.post-info -->
+ {{ article.content }}
+ </article></aside><!-- /#featured -->
+ {% if loop.length > 1 %}
+ <h1>Other articles</h1>
+ <hr />
+ <ol id="posts-list" class="hfeed">
+ {% endif %}
+ {% else %}
+ <li><article class="hentry">
+ <header>
+ <h1><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h1>
+ </header>
+
+ <div class="entry-content">
+ {% include 'article_infos.html' %}<!-- /.post-info -->
+ {{ article.summary }}
+ <a class="readmore" href="{{ SITEURL }}/{{ article.url }}">read more</a>
+ </div><!-- /.entry-content -->
+ </article></li>
+ {% endif %}
+{% endfor %}
+</ol><!-- /#posts-list -->
+</section><!-- /#content -->
+{% else %}
+<section id="content" class="body">
+<h2>Pages</h2>
+{% for page in PAGES %}
+ <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
+{% endfor %}
+</section>
+{% endif %}
+{% endblock content %}
diff --git a/sleepmap-theme/templates/page.html b/sleepmap-theme/templates/page.html
new file mode 100644
index 0000000..9635fb8
--- /dev/null
+++ b/sleepmap-theme/templates/page.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+{% block title %}{{ page.title }}{% endblock %}
+{% block content %}
+<section id="content" class="body">
+ <h1 class="entry-title">{{ page.title }}</h1>
+ {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
+ the pdf</a>{% endif %}
+ {{ page.content }}
+</section>
+{% endblock %}
diff --git a/sleepmap-theme/templates/tag.html b/sleepmap-theme/templates/tag.html
new file mode 100644
index 0000000..68cdcba
--- /dev/null
+++ b/sleepmap-theme/templates/tag.html
@@ -0,0 +1,2 @@
+{% extends "index.html" %}
+{% block title %}{{ SITENAME }} - {{ tag }}{% endblock %}
diff --git a/sleepmap-theme/templates/taglist.html b/sleepmap-theme/templates/taglist.html
new file mode 100644
index 0000000..7ed6bf1
--- /dev/null
+++ b/sleepmap-theme/templates/taglist.html
@@ -0,0 +1,2 @@
+{% if article.tags %}<p>tags: {% for tag in article.tags %}<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>{% endfor %}</p>{% endif %}
+{% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">get the pdf</a>{% endif %}</p>
diff --git a/sleepmap-theme/templates/tags.html b/sleepmap-theme/templates/tags.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/sleepmap-theme/templates/tags.html
diff --git a/sleepmap-theme/templates/translations.html b/sleepmap-theme/templates/translations.html
new file mode 100644
index 0000000..f0a0fa2
--- /dev/null
+++ b/sleepmap-theme/templates/translations.html
@@ -0,0 +1,6 @@
+{% if article.translations %}
+Translations:
+ {% for translation in article.translations %}
+ <a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
+ {% endfor %}
+{% endif %} \ No newline at end of file
diff --git a/sleepmap-theme/templates/twitter.html b/sleepmap-theme/templates/twitter.html
new file mode 100644
index 0000000..c6b159f
--- /dev/null
+++ b/sleepmap-theme/templates/twitter.html
@@ -0,0 +1,3 @@
+{% if TWITTER_USERNAME %}
+<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="{{TWITTER_USERNAME}}">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
+{% endif %} \ No newline at end of file