-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path404.html
More file actions
46 lines (40 loc) · 1.54 KB
/
404.html
File metadata and controls
46 lines (40 loc) · 1.54 KB
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
---
layout: default
title: "404: Page not found"
permalink: 404.html
---
<header class="logo">
<div class="home-header-container">
<a href="https://suporte.braspag.com.br/hc/pt-br" class="help">{% t global.support %}</a>
<a href="{{ site.baseurl }}/">
<img src="{{ site.baseurl }}/assets/images/logo.png" alt="{{ site.title }}">
</a>
</div>
</header>
<div class="page">
<h1 class="page-title">404: Página não encontrada / Page not found</h1>
<p class="lead">Desculpe, página indisponível. O link acessado está quebrado ou a página não existe mais. Por favor retorne à nossa <a href="{{ site.baseurl }}">home page</a> e refaça sua busca.
<br/><br/>
Sorry, this page isn't available. The link you followed may be broken, or the page may have been removed. Please return to our <a href="{{ site.baseurl }}//en/">home page</a> and try finding it again.</p>
</div>
{% assign sorted = site.tags | sort %}
<div class="post-list home">
<ul class="product-list">
{% for tag in sorted %}
<li class="product">
<h2>{{tag[0]}}</h2>
{% assign pages_list = tag[1] | sort: 'title' | sort: 'sort_order' %}
<ul class="doc">
{% for post in pages_list %}
<li class="doc-title">
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
</div>
<div class="home-footer">
{% include footer.html %}
</div>