forked from minetest/minetest.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
46 lines (40 loc) · 1.29 KB
/
404.html
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
---
title: Halaman tidak dijumpai
jumbotron: credits
layout: default
permalink: 404.html
---
<script>
// Forum URL redirection
const urlParams = new URLSearchParams(window.location.search.slice(1));
if (urlParams.has('id')) {
// Convert to a number for security (only numeric values make sense anyway)
const topicId = Number(urlParams.get('id'));
window.location.replace(`https://forum.minetest.net/viewtopic.php?id=${topicId}`);
}
</script>
<section class="section">
<div class="container">
<div class="content">
<div class="columns is-centered">
<div class="column is-6">
<div class="has-text-centered">
<img
src="{{ '/media/unknown_node.jpg' | relative_url }}"
alt="Nod tidak diketahui"
>
<h2>Harap maaf, kami tidak jumpa halaman tersebut!</h2>
<p>
<a href="{{ '/' | relative_url }}" class="has-text-weight-bold">Balik ke halaman utama</a>
</p>
<p>
Sila laporkan sebarang kerosakan pautan di
<a href="https://github.com/mnh48-minetest/minetest.mnh48.moe/issues">
halaman isu untuk laman web terjemahan ini</a>.
</p>
</div>
</div>
</div>
</div>
</div>
</section>