53 lines
1.8 KiB
HTML
53 lines
1.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include head.html %}
|
|
|
|
<style>
|
|
</style>
|
|
|
|
<title>{{ site.title }} - {{ page.title }}</title>
|
|
</head>
|
|
<body id="page-top">
|
|
|
|
<!-- Navigation -->
|
|
{% include navbar.html %}
|
|
|
|
<!-- Scroll to Top link -->
|
|
<a class="top-link hide" href="" id="js-top">
|
|
<svg class="bi bi-arrow-up-circle-fill" width="4em" height="4em" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
|
<path fill-rule="evenodd" d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-10.646.354a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 6.207V11a.5.5 0 0 1-1 0V6.207L5.354 8.354z"/>
|
|
</svg>
|
|
<span class="screen-reader-text">Back to top</span>
|
|
</a>
|
|
|
|
<div class="container">
|
|
<div class="row no-gutters">
|
|
<div class="col-9">
|
|
<nav class="content">
|
|
{{ content }}
|
|
</nav>
|
|
</div>
|
|
<div class="col">
|
|
<hr class="my-4">
|
|
<div class="text-footer">
|
|
<h5 class="allcaps">Contents</h5>
|
|
</div>
|
|
<div class="toc" >{% include toc.html html=content class=toc %}</div>
|
|
<hr class="my-4">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<section class="footer-dark text-white">
|
|
<div class="text-footer">
|
|
<small>Hosted on GitHub Pages — Theme by <a href="https://github.com/ned-kelly">ned-kelly</a> and <a href="https://github.com/zklosko">Zachary Klosko</a> | </small>
|
|
<small>Code and docs licensed under GPLv2. More details <a href="http://sourcefabric.booktype.pro/airtime-25-for-broadcasters/about-this-manual/">here</a>. </small>
|
|
</div>
|
|
</section>
|
|
</footer>
|
|
{% include scripts.html %}
|
|
</body>
|
|
</html>
|