2018-12-25 21:20:18 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>{{ site.title }}</title>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
2019-01-02 16:12:39 +01:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,700|Source+Code+Pro:400" rel="stylesheet">
|
2018-12-25 21:20:18 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="/assets/normalize.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/assets/tocbot.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/assets/style.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<main>
|
2019-01-11 19:28:17 +01:00
|
|
|
<h1>LBRY: A Decentralized Digital Content Marketplace</h1>
|
2018-12-25 21:20:18 +01:00
|
|
|
<div class="toc-menu">Menu</div>
|
|
|
|
<nav class="toc"></nav>
|
|
|
|
<div id="content">
|
|
|
|
{{ content }}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<script src="/assets/tocbot.min.js"></script>
|
|
|
|
<script>
|
|
|
|
function ready(fn) {
|
|
|
|
if (document.attachEvent ? document.readyState === "complete" : document.readyState !== "loading"){
|
|
|
|
fn();
|
|
|
|
} else {
|
|
|
|
document.addEventListener('DOMContentLoaded', fn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleClass(el, className) {
|
|
|
|
if (el.classList) {
|
|
|
|
el.classList.toggle(className);
|
|
|
|
} else {
|
|
|
|
var classes = el.className.split(' ');
|
|
|
|
var existingIndex = classes.indexOf(className);
|
|
|
|
|
|
|
|
if (existingIndex >= 0)
|
|
|
|
classes.splice(existingIndex, 1);
|
|
|
|
else
|
|
|
|
classes.push(className);
|
|
|
|
|
|
|
|
el.className = classes.join(' ');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ready(function() {
|
|
|
|
// Handle external links
|
|
|
|
const links = document.links;
|
|
|
|
for (var i = 0; i < links.length; i++) {
|
|
|
|
if (links[i].hostname != window.location.hostname) {
|
|
|
|
links[i].target = '_blank';
|
|
|
|
links[i].className += ' external-link';
|
|
|
|
links[i].rel = "noopener";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// TOCbot
|
|
|
|
var options = {
|
|
|
|
tocSelector: '.toc',
|
|
|
|
contentSelector: '#content',
|
|
|
|
headingSelector: 'h2, h3, h4, h5, h6',
|
|
|
|
collapseDepth: 3,
|
|
|
|
positionFixedSelector: ".toc",
|
2019-01-11 19:28:17 +01:00
|
|
|
onClick: (e) => { history.replaceState(null,null,e.target.href); }, // put anchor into url on toc link click
|
2018-12-25 21:20:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
tocbot.init(options);
|
|
|
|
|
|
|
|
document.querySelector('.toc-menu').addEventListener("click", function() {
|
|
|
|
toggleClass(document.querySelector('.toc'), "open");
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// need this part to fix toc offset height if content above toc changes height
|
|
|
|
var resizeTimer;
|
|
|
|
window.addEventListener('resize', function(e) {
|
|
|
|
clearTimeout(resizeTimer);
|
|
|
|
resizeTimer = setTimeout(function() {
|
|
|
|
o = options;
|
|
|
|
o.fixedSidebarOffset = "auto";
|
|
|
|
tocbot.refresh(o);
|
|
|
|
}, 250);
|
|
|
|
});
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|