mirror of
https://github.com/jstrieb/urlpages.git
synced 2024-12-22 13:52:15 +01:00
18 lines
630 B
HTML
18 lines
630 B
HTML
<!-- index.html: Referred to as the "main page" in documentation -->
|
|
|
|
<meta name="description" content="Create and view web pages stored entirely in the URL">
|
|
|
|
<noscript>JavaScript is required to convert the URL into a usable web page.</noscript>
|
|
|
|
<script type="text/javascript" src="b64.js"></script>
|
|
<script type="text/javascript">
|
|
if (window.location.hash) {
|
|
// Try to get page data from the URL if possible
|
|
var hash = window.location.hash.slice(1);
|
|
var data = b64.decode(hash);
|
|
document.write(decodeURIComponent(data));
|
|
} else {
|
|
// Otherwise redirect to the editor
|
|
window.location.replace("./editor");
|
|
}
|
|
</script>
|