summaryrefslogtreecommitdiff
path: root/theme/templates/authors.html
blob: e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 (plain)

.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 }} - Accueil{% endblock %}

{% block content %}

 {% if articles %}
    {% import 'abstract.html' as abstract with context %}
    {{ abstract.abstract("h1") }}
 {% endif %}

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

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

{% endblock %}