forked from weechat/weechat.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweechat.org.html
More file actions
77 lines (60 loc) · 2.32 KB
/
Copy pathweechat.org.html
File metadata and controls
77 lines (60 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{% extends "about/about.html" %}
{% load i18n %}{% load txt2html %}
{% block subtitle %} :: WeeChat.org{% endblock %}
{% block menu2_weechatorg %}active{% endblock %}
{% block content %}
{{ block.super }}
<h3>{% trans "Authors" %}</h3>
<p>
{% trans "Developers:" %}
<ul>
<li><a href="https://github.com/flashcode">Sébastien Helleu</a> (FlashCode)</li>
</ul>
</p>
<p>
{% trans "Translators:" %}
<ul>
<li>{% trans "German" %}: <a href="https://github.com/weechatter">Nils Görs</a> (nils_2)</li>
<li>{% trans "Italian" %}: <a href="https://github.com/mapolone">Marco Paolone</a></li>
<li>{% trans "Japanese" %}: <a href="https://github.com/l">Ryuunosuke Ayanokouzi</a></li>
<li>{% trans "Polish" %}: <a href="https://github.com/soltysek">Krzysztof Korościk</a> (soltys)</li>
<li>{% trans "Portuguese (Brazil)" %}: Alexandre Bolelli</li>
<li>{% trans "Serbian" %}: <a href="https://github.com/eevan78">Ivan Pešić</a> (eevan)</li>
</ul>
</p>
<h3>{% trans "Source code" %}</h3>
<p>
{% trans "Source code of WeeChat.org is available on GitHub:" %}
<a href="https://github.com/weechat/weechat.org">
https://github.com/weechat/weechat.org
</a>
</p>
<h3>{% trans "Hosting" %}</h3>
<p>
{% blocktrans %}WeeChat.org is hosted by <a href="https://www.hetzner.de/en/">Hetzner</a>.{% endblocktrans %}
{% for info, value in extra_info.items %}
<br>
{{ info|capfirst }}: {{ value }}
{% endfor %}
</p>
<h3>Copyright</h3>
<p>
WeeChat.org — Copyright © 2003-{% now "Y" %} <a href="mailto:{% txt2html "flashcode@flashtux.org" %}" title="email webmaster">Sébastien Helleu</a>.
</p>
<p>
WeeChat.org is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
</p>
<p>
WeeChat.org is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
</p>
<p>
You should have received a copy of the GNU General Public License
along with WeeChat.org. If not, see <a href="https://www.gnu.org/licenses/">https://www.gnu.org/licenses/</a>.
</p>
{% endblock content %}