mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 19:42:37 +02:00
tweaks + add translation stuff in the theme
This commit is contained in:
parent
c1f39570ab
commit
5193ba28a3
4 changed files with 17 additions and 7 deletions
|
@ -6,7 +6,6 @@ Carto-forms
|
||||||
:author: Alexis Métaireau, Mathieu Leplatre
|
:author: Alexis Métaireau, Mathieu Leplatre
|
||||||
:tags: GIS, forms
|
:tags: GIS, forms
|
||||||
:lang: fr
|
:lang: fr
|
||||||
:status: draft
|
|
||||||
|
|
||||||
On a un plan. Un "truc de ouf".
|
On a un plan. Un "truc de ouf".
|
||||||
|
|
||||||
|
|
|
@ -6,9 +6,8 @@ Carto-forms
|
||||||
:author: Alexis Métaireau, Mathieu Leplatre
|
:author: Alexis Métaireau, Mathieu Leplatre
|
||||||
:tags: GIS, forms
|
:tags: GIS, forms
|
||||||
:lang: en
|
:lang: en
|
||||||
:status: draft
|
|
||||||
|
|
||||||
We have a plan.
|
We have a plan. A "fucking good" one.
|
||||||
|
|
||||||
A bunch of friends asked me twice for quite the same thing: a webpage with a
|
A bunch of friends asked me twice for quite the same thing: a webpage with a
|
||||||
form, tied to a map generation with some information filtering. They didn't
|
form, tied to a map generation with some information filtering. They didn't
|
||||||
|
|
|
@ -1,7 +1,15 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>{{ article.title }}</h1>
|
<h1>{{ article.title }}</h1>
|
||||||
<p class="date">Published on {{ article.locale_date }}</p>
|
<p class="date">{% if article.lang == "fr" %}Publié le{% else %}Published
|
||||||
|
on{% endif%} {{ article.locale_date }}.
|
||||||
|
{% if article.translations %}
|
||||||
|
{% if article.lang == "fr" %}Vous pouvez aussi lire cet article en {% else %}You can also read this article in {% endif %}
|
||||||
|
{% for tr in article.translations %}
|
||||||
|
<a href="{{ SITEURL }}/{{ tr.url}}">{{ tr.lang }}</a>
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
</p>
|
||||||
{{ article.content }}
|
{{ article.content }}
|
||||||
|
|
||||||
{% if DISQUS_SITENAME %}
|
{% if DISQUS_SITENAME %}
|
||||||
|
|
|
@ -2,11 +2,15 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<p>Hey, I'm Alexis and this is my blog. I try to talk about freedom, free
|
<p>Hey, I'm Alexis and this is my blog. I try to talk about freedom, free
|
||||||
software and activistm. I'm currently spending my days in Paris, doing
|
software and activism. I'm currently spending my days in Paris, doing
|
||||||
python for the mozilla services team.</p>
|
python at mozilla, on the services team.</p>
|
||||||
|
|
||||||
{% for article in articles %}
|
{% for article in articles %}
|
||||||
<h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
|
<h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
|
||||||
|
{% if article.translations %}
|
||||||
|
<small>(also in {% for article in article.translations %}<a href="{{ SITEURL }}/{{ article.url }}">{{ article.lang }}</a>{% endfor %})</small>
|
||||||
|
{% endif %}
|
||||||
|
</h2>
|
||||||
<p class="date">{{ article.locale_date }}</p>
|
<p class="date">{{ article.locale_date }}</p>
|
||||||
{% if article.description %}
|
{% if article.description %}
|
||||||
<p class="description">{{ article.description }}</p>
|
<p class="description">{{ article.description }}</p>
|
||||||
|
|
Loading…
Reference in a new issue