website/views/404.hbs
Montelion a231538872
Every translatable text is now in US_en.json
Every translatable word/sentence now refers to its file in /locales. This means that translations are now easier to make (you just need to create a REGIONCODE_languagecode.json in locales with the translated .json)
2020-04-22 22:23:05 +02:00

22 lines
527 B
Handlebars

<!DOCTYPE html>
<html lang="en">
<head>
{{> head-common }}
<!-- page specific -->
<link rel="stylesheet" href="/assets/css/pretendo-contact.css">
</head>
<body class="flex">
{{> navbar }}
<div class="contentWrapper bgLinesSmall">
<div class="bgExtrude"></div>
<section class="bigCardWrapper">
<div class="bigCard">
<p class="txt-highlight">404</p>
<h1 class="txt-title">{{ locale.404.title }}</h1>
</div>
</section>
</div>
{{> footer-default }}
</body>
</html>