28 lines
2.2 MiB
HTML
28 lines
2.2 MiB
HTML
|
<!DOCTYPE html>
|
||
|
<head><meta charset="utf-8" /><meta content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no" name="viewport" /><link href="static/css/tabler-icons.min.css" rel="stylesheet" type="text/css" /><link href="static/css/style.css" rel="stylesheet" type="text/css" /><link href="static/css/export.css" rel="stylesheet" type="text/css" /><link href="static/img/logo.png" rel="shortcut icon" type="image/png" /><link href="static/img/logo.png" rel="shortcut icon" sizes="192x192" /><link href="static/img/logo.png" rel="apple-touch-icon" /><meta name="apple-mobile-web-app-title" /><meta content="yes" name="apple-mobile-web-app-capable" /><meta content="yes" name="apple-touch-fullscreen" /><meta content="black-translucent" name="apple-mobile-web-app-status-bar-style" /><meta content="yes" name="mobile-web-app-capable" /><meta property="og:title" /><meta content="site" property="og:type" /><meta content="static/img/logo.png" property="og:image" /><meta property="og:description" /><title></title><meta property="og:site_name" /><meta /></head><body><div id="root"></div><script>window.logseq_db="["~#datascript/DB",["^ ","~:schema",["^ ","~:ast/version",["^ "],"~:db/encryption-keys",["^ "],"~:file/content",["^ "],"~:block/alias",["^ ","~:db/valueType","~:db.type/ref","~:db/cardinality","~:db.cardinality/many"],"~:block/pre-block?",["^ "],"~:block/uuid",["^ ","~:db/unique","~:db.unique/identity"],"~:block/priority",["^ "],"~:block/properties",["^ "],"~:block/journal?",["^ "],"~:block/namespace",["^ ","^6","^7"],"~:block/updated-at",["^ "],"~:block/repeated?",["^ "],"~:db/type",["^ "],"~:file/handle",["^ "],"~:block/left",["^ ","^6","^7","~:db/index",true],"~:block/refs",["^ ","^6","^7","^8","^9"],"~:block/scheduled",["^ "],"~:db/encrypted?",["^ "],"~:block/properties-order",["^ "],"~:block/created-at",["^ "],"~:block/deadline",["^ "],"~:block/collapsed?",["^ ","^G",true],"~:block/journal-day",["^ "],"~:block/format",["^ "],"~:block/tags",["^ ","^6","^7","^8","^9"],"~:block/content",["^ "],"~:recent/pages",["^ "],"~:block/macros",["^ ","^6","^7","^8","^9"],"~:db/ident",["^ ","^<","^="],"~:block/path-refs",["^ ","^6","^7","^8","^9"],"~:block/parent",["^ ","^6","^7","^G",true],"~:block/heading-level",["^ "],"~:block/type",["^ "],"~:block/page",["^ ","^6","^7","^G",true],"~:block/name",["^ ","^<","^="],"~:file/path",["^ ","^<","^="],"~:block/file",["^ ","^6","^7"],"~:block/marker",["^ "],"~:block/original-name",["^ ","^<","^="],"~:schema/version",["^ "]],"~:datoms",["~#list",[["~#datascript/Datom",[1,"^14",1,536870913]],["^17",[2,"^L",1659689778908,536871081]],["^17",[2,"^@",false,536870914]],["^17",[2,"^[","card",536870913]],["^17",[2,&
|
||
|
// https://github.com/rafgraph/spa-github-pages
|
||
|
// Copyright (c) 2016 Rafael Pedicini, licensed under the MIT License
|
||
|
// ----------------------------------------------------------------------
|
||
|
// This script checks to see if a redirect is present in the query string
|
||
|
// and converts it back into the correct url and adds it to the
|
||
|
// browser's history using window.history.replaceState(...),
|
||
|
// which won't cause the browser to attempt to load the new url.
|
||
|
// When the single page app is loaded further down in this file,
|
||
|
// the correct url will be waiting in the browser's history for
|
||
|
// the single page app to route accordingly.
|
||
|
(function(l) {
|
||
|
if (l.search) {
|
||
|
var q = {};
|
||
|
l.search.slice(1).split('&').forEach(function(v) {
|
||
|
var a = v.split('=');
|
||
|
q[a[0]] = a.slice(1).join('=').replace(/~and~/g, '&');
|
||
|
});
|
||
|
if (q.p !== undefined) {
|
||
|
window.history.replaceState(null, null,
|
||
|
l.pathname.slice(0, -1) + (q.p || '') +
|
||
|
(q.q ? ('?' + q.q) : '') +
|
||
|
l.hash
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
}(window.location))</script><script src="static/js/main.js"></script><script src="static/js/highlight.min.js"></script><script src="static/js/interact.min.js"></script><script src="static/js/katex.min.js"></script><script src="static/js/code-editor.js"></script></body>
|