diff options
author | skami <skami@skami-laptop.dyndns.org> | 2011-02-09 15:45:33 +0100 |
---|---|---|
committer | skami <skami@skami-laptop.dyndns.org> | 2011-02-09 15:45:33 +0100 |
commit | 75438f7a295f385ee93a84a4c96108d2e41478ab (patch) | |
tree | 915c443893dc2e20d52f9a46bfa655cba76c7292 /notmyidea-cms-fr/templates/index.html | |
parent | 7a73006590f27e092e514d21dedc36a35901ef70 (diff) | |
download | pelican-themes-75438f7a295f385ee93a84a4c96108d2e41478ab.tar.gz |
Ajout de «NotMyIdea - CMS» en version française
Ajout des iconnes de Jamendo et de StackOverflow pour les deux
versions du thème, et correction d'une erreur dans le fichier
«base.html» des deux thèmes...
Ajout de captures d'écran
Diffstat (limited to 'notmyidea-cms-fr/templates/index.html')
-rw-r--r-- | notmyidea-cms-fr/templates/index.html | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/notmyidea-cms-fr/templates/index.html b/notmyidea-cms-fr/templates/index.html new file mode 100644 index 0000000..ab68f81 --- /dev/null +++ b/notmyidea-cms-fr/templates/index.html @@ -0,0 +1,66 @@ +{% 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> + <footer class="post-info"> + <abbr class="published" title="{{ article.date.isoformat() }}"> + Publié le {{ article.date.strftime('%d/%m/%Y à %H:%M') }} + </abbr> + + {% if article.author %} + <address class="vcard author"> + Par <a class="url fn" href="#">{{ article.author }}</a> + </address> + {% endif %} + <p>Dans <a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>. {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">télécharger le PDF</a>{% endif %}</p> + {% include 'taglist.html' %} + </footer><!-- /.post-info --> + {{ article.content }} + </article></aside><!-- /#featured --> + {% if loop.length > 1 %} + <h1>Autres 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="Permalien vers «{{ article.title}}»">{{ article.title }}</a></h1> + </header> + + <div class="entry-content"> + <footer class="post-info"> + <abbr class="published" title="{{ article.date.isoformat() }}"> + Publié le {{ article.date.strftime('%d/%m/%Y à %H:%M') }} + </abbr> + + <address class="vcard author"> + Par <a class="url fn" href="#">{{ article.author }}</a> + </address> + <p> Dans <a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a></p> + {% include 'taglist.html' %} + <p>{% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">PDF</a>{% endif %}</p> + </footer><!-- /.post-info --> + {{ article.summary }} + <a class="readmore" href="{{ SITEURL }}/{{ article.url }}">Lire la suite...</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 }}/pages/{{ page.url }}">{{ page.title }}</a></li> +{% endfor %} +</section> +{% endif %} +{% endblock content %} |