-
Notifications
You must be signed in to change notification settings - Fork 32
/
404.html
81 lines (80 loc) · 4.57 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
---
layout: simple
title: File Not Found
permalink: /404.html
---
<article class="main">
<header class="main-feature">
<div class="wrapper">
<h1 class="main-feature__page-title">{{ page.title }}</h1>
<p class="main-feature__description"><strong>Unfortunately, the page you tried to access could not be found.</strong> If you were brought to this page from our website, please <a href="{{ site.baseurl }}/contact/">contact us</a> with a description of how you came to this page. You can also search for what you were looking for below.</p>
</div>
</header>
<section class="home-block home-block--search">
<div class="wrapper">
<div class="page-content page-content--centered">
<form method="get" action="https://www.google.com/search">
<section class="block form">
<div class="row row--form field">
<h1 class="field__name"><label for="q">Search MyBB.com</label></h1>
<input type="hidden" name="as_sitesearch" id="as_sitesearch" value="mybb.com">
<input name="q" id="q" type="text" class="textbox searchField inputText" placeholder="Search keyword" />
</div>
<div class="form__submit">
<button id="submit" type="submit" class="button">{% include icon.html icon='search' %} Search</button>
</div>
</section>
</form>
</div>
</div>
</section>
<section class="home-block home-block--why">
<div class="wrapper">
<h1 class="home-block__title">Is this what you were looking for?</h1>
<h2 class="home-block__subtitle">These are a few of MyBB.com's most popular destinations.</h2>
<div class="action-cards action-cards--three">
<div class="action-cards__card">
<a href="{{ site.baseurl }}/download/" class="action-cards__card__link">
<span class="action-cards__card__icon">{% include icon.html icon='download' %}</span>
<h3 class="action-cards__card__title">Download</h3>
<p class="action-cards__card__description">Download the latest version of MyBB or browse past versions.</p>
<p class="action-cards__card__action"><span>Download MyBB</span> {% include icon.html icon='arrow-right' %}</p>
</a>
</div>
<div class="action-cards__card">
<a href="{{ site.baseurl }}/get-involved/" class="action-cards__card__link">
<span class="action-cards__card__icon">{% include icon.html icon='users' %}</span>
<h3 class="action-cards__card__title">Get Involved</h3>
<p class="action-cards__card__description">Find out how you can contribute to the MyBB Project.</p>
<p class="action-cards__card__action"><span>Get Involved</span> {% include icon.html icon='arrow-right' %}</p>
</a>
</div>
<div class="action-cards__card">
<a href="https://docs.mybb.com/" class="action-cards__card__link">
<span class="action-cards__card__icon">{% include icon.html icon='book' %}</span>
<h3 class="action-cards__card__title">Docs</h3>
<p class="action-cards__card__description">Read tutorials and online documentation about MyBB and find solutions to common problems.</p>
<p class="action-cards__card__action"><span>MyBB Documentation</span> {% include icon.html icon='arrow-right' %}</p>
</a>
</div>
</div>
</div>
</section>
<section class="home-block home-block--features" id="features">
<div class="wrapper">
<h1 class="home-block__title">MyBB Feature Tour</h1>
<h2 class="home-block__subtitle">Don't miss any of the great features you can get with MyBB!</h2>
<div class="feature-tour__footer__list">
{% for item in site.data.features %}
{% assign item_url = item | prepend:"/features/" | append:"/" %}
{% assign p = site.features | where:"url", item_url | first %}
<div class="feature-tour__footer__list__item">
{% include icon.html icon=p.icon %}
<h2 class="feature-tour__footer__list__item__title"><a href="{{ site.baseurl }}{{ item_url }}" class="feature-tour__footer__list__item__link">{{ p.title }}</a></h2>
<p class="feature-tour__footer__list__item__description">{{ p.meta_description }}</p>
</div>
{% endfor %}
</div>
</div>
</section>
</article>