99ad76f76f
* This allows changing the nyaa, sukebei and status URL via config. Previously only the nyaa address was configurable * This helps testing changes locally without having to set up a TLS terminating proxy * Also refactored uses of hardcoded URLs in the html templates The html templates will now also use the configured urls
73 lignes
3 Kio
HTML
73 lignes
3 Kio
HTML
{{define "title"}}{{call $.T "faq"}}{{end}}
|
|
{{define "content"}}
|
|
<div style="text-align: left;" class="box">
|
|
<!-- 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="{{.Config.WebAddress.Nyaa}}">Nyaa - {{GetHostname .Config.WebAddress.Nyaa}}</a><br />
|
|
<a href="{{.Config.WebAddress.Sukebei}}">Sukebei - {{GetHostname .Config.WebAddress.Sukebei}}</a>
|
|
|
|
<h2>{{call $.T "server_status_link"}}</h2>
|
|
<a href="{{.Config.WebAddress.Status}}">Status - {{GetHostname .Config.WebAddress.Status}}</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]&dn=[name]&tr=[tracker]&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://tracker.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
|
|
udp://ipv6.leechers-paradise.org:6969/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}}
|