Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
go
Commits
722d82ab
Commit
722d82ab
authored
Nov 16, 2016
by
David Haynes
Browse files
Comment up 404.html
- simple enough, there's just one div
parent
c7351371
Pipeline
#469
passed with stage
in 7 minutes and 20 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
go/go/templates/admin/404.html
View file @
722d82ab
<!-- include the base html template -->
{% extends 'layouts/base.html' %}
<!-- define the page title block -->
{% block title %}
404 Error
•
Page Not Found
{% endblock %}
<!-- define the content block for the page -->
{% block content %}
<!-- div that contains the 404 page content -->
<div
class=
"row"
>
<div
class=
"col-md-10 col-md-offset-1 text-center"
>
<h1>
404 Error - Page Not Found
</h1>
<h3>
The link you provided is invalid or may have been deleted.
</h3>
<h3>
If you are registered to use Go, you can verify your links
<a
href=
"{% url 'my_links' %}"
>
here
</a>
.
</h3>
<img
id=
"squirrels"
src=
"/static/img/squirrels.png"
>
<a
href=
"/"
><img
src=
"/static/img/acorn.png"
style=
"width:10vw;"
></a>
<h3>
If you are registered to use Go, you can verify your links
<a
href=
"{% url 'my_links' %}"
>
here
</a>
.
</h3>
<img
id=
"squirrels"
src=
"{% static "
img
/
acorn.png
"
%}"
>
<a
href=
"/"
><img
src=
"{% static "
img
/
acorn.png
"
%}"
style=
"width:10vw;"
></a>
</div>
</div>
{% endblock %}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment