Files
libkiwix/static/templates/no_js_download.html
Nikhil Tanwar cc35fe503f Translations for /nojs endpoint
Uses the string from #846 for translations.
A couple new translations are also added for <title> tag.
2023-03-29 19:03:29 +05:30

33 lines
946 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{translations.download-links-title}}</title>
</head>
<style>
.downloadLinksTitle {
text-align: center;
font-size: 32px;
margin-bottom: 8px;
}
</style>
<body>
<div class="downloadLinksTitle">
{{{translations.download-links-heading}}}
</div>
<a href="{{url}}" download>
<div>{{translations.direct-download-link-text}}</div>
</a>
<a href="{{url}}.sha256" download>
<div>{{translations.hash-download-link-text}}</div>
</a>
<a href="{{url}}.magnet" target="_blank">
<div>{{translations.magnet-link-text}}</div>
</a>
<a href="{{url}}.torrent" download>
<div>{{translations.torrent-download-link-text}}</div>
</a>
</body>
</html>