urlpages/index.html

28 lines
902 B
HTML
Raw Normal View History

2019-06-30 14:22:59 +02:00
<!-- index.html: Referred to as the "main page" in documentation -->
2020-03-30 00:33:26 +02:00
<meta name="description" content="Create and view web pages stored entirely in the URL">
2020-05-27 22:35:30 +02:00
<link rel="shortcut icon" href="favicon.ico">
2020-03-30 00:33:26 +02:00
<noscript>JavaScript is required to convert the URL into a usable web page.</noscript>
2019-06-30 14:22:59 +02:00
<script type="text/javascript" src="b64.js"></script>
<script type="text/javascript" src="api.js"></script>
<script type="text/javascript">
if (window.location.hash) {
2019-06-30 14:22:59 +02:00
// Try to get page data from the URL if possible
var hash = window.location.hash.slice(1);
var data = b64.decode(hash);
try {
var urlDataObject = JSON.parse(data);
var api = apiVersions[urlDataObject.version];
document.write(api.decode(urlDataObject));
} catch (err) {
document.write(decodeURIComponent(data));
}
} else {
2019-06-30 14:22:59 +02:00
// Otherwise redirect to the editor
window.location.replace("./editor");
}
</script>