forked from GDevelopApp/GDevelop-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
10 lines (7 loc) · 618 Bytes
/
Copy path404.html
File metadata and controls
10 lines (7 loc) · 618 Bytes
1
2
3
4
5
6
7
8
9
10
{% extends "main.html" %}
<!-- Content -->
{% block content %}
<h1>This page was not found (404)</h1>
<p>The link you followed seems broken or the page does not exist.</p>
<p>If you want to create a new page at this address, <a href="#" onclick="window.open('https://github.com/GDevelopApp/GDevelop-documentation/new/main/docs/' + location.pathname.substring(0,location.pathname.lastIndexOf('/', location.pathname.length - 2)) +'?filename=' +location.pathname.substring(location.pathname.lastIndexOf('/', location.pathname.length - 2) + 1,location.pathname.length - 1) +'.md')">click here</a>.
{% endblock %}