-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
25 lines (25 loc) · 857 Bytes
/
Copy path404.html
File metadata and controls
25 lines (25 loc) · 857 Bytes
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
{{ define "main" }}
<p class="lead">
This is my 404 page, which probably isn't what you were looking for. You
ended up at a URL where I haven't posted anything. If you were looking for
one of my blog posts, you can probably find it
<a href="/blog">here</a>.
</p>
<p class="lead">
If you think something is wrong and there should be a real page here, please
let me know by
<a href="mailto:{{ .Site.Params.author.email }}">emailing me</a>
or
<a
target="_blank"
rel="noopener"
href="https://twitter.com/intent/tweet?text=@{{ .Site.Params.twitterHandle }} Hey this link is broken. Can you fix it?&url="
id="tweet"
>tweeting at me</a
>
and I will fix it as soon as possible.
</p>
<script>
document.getElementById("tweet").href += window.location.href;
</script>
{{ end }}