added schedule and nav.

This commit is contained in:
administrator@tilderadio.org 2020-06-17 22:07:03 -06:00
parent 0b960b4e57
commit 2e8a4bf2cd
13 changed files with 8113 additions and 21 deletions

6
.htaccess Normal file
View File

@ -0,0 +1,6 @@
# redirect proper start
<IfModule mod_rewrite.c>
RewriteEngine On
Redirect 302 /listen https://radio.tildeverse.org/radio/8000/radio.ogg
</IfModule>
# redirect proper end

View File

@ -0,0 +1 @@
VRYsOcICA64exNWZXVoR96dtFFOH7smuiozsAln9RPU.p6vgIZ2MJHzrV5zxa8-HYBgJYF2nj9sLHwomdoGNeTA

View File

@ -0,0 +1 @@
baV8JEIa6fZ7igBuqLqI_I6LmsNNf_k_t_YU-JR3c3o.p6vgIZ2MJHzrV5zxa8-HYBgJYF2nj9sLHwomdoGNeTA

View File

@ -0,0 +1 @@
lyc68WMXTtJIf-jvn8ZokyqnzsarZI34n46H9VTFz0Q.p6vgIZ2MJHzrV5zxa8-HYBgJYF2nj9sLHwomdoGNeTA

View File

@ -0,0 +1 @@
oVLD7HTHz52PRY4GkcMcb174xftqTjDxo3nikGIYmr8.p6vgIZ2MJHzrV5zxa8-HYBgJYF2nj9sLHwomdoGNeTA

File diff suppressed because one or more lines are too long

25
dmca.php Normal file
View File

@ -0,0 +1,25 @@
<?php include 'header.php'; ?>
<h1><a href="https://tilderadio.org"><img style="width:75px;" src="./logos/tilderadio-green.png">tilderadio.org</a></h1>
<br>
<br>
<p><b>Digital Millennium Copyright Act ("DMCA")</b></p>
<p>tilderadio respects the intellectual property rights of others. Per the DMCA, tilderadio will respond expeditiously to claims of copyright infringement on the Site if submitted to tilderadio's Copyright Agent as described below. Upon receipt of a notice alleging copyright infringement, tilderadio will take whatever action it deems appropriate within its sole discretion, including removal of the allegedly infringing materials and termination of access for repeat infringers of copyright protected content.</p>
<p>If you believe that your intellectual property rights have been violated by tilderadio or by a third party who has uploaded materials to our website, please provide the following information to the designated Copyright Agent listed below:</p>
<ol>
<li>A description of the copyrighted work or other intellectual property that you claim has been infringed;</li>
<li>A description of where the material that you claim is infringing is located on the Site;</li>
<li>An address, telephone number, and email address where we can contact you and, if different, an email address where the alleged infringing party, if not tilderadio, can contact you;</li>
<li>A statement that you have a good-faith belief that the use is not authorized by the copyright owner or other intellectual property rights owner, by its agent, or by law;</li>
<li>A statement by you under penalty of perjury that the information in your notice is accurate and that you are the copyright or intellectual property owner or are authorized to act on the owner's behalf;</li>
<li>Your electronic or physical signature.</li>
</ol>
<p>tilderadio may request additional information before removing any allegedly infringing material. In the event tilderadio removes the allegedly infringing materials, tilderadio will immediately notify the person responsible for posting such materials that tilderadio removed or disabled access to the materials. tilderadio may also provide the responsible person with your email address so that the person may respond to your allegations.</p>
<p>Pursuant to 17 U.S.C. 512(c). tilderadio designated Copyright Agent is:</p>
tilderadio dmca dept<br/><a href="mailto:dmca@tilderadio.org">dmca@tilderadio.org</a></p>
<br>
<br>
<?php include 'footer.php'; ?>

View File

@ -1,6 +1,10 @@
</div>
<footer class="text-center">
<a href="https://tildegit.org/tilderadio/site">page source</a>
</footer>
</div>
<footer class="text-center">
<a href="https://tildegit.org/tilderadio/site">page source</a> | <a href="dmca.php">DMCA</a>
</footer>
<script src="/js/jquery.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</body>
</html>

View File

@ -1,10 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>tilderadio<?=isset($title) ? " | $title" : "" ?></title>
<title>tilderadio
<?=isset($title) ? " | $title" : "" ?>
</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/hacker.css">
</head>
<body>
<link rel="stylesheet" href="/css/hacker.css">
</head>
<body>
<div class="container">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="/">home</a></li>
<li><a href="/schedule/">schedule</a></li>
<!--/.nav-collapse -->
</div>
</nav>
<br><br>

View File

@ -1,5 +1,5 @@
<?php include 'header.php'; ?>
<h1><img style="width:75px;" src="./logos/tilderadio-green.png">tilderadio.org</h1>
<h1><a href="https://tilderadio.org"><img style="width:75px;" src="./logos/tilderadio-green.png">tilderadio.org</a></h1>
<br>
<br>
@ -11,13 +11,10 @@
<br>
<hr>
<h3>Listen Live!</h3>
<br>
<p>
<iframe src="https://radio.tildeverse.org/public/tilderadio/embed" frameborder="0" allowtransparency="true" style="width: 100%; min-height: 160px; border: 0;"></iframe>
</p>
<hr>
<?php include 'footer.php'; ?>
<?php include 'footer.php'; ?>

7
js/bootstrap.min.js vendored Normal file

File diff suppressed because one or more lines are too long

4
js/jquery.min.js vendored Normal file

File diff suppressed because one or more lines are too long

9
schedule/index.php Normal file
View File

@ -0,0 +1,9 @@
<?php include '../header.php'; ?>
<h1><a href="https://tilderadio.org"><img style="width:75px;" src="../logos/tilderadio-green.png">tilderadio.org</a></h1>
<br>
<br>
<p>
New Schedule Announcement Coming Soon!
</p>
<?php include '../footer.php'; ?>