blob: a9eb79f32c653fcb3a06e67ba9ac3e76c81e9e43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
permalink: /404.html
layout: null
---
<!-- redirect to page creator if not exists -->
<script type="text/javascript">
var filename = window.location.pathname.split('/').pop();
if (!filename.endsWith(".md"))
filename+=".md";
var url = '{{ site.github.repository_url }}/new/{{site.git_branch}}?filename={{ site.wiki_folder | default: 'wiki' }}/'+filename;
window.location=url;
</script>
|