aboutsummaryrefslogtreecommitdiff
path: root/content/Perso
ModeNameSize
-rwxr-xr-x2011-08-29-infrarouge.rst672logplain
-rw-r--r--2013-05-18-traitment.rst5598logplain
-rw-r--r--2013-05-25-city.rst2608logplain
-rw-r--r--2013-06-01-marelle.rst3672logplain
-rw-r--r--2013-06-22-platine.rst7598logplain
-rw-r--r--2014-05-12-hacking.rst5069logplain
-rwxr-xr-x2015-03-17-terry.rst1873logplain
-rwxr-xr-x2015-03-19-dynamisme.rst4806logplain
-rwxr-xr-x2015-07-02-epub2pdf.rst2955logplain
-rw-r--r--2017-01-29-jouet.rst2801logplain
und-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - «{{ tag }}»{% endblock %}

{% block content %}
 <h1 class="page_title">Articles avec le mot-clef «&thinsp;{{ tag }}&thinsp;»</h1>
 {% if articles %}
  {% for article in (articles_page.object_list if articles_page else articles) %}  
    <article class="post">
      <h2 class="title"><a href="{{ SITEURL }}/{{ article.url}}">{{ article.title }}</a></h2>
<time class="meta" datetime="{{ article.date.isoformat() }}" pubdate="pubdate">{{ article.locale_date }}</time>

      <section class="post_content">
        {{ article.summary }}
        <div class="clear" />
        {% if not loop.last %}
        <hr>
        {% endif %}
      </section>
    </article>
  {% endfor %}
 {% endif %}
 {% include 'navigator.html' %}

 {% if TAG_FEED_RSS %}
    <a href="{{ FEED_DOMAIN }}/{{ TAG_FEED_RSS % tag|e}}" ><img src="../theme/images/rss.png" /></a>
 {% endif %}

 {% if TAG_FEED_ATOM %}
    <a href="{{ FEED_DOMAIN }}/{{ TAG_FEED_ATOM % tag|e}}" ><img src="../theme/images/atom.png" /></a>
 {% endif %}

 {% endblock %}