Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/templates/FAQ.html
Ramon Dantas 1968d2ae54 Move translation func to template variables (#652)
* Add T field to template variables

* Remove languages.SetTranslationFromRequest

* Add Tfunc on handlers

* Remove T and Ts from template_functions

* Update templates

Change the templates to use the local Tfunc, instead of the global one.
Also changed the signature of the fields on template_variables.go, so that
they return a template.HTML to avoid escaping problems.

* Remove unnecessary variable
2017-05-21 08:38:28 +10:00

74 lignes
2,9 Kio
HTML

{{define "title"}}{{call $.T "faq"}}{{end}}
{{define "content"}}
<div class="blockBody">
<!-- marquees are the true purpose of HTML -->
<marquee><h2>{{call $.T "notice_keep_seeding"}}</h2></marquee>
<h1>{{call $.T "official_nyaapocalipse_faq"}}</h1>
<br />
<h2>{{call $.T "links_replacement_mirror"}}</h2>
<a href="https://nyaa.pantsu.cat">Nyaa - nyaa.pantsu.cat</a><br />
<a href="https://sukebei.pantsu.cat">Sukebei - sukebei.pantsu.cat</a>
<h2>{{call $.T "server_status_link"}}</h2>
<a href="https://status.pantsu.cat/">https://status.pantsu.cat/</a><br />
<h2>{{call $.T "what_happened"}}</h2>
<ul>
<li>{{call $.T "nyaa_se_went_offline"}}</li>
<li>{{call $.T "its_not_a_ddos"}}</li>
<li>{{call $.T "future_not_looking_good"}}</li>
<li>{{call $.T "recovery_effort"}}</li>
</ul>
<h2>{{call $.T "is_everything_lost"}}</h2>
<p>{{call $.T "in_short_no"}}</p>
<h2>{{call $.T "are_some_things_lost"}}</h2>
<p>{{call $.T "answer_is_nyaa_db_lost"}}</p>
<p>{{call $.T "answer_is_sukebei_db_lost"}}</p>
<h2>{{call $.T "how_are_we_recovering"}}</h2>
<p>{{call $.T "answer_how_are_we_recovering"}}</p>
<h2>{{call $.T "are_the_trackers_working"}}</h2>
<p>{{call $.T "answer_are_the_trackers_working"}}</p>
<h2>{{call $.T "how_do_i_download_the_torrents"}}</h2>
<p>{{call $.T "answer_how_do_i_download_the_torrents"}}</p>
<p>{{call $.T "magnet_link_should_look_like"}} <span style="font-family:monospace">
magnet:?xt=urn:btih:[hash]&amp;dn=[name]&amp;tr=[tracker]&amp;tr=[...]</span></p>
<h2>{{call $.T "how_do_i_link_my_old_account"}}</h2>
<p>{{call $.T "answer_how_do_i_link_my_old_account"}}</p>
<h2 id="trackers">{{call $.T "which_trackers_do_you_recommend"}}</h2>
<p>{{call $.T "answer_which_trackers_do_you_recommend"}}</p>
<pre>udp://tracker.doko.moe:6969
udp://zer0day.to:1337/announce
udp://tracker.leechers-paradise.org:6969
udp://explodie.org:6969
udp://tracker.opentrackr.org:1337
udp://tracker.internetwarriors.net:1337/announce
http://mgtracker.org:6969/announce
http://tracker.baka-sub.cf/announce</pre>
<h2>{{call $.T "how_can_i_help"}}</h2>
<p>{{call $.T "answer_how_can_i_help"}}</p>
<h2>{{call $.T "your_design_sucks_found_a_bug"}}</h2>
<p><a href="https://github.com/NyaaPantsu/nyaa/issues">https://github.com/NyaaPantsu/nyaa/issues</a>.</p>
<h2>{{call $.T "why_written_in_go"}}</h2>
<p>{{call $.T "authors_favorite_language"}}</p>
<h2>{{call $.T "who_is_renchon"}}</h2>
<p>{{call $.T "renchon_anon_explanation" }}</p>
<br />
<img style="max-width: 100%" src="https://my.mixtape.moe/omrskw.png" alt="funny meme">
</div>
{{end}}