-
Notifications
You must be signed in to change notification settings - Fork 7
/
404.html
33 lines (31 loc) · 1.41 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
---
title: "Page not found"
permalink: 404.html
sitemap: false
---
<div class="page">
<h1 class="page-title">Page not found</h1>
<p class="lead">The link you followed points to a page that doesn't exist. You can:
<ul>
<li>
<a id="prose-create-link" href="http://prose.io/#{{ site.github.name }}/{{ site.github.project }}/tree/{{ site.github.branch }}/">Create this page using Prose</a> or <a id="github-create-link" href="https://github.com/{{ site.github.name }}/{{ site.github.project }}/new/{{ site.github.branch }}/">using Github</a>.<br/>
Your edits will be submitted as a pull request which the site editors will review and merge.
</li>
<li>
<a href="https://github.com/{{ site.github.name }}/{{ site.github.project }}/issues/new">Open an issue</a> to let us know the link is broken.
</li>
<li>
<a href="{{ site.baseurl }}">Head back home</a> to try finding it again.
</li>
</ul>
</div>
<script src="/js/editor.js"></script>
<script>
var name = '{{site.github.name}}'
var project = '{{site.github.project}}'
var branch = '{{site.github.branch}}'
var proseLink = document.getElementById('prose-create-link');
proseLink.href = proseCreateUrl(window.location.pathname, name, project, branch)
var githubLink = document.getElementById('github-create-link');
githubLink.href = githubCreateUrl(window.location.pathname, name, project, branch)
</script>