blob: c645572373718d977788aaafd425e04214e5fe8b (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% comment %}
This snippet need to be an include and not simply a string entry in
_config.yml. This is because the page.title needs to be injected in the
comment link, and putting it as pieces of a string in _config.yml would make
it harder to understand.
{% endcomment %}
{% if page.lang == 'en' %}
<a href="mailto:~euandreh/public-inbox@lists.sr.ht?Subject=RE%3A%20{{ page.title | uri_escape }}">Comment</a>
and see
<a href="https://lists.sr.ht/~euandreh/public-inbox?search={{ page.title | uri_escape }}">existing discussions</a>.
{% elsif page.lang == 'pt' %}
<a href="mailto:~euandreh/public-inbox@lists.sr.ht?Subject=RE%3A%20{{ page.title | uri_escape }}">Comente</a>
e veja
<a href="https://lists.sr.ht/~euandreh/public-inbox?search={{ page.title | uri_escape }}">as discussões existentes</a>.
{% elsif page.lang == 'fr' %}
<a href="mailto:~euandreh/public-inbox@lists.sr.ht?Subject=RE%3A%20{{ page.title | uri_escape }}">Commenter</a>
et afficher
<a href="https://lists.sr.ht/~euandreh/public-inbox?search={{ page.title | uri_escape }}">les discussion existantes</a>.
{% endif %}
|