diff options
Diffstat (limited to 'mnmlist/templates')
-rw-r--r-- | mnmlist/templates/analytics.html | 11 | ||||
-rw-r--r-- | mnmlist/templates/archives.html | 13 | ||||
-rw-r--r-- | mnmlist/templates/article.html | 12 | ||||
-rw-r--r-- | mnmlist/templates/author.html | 2 | ||||
-rw-r--r-- | mnmlist/templates/authors.html | 0 | ||||
-rw-r--r-- | mnmlist/templates/base.html | 50 | ||||
-rw-r--r-- | mnmlist/templates/categories.html | 8 | ||||
-rw-r--r-- | mnmlist/templates/category.html | 2 | ||||
-rw-r--r-- | mnmlist/templates/comments.html | 1 | ||||
-rw-r--r-- | mnmlist/templates/disqus_script.html | 11 | ||||
-rw-r--r-- | mnmlist/templates/github.html | 9 | ||||
-rw-r--r-- | mnmlist/templates/index.html | 34 | ||||
-rw-r--r-- | mnmlist/templates/page.html | 11 | ||||
-rw-r--r-- | mnmlist/templates/pagination.html | 15 | ||||
-rw-r--r-- | mnmlist/templates/piwik.html | 16 | ||||
-rw-r--r-- | mnmlist/templates/tag.html | 2 | ||||
-rw-r--r-- | mnmlist/templates/taglist.html | 2 | ||||
-rw-r--r-- | mnmlist/templates/tags.html | 9 | ||||
-rw-r--r-- | mnmlist/templates/translations.html | 6 | ||||
-rw-r--r-- | mnmlist/templates/twitter.html | 3 |
20 files changed, 217 insertions, 0 deletions
diff --git a/mnmlist/templates/analytics.html b/mnmlist/templates/analytics.html new file mode 100644 index 0000000..ba174fc --- /dev/null +++ b/mnmlist/templates/analytics.html @@ -0,0 +1,11 @@ +{% if GOOGLE_ANALYTICS %} + <script type="text/javascript"> + var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); + document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); + </script> + <script type="text/javascript"> + try { + var pageTracker = _gat._getTracker("{{GOOGLE_ANALYTICS}}"); + pageTracker._trackPageview(); + } catch(err) {}</script> +{% endif %}
\ No newline at end of file diff --git a/mnmlist/templates/archives.html b/mnmlist/templates/archives.html new file mode 100644 index 0000000..5ba2c81 --- /dev/null +++ b/mnmlist/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/mnmlist/templates/article.html b/mnmlist/templates/article.html new file mode 100644 index 0000000..356900d --- /dev/null +++ b/mnmlist/templates/article.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} +{% block title %}{{ super() }} : {{ article.title }}{% endblock %} +{% block content %} +<header> + <h1><a href="{{ SITEURL }}" id="site-title">{{ SITENAME }} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> : + <a href="{{ SITEURL }}/{{ article.url }}" id="page-title">{{ article.title }}</a></h1> + {% if not HIDE_DATE %}<time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>{% endif %} +</header> +<article> + {{ article.content }} +</article> +{% endblock %} diff --git a/mnmlist/templates/author.html b/mnmlist/templates/author.html new file mode 100644 index 0000000..0b37290 --- /dev/null +++ b/mnmlist/templates/author.html @@ -0,0 +1,2 @@ +{% extends "index.html" %} +{% block title %}{{ SITENAME }} - {{ author }}{% endblock %} diff --git a/mnmlist/templates/authors.html b/mnmlist/templates/authors.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/mnmlist/templates/authors.html diff --git a/mnmlist/templates/base.html b/mnmlist/templates/base.html new file mode 100644 index 0000000..ad7f23b --- /dev/null +++ b/mnmlist/templates/base.html @@ -0,0 +1,50 @@ +<!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> +{% include 'github.html' %} + {% block content %} + {% endblock %} + + <footer> + <nav> + <ul> + {% for page in PAGES %} + <li><a href="{{ SITEURL }}/pages/{{ page.url }}">{{ page.title }}</a>{% if not loop.last %} ::{% endif %}</li> + {% endfor %} + {% if categories|length > 1 %} + <li>:: <a href="{{ SITEURL }}/categories.html">Catégories</a></li> + {% endif %} + {% if tags|length > 1 %} + <li>:: <a href="{{ SITEURL }}/tags.html">Tags</a></li> + {% endif %} + </ul> + </nav> + <p id="theme-credit"><a href="http://mathieu.agopian.info/mnmlist/theme.html">Thème mnmlist</a></p> + </footer> + +{% include 'analytics.html' %} +{% include 'piwik.html' %} +{% include 'disqus_script.html' %} +</body> +</html> diff --git a/mnmlist/templates/categories.html b/mnmlist/templates/categories.html new file mode 100644 index 0000000..78362e4 --- /dev/null +++ b/mnmlist/templates/categories.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} +{% block content %} +<ul> +{% for category, articles in categories %} + <li><a href="{{ SITEURL }}/category/{{ category }}.html">{{ category }}</a></li> +{% endfor %} +</ul> +{% endblock %} diff --git a/mnmlist/templates/category.html b/mnmlist/templates/category.html new file mode 100644 index 0000000..56f8e93 --- /dev/null +++ b/mnmlist/templates/category.html @@ -0,0 +1,2 @@ +{% extends "index.html" %} +{% block title %}{{ SITENAME }} - {{ category }}{% endblock %} diff --git a/mnmlist/templates/comments.html b/mnmlist/templates/comments.html new file mode 100644 index 0000000..bb033c0 --- /dev/null +++ b/mnmlist/templates/comments.html @@ -0,0 +1 @@ +{% if DISQUS_SITENAME %}<p>There are <a href="{{ SITEURL }}/{{ article.url }}#disqus_thread">comments</a>.</p>{% endif %} diff --git a/mnmlist/templates/disqus_script.html b/mnmlist/templates/disqus_script.html new file mode 100644 index 0000000..c4f442c --- /dev/null +++ b/mnmlist/templates/disqus_script.html @@ -0,0 +1,11 @@ +{% if DISQUS_SITENAME %} +<script type="text/javascript"> + var disqus_shortname = '{{ DISQUS_SITENAME }}'; + (function () { + var s = document.createElement('script'); s.async = true; + s.type = 'text/javascript'; + s.src = 'http://' + disqus_shortname + '.disqus.com/count.js'; + (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s); + }()); +</script> +{% endif %} diff --git a/mnmlist/templates/github.html b/mnmlist/templates/github.html new file mode 100644 index 0000000..75592ac --- /dev/null +++ b/mnmlist/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/mnmlist/templates/index.html b/mnmlist/templates/index.html new file mode 100644 index 0000000..871360f --- /dev/null +++ b/mnmlist/templates/index.html @@ -0,0 +1,34 @@ +{% extends "base.html" %} +{% block content_title %}{% endblock %} +{% block content %} +{% if articles %} + {% for article in articles %} + + {# First item #} + {% if loop.first %} + <header> + <h1><a href="{{ SITEURL }}" id="site-title">{{ SITENAME }} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> : <a href="{{ SITEURL }}/{{ article.url }}" id="page-title">{{ article.title }}</a></h1> + {% if not HIDE_DATE %}<time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>{% endif %} + </header> + + <article> + {{ article.content }}{% include 'comments.html' %} + </article> + {% if loop.length > 1 %} + <section id="article-list"> + <h2>Tous les articles</h2> + <ol> + {% endif %} + {# other items #} + {% else %} + <li><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title}}">{{ article.title }}</a></li> + {% endif %} +{% endfor %} + {% if loop.length > 1 %} + </ol> + </section><!-- #article-list --> +{% endif %} +{% else %} + Pas d'articles pour le moment. +{% endif %} +{% endblock content %} diff --git a/mnmlist/templates/page.html b/mnmlist/templates/page.html new file mode 100644 index 0000000..0fad5fe --- /dev/null +++ b/mnmlist/templates/page.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} +{% block title %}{{ page.title }}{% endblock %} +{% block content %} +<header> + <h1><a href="{{ SITEURL }}" id="site-title">{{ SITENAME }} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> : + <a href="{{ SITEURL }}/{{ page.slug }}" id="page-title">{{ page.title }}</a></h1> +</header> +<article> + {{ page.content }} +</article> +{% endblock %} diff --git a/mnmlist/templates/pagination.html b/mnmlist/templates/pagination.html new file mode 100644 index 0000000..83c587a --- /dev/null +++ b/mnmlist/templates/pagination.html @@ -0,0 +1,15 @@ +{% if DEFAULT_PAGINATION %} +<p class="paginator"> + {% if articles_page.has_previous() %} + {% if articles_page.previous_page_number() == 1 %} + <a href="{{ SITEURL }}/{{ page_name }}.html">«</a> + {% else %} + <a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() }}.html">«</a> + {% endif %} + {% endif %} + Page {{ articles_page.number }} / {{ articles_paginator.num_pages }} + {% if articles_page.has_next() %} + <a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html">»</a> + {% endif %} +</p> +{% endif %} diff --git a/mnmlist/templates/piwik.html b/mnmlist/templates/piwik.html new file mode 100644 index 0000000..ff459af --- /dev/null +++ b/mnmlist/templates/piwik.html @@ -0,0 +1,16 @@ +{% if PIWIK_URL and PIWIK_SITE_ID %} + <script type="text/javascript"> + {% if PIWIK_SSL_URL %} + var pkBaseURL = (("https:" == document.location.protocol) ? "https://{{ PIWIK_SSL_URL }}/" : "http://{{ PIWIK_URL }}/"); + {% else %} + var pkBaseURL = (("https:" == document.location.protocol) ? "https://{{ PIWIK_URL }}/" : "http://{{ PIWIK_URL }}/"); + {% endif %} + document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E")); + </script><script type="text/javascript"> + try { + var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", {{ PIWIK_SITE_ID }}); + piwikTracker.trackPageView(); + piwikTracker.enableLinkTracking(); + } catch( err ) {} + </script><noscript><p><img src="http://{{ PIWIK_URL }}/piwik.php?idsite={{ PIWIK_SITE_ID }}" style="border:0" alt="" /></p></noscript> +{% endif %}
\ No newline at end of file diff --git a/mnmlist/templates/tag.html b/mnmlist/templates/tag.html new file mode 100644 index 0000000..68cdcba --- /dev/null +++ b/mnmlist/templates/tag.html @@ -0,0 +1,2 @@ +{% extends "index.html" %} +{% block title %}{{ SITENAME }} - {{ tag }}{% endblock %} diff --git a/mnmlist/templates/taglist.html b/mnmlist/templates/taglist.html new file mode 100644 index 0000000..0f4862d --- /dev/null +++ b/mnmlist/templates/taglist.html @@ -0,0 +1,2 @@ +{% if article.tags %}<p>tags: {% for tag in article.tags %}<a href="{{ SITEURL }}/tag/{{ tag }}.html">{{ tag }}</a>{% endfor %}</p>{% endif %} +{% if PDF_PROCESSOR %}<p><a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">get the pdf</a></p>{% endif %} diff --git a/mnmlist/templates/tags.html b/mnmlist/templates/tags.html new file mode 100644 index 0000000..5bee1e1 --- /dev/null +++ b/mnmlist/templates/tags.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} +{% block content %} +<ul> +{% for tag, articles in tags %} + <li><a href="{{ SITEURL }}/tag/{{ tag }}.html">{{ tag }}</a></li> +{% endfor %} +</ul> +{% endblock %} + diff --git a/mnmlist/templates/translations.html b/mnmlist/templates/translations.html new file mode 100644 index 0000000..0079883 --- /dev/null +++ b/mnmlist/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 %} diff --git a/mnmlist/templates/twitter.html b/mnmlist/templates/twitter.html new file mode 100644 index 0000000..c6b159f --- /dev/null +++ b/mnmlist/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 |