Fixing photo credits, gitignoring Gemfile.lock, minor styling tweaks
This commit is contained in:
parent
ff336eb8fe
commit
ecf04f894b
|
@ -18,4 +18,5 @@ airtime_mvc/tests/log/*.log
|
||||||
.idea/
|
.idea/
|
||||||
/docs/_site/*
|
/docs/_site/*
|
||||||
/docs/.jekyll-cache/*
|
/docs/.jekyll-cache/*
|
||||||
/docs/.gems/*
|
/docs/.gems/*
|
||||||
|
Gemfile.lock
|
|
@ -3,7 +3,7 @@ layout: 404
|
||||||
linkto: /search
|
linkto: /search
|
||||||
linktext: Search
|
linktext: Search
|
||||||
img: /img/car-radio-unsplash.jpg
|
img: /img/car-radio-unsplash.jpg
|
||||||
photocredit: Photo by <a href="https://unsplash.com/@shotaspot?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Frank Albrecht</a> on <a href="https://unsplash.com/s/photos/radio?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a>
|
photocredit: Top photo by <a href="https://unsplash.com/@shotaspot?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Frank Albrecht</a> on <a href="https://unsplash.com/s/photos/radio?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a>
|
||||||
---
|
---
|
||||||
|
|
||||||
# DEAD AIR
|
# DEAD AIR
|
||||||
|
|
|
@ -64,7 +64,7 @@ sudo ufw allow 8001,8002/tcp
|
||||||
|
|
||||||
> If needed, instructions for setting up a reverse proxy can be found [here](/docs/reverse-proxy).
|
> If needed, instructions for setting up a reverse proxy can be found [here](/docs/reverse-proxy).
|
||||||
|
|
||||||
### Installing LibreTime
|
## Installing LibreTime
|
||||||
|
|
||||||
<iframe width="560" height="315" src="https://www.youtube.com/embed/Djo_55LgjXE" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/Djo_55LgjXE" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
@ -81,7 +81,7 @@ After the install is completed, head to the IP address of the server LibreTime w
|
||||||
to complete the welcome wizard. While not strictly necessary, it is recommended that you change the passwords prompted in the welcome wizard if you intend on accessing the server from the Internet. The welcome wizard will
|
to complete the welcome wizard. While not strictly necessary, it is recommended that you change the passwords prompted in the welcome wizard if you intend on accessing the server from the Internet. The welcome wizard will
|
||||||
walk you through the rest of the installation process.
|
walk you through the rest of the installation process.
|
||||||
|
|
||||||
### Services
|
## Services
|
||||||
|
|
||||||
Once all of the services needed to run LibreTime are installed and configured,
|
Once all of the services needed to run LibreTime are installed and configured,
|
||||||
it is important that the server starts them during the boot process, to cut down on downtime, especially in live enviornments.
|
it is important that the server starts them during the boot process, to cut down on downtime, especially in live enviornments.
|
||||||
|
@ -99,7 +99,7 @@ sudo systemctl enable rabbitmq-server
|
||||||
|
|
||||||
> If an error is returned, try adding `.service` to the end of each command.
|
> If an error is returned, try adding `.service` to the end of each command.
|
||||||
|
|
||||||
### User Permissions
|
## User Permissions
|
||||||
|
|
||||||
If you plan to have LibreTime output analog audio directly to a mixing console or transmitter,
|
If you plan to have LibreTime output analog audio directly to a mixing console or transmitter,
|
||||||
the `www-data` user needs to be added to the `audio` user group using the command below:
|
the `www-data` user needs to be added to the `audio` user group using the command below:
|
||||||
|
|
|
@ -45,6 +45,9 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-7">
|
<div class="col-md-7">
|
||||||
<p class="small font-weight-light mb-md-0">Code licensed under AGPLv3; docs licensed under GPLv2. More details <a href="http://sourcefabric.booktype.pro/airtime-25-for-broadcasters/about-this-manual/">here</a>.</p>
|
<p class="small font-weight-light mb-md-0">Code licensed under AGPLv3; docs licensed under GPLv2. More details <a href="http://sourcefabric.booktype.pro/airtime-25-for-broadcasters/about-this-manual/">here</a>.</p>
|
||||||
|
{% if page.photocredit %}
|
||||||
|
<div class="small font-weight-light mb-md-0">{{page.photocredit}}</div>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -25,6 +25,5 @@ layout: default
|
||||||
<a class="btn btn-primary btn-xl js-scroll-trigger" href="{{ page.linkto }}">{{ page.linktext }}</a>
|
<a class="btn btn-primary btn-xl js-scroll-trigger" href="{{ page.linkto }}">{{ page.linktext }}</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-right text-muted photo-credit"><small>{{page.photocredit}}</small></div>
|
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
|
@ -25,9 +25,6 @@ layout: default
|
||||||
<a class="btn btn-primary btn-xl js-scroll-trigger" href="{{ page.linkto }}">{{ page.linktext }}</a>
|
<a class="btn btn-primary btn-xl js-scroll-trigger" href="{{ page.linkto }}">{{ page.linktext }}</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<div class="text-right text-muted photo-credit"><small>{{page.photocredit}}</small></div>
|
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,10 @@ h1,h2,h3,h4,h5,h6{
|
||||||
font-family:'Open Sans','Helvetica Neue',Arial,sans-serif;
|
font-family:'Open Sans','Helvetica Neue',Arial,sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1,h2{
|
||||||
|
margin-top: 30px; /* adding padding on top of lead headings */
|
||||||
|
}
|
||||||
|
|
||||||
/* Correcting overscroll on TOC links */
|
/* Correcting overscroll on TOC links */
|
||||||
:target{
|
:target{
|
||||||
padding-top: 57px;
|
padding-top: 57px;
|
||||||
|
@ -203,12 +207,6 @@ header.masthead p{font-weight:300}
|
||||||
|
|
||||||
.btn-outline-full-width{border:1px solid #888;margin:5px;width:100%}
|
.btn-outline-full-width{border:1px solid #888;margin:5px;width:100%}
|
||||||
|
|
||||||
/* Photo Credit */
|
|
||||||
.photo-credit {
|
|
||||||
position: relative;
|
|
||||||
bottom:0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Blockquotes */
|
/* Blockquotes */
|
||||||
blockquote {
|
blockquote {
|
||||||
border: 2px solid #f05f40;
|
border: 2px solid #f05f40;
|
||||||
|
@ -232,7 +230,7 @@ text-align: right;
|
||||||
|
|
||||||
/* Code Blocks */
|
/* Code Blocks */
|
||||||
code {
|
code {
|
||||||
color: #f05f40;
|
color: #212529;
|
||||||
font-size: .9rem;
|
font-size: .9rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -320,23 +318,6 @@ padding: 10px 20px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Gradients */
|
|
||||||
.gradient-dark {
|
|
||||||
background-color: #343a40;
|
|
||||||
background-image: -webkit-gradient(linear, left top, right top, from(#343a40), to(#000));
|
|
||||||
background-image: -webkit-linear-gradient(left, #343a40, #000);
|
|
||||||
background-image: -o-linear-gradient(left, #343a40, #000);
|
|
||||||
background-image: linear-gradient(to right, #343a40, #000);
|
|
||||||
}
|
|
||||||
|
|
||||||
.gradient-primary {
|
|
||||||
background-color: transparent;
|
|
||||||
background-image: -webkit-gradient(linear, left top, right top, from(#FF7657), to(#FF6745));
|
|
||||||
background-image: -webkit-linear-gradient(left, #FF7657, #FF6745);
|
|
||||||
background-image: -o-linear-gradient(left, #FF7657, #FF6745);
|
|
||||||
background-image: linear-gradient(to right, #FF7657, #FF6745);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*------------------------------------
|
/*------------------------------------
|
||||||
List
|
List
|
||||||
------------------------------------*/
|
------------------------------------*/
|
||||||
|
|
|
@ -4,10 +4,10 @@ title: Home
|
||||||
linkto: index#get-started
|
linkto: index#get-started
|
||||||
linktext: Get Libretime
|
linktext: Get Libretime
|
||||||
img: /img/radio-unsplash.jpg
|
img: /img/radio-unsplash.jpg
|
||||||
photocredit: Photo by <a href="https://unsplash.com/@leowieling?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Leo Wieling</a> on <a href="https://unsplash.com/s/photos/radio?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a>
|
photocredit: Top photo by <a href="https://unsplash.com/@leowieling?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Leo Wieling</a> on <a href="https://unsplash.com/s/photos/radio?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a>
|
||||||
actions:
|
actions:
|
||||||
- title: Stable Release
|
- title: Stable Release
|
||||||
text: Throughly tested so you can rest(ed)? Install from our release snapshots on Github.
|
text: Thoroughly tested so you can relax? Install from our official releases on Github.
|
||||||
linkto: https://github.com/LibreTime/libretime/releases
|
linkto: https://github.com/LibreTime/libretime/releases
|
||||||
linktext: Releases on Github
|
linktext: Releases on Github
|
||||||
- title: Rolling Commits
|
- title: Rolling Commits
|
||||||
|
|
Loading…
Reference in New Issue