138 lines
4.6 KiB
HTML
138 lines
4.6 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include head.html %}
|
|
|
|
<style>
|
|
header.masthead {
|
|
padding-top: 10rem;
|
|
padding-bottom: calc(10rem - 56px);
|
|
background-image: url("{{ site.headimage }}");
|
|
background-position: center center;
|
|
background-size: cover;
|
|
}
|
|
body{
|
|
font-family:Merriweather,'Helvetica Neue',Arial,sans-serif;
|
|
padding-top: 0px;
|
|
}
|
|
</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>
|
|
|
|
<!-- Splash Image
|
|
<header class="masthead text-center text-white d-flex">
|
|
<div class="container my-auto">
|
|
<div class="row">
|
|
<div class="col-lg-10 mx-auto">
|
|
<h1 class="text-uppercase">
|
|
<strong> {{ site.headtext }} </strong>
|
|
</h1>
|
|
<hr>
|
|
</div>
|
|
<div class="col-lg-8 mx-auto">
|
|
<p class="text-faded mb-5">
|
|
{{ site.headsubtext}}
|
|
</p>
|
|
<a class="btn btn-primary btn-xl js-scroll-trigger" href="{{ site.headbuttonurl }}">{{ site.headbuttontext }}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
-->
|
|
|
|
<!-- Orange Container -->
|
|
<section class="bg-dark text-white" id="dj">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-8 mx-auto text-center">
|
|
<h2 class="section-heading text-white">Docs for DJs</h2>
|
|
<hr class="light my-4">
|
|
<p class="text-faded mb-4">
|
|
Basic guides for broadcasting with Libretime can be found here, perfect for DJs.
|
|
</p>
|
|
{% for item in site.data.nav.djguides %}
|
|
<li>
|
|
<a class="" href="{{ item.url }}">{{ item.page }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="" id="managers">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-8 mx-auto text-center">
|
|
<h2 class="section-heading">Docs for Program Managers</h2>
|
|
<hr class="light my-4">
|
|
<p class="mb-4">
|
|
Program Managers, sometimes known as Program Directors, manage DJs and are responsible for maintaining the station's on-air calendar. All the help Program Managers need is right here. (Note: guides for DJs will also be helpful for programming Libretime)
|
|
</p>
|
|
{% for item in site.data.nav.managerguides %}
|
|
<li>
|
|
<a class="" href="{{ item.url }}">{{ item.page }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="bg-dark text-white" id="dj">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-8 mx-auto text-center">
|
|
<h2 class="section-heading text-white">Docs for System Administrators</h2>
|
|
<hr class="light my-4">
|
|
<p class="text-faded mb-4">
|
|
System administrators can find all of the information they need here to configure and maintain their LibreTime instance.
|
|
</p>
|
|
{% for item in site.data.nav.adminguides %}
|
|
<li>
|
|
<a class="" href="{{ item.url }}">{{ item.page }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="" id="devs">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-8 mx-auto text-center">
|
|
<h2 class="section-heading">Docs for Developers</h2>
|
|
<hr class="light my-4">
|
|
<p class="mb-4">
|
|
Calling all developers! Find the information you need to get started at the links below.
|
|
</p>
|
|
{% for item in site.data.nav.devguides %}
|
|
<li>
|
|
<a class="" href="{{ item.url }}">{{ item.page }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{% include footer.html %}
|
|
|
|
{% include scripts.html %}
|
|
</body>
|
|
</html>
|