-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
404.html
35 lines (31 loc) · 1.01 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
---
layout: default
title: "Page not found"
permalink: /404.html
description: "The page you are looking for could not be found"
---
{% include variables.html %}
<div class="container has-text-centered mt-6 is-max-tablet is-relative">
<h1 class="mt-0 is-size-2 has-text-text-on-scheme">{{ page.title }}</h1>
<div class="p404">
<h2 class="p404__title mb-0" data-text="0">4<span class="p404__title-zero">{%- include_relative assets/logos/techlore-logo-edit-by-figma.svg -%}0</span>4</h2>
</div>
{% include c_feature-box.html
title=page.title
desc=t.p404.text
buttonText=t.global.back.backToHomepage
buttonLink=site.baseurl
class="is-box-danger has-no-background has-border"
buttonClass="is-danger"
%}
</div>
{% comment %}Safari ¯\_(ツ)_/¯ {% endcomment %}
<script type="application/javascript">
window.onload = function() {
const svgElement = document.querySelector('.p404__title-zero > svg')
svgElement.style.display = 'none'
setTimeout(() => {
svgElement.style.display = 'block'
}, 0)
}
</script>