22 lines
592 B
HTML
22 lines
592 B
HTML
---
|
|
layout: default
|
|
title: 404 not found
|
|
custom_html_header: |
|
|
<meta name="robots" content="noindex">
|
|
---
|
|
{% include defs.html -%}
|
|
<div class="row"><div>
|
|
<h1>404 not found</h1>
|
|
<p>
|
|
This page has moved to
|
|
<a href="{{url_root}}#glyphs" id="canonlink">{{url_root}}#glyphs</a>
|
|
</p>
|
|
</div></div>
|
|
<script type="text/javascript">(function(){
|
|
let i = location.search.indexOf("?g=")
|
|
let glyphname = i > -1 ? location.search.substr(i+3) : ''
|
|
let newurl = `{{url_root}}#glyphs/${glyphname}`
|
|
let a = document.getElementById('canonlink')
|
|
a.href = newurl
|
|
a.innerText = newurl
|
|
})()</script>
|