Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy path404.html
More file actions
Latest commit
32 lines (30 loc) · 1.42 KB
/
Copy path404.html
File metadata and controls
32 lines (30 loc) · 1.42 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
---
title: "404: Page not found"
permalink: 404.html
---
<divclass="page">
<h1class="page-title">Page not found</h1>
<pclass="lead">The link you followed points to a page that doesn't exist. You can:
<ul>
<li>
<aid="prose-create-link" href="http://prose.io/#{{ site.github.name }}/{{ site.github.project }}/tree/{{ site.github.branch }}/">Create this page</a> using Prose or <aid="github-create-link" href="https://github.com/{{ site.github.name }}/{{ site.github.project }}/new/{{ site.github.branch }}/">using Github</a>. Your edits will be submitted as a pull request which pirate volunteers will review and merge.
</li>
<li>
<ahref="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>
<ahref="{{ site.baseurl }}">Head back home</a> to try finding it again.
</li>
</ul>
</div>
<scriptsrc="/js/edit.js"></script>
<script>
varpath=window.location.pathname
varname='{{site.github.name}}'
varproject='{{site.github.project}}'
varbranch='{{site.github.branch}}'
varproseLink=document.getElementById('prose-create-link');
proseLink.href=proseCreateUrl(window.location.pathname,name,project,branch)
vargithubLink=document.getElementById('github-create-link');
githubLink.href=githubCreateUrl(window.location.pathname,name,project,branch)
</script>