Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lanrat committed Jun 30, 2017
0 parents commit 7b867e1
Show file tree
Hide file tree
Showing 9 changed files with 124 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# party UI

This is the UI used for the internal web server for Silent Protest
11 changes: 11 additions & 0 deletions html/css/bootstrap.min.css

Large diffs are not rendered by default.

Binary file added html/favicon.ico
Binary file not shown.
Binary file added html/images/hublin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/images/lets-chat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added html/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
98 changes: 98 additions & 0 deletions html/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Silent Protest</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">

<nav class="navbar navbar-inverse">
<div class="container-fluid">
<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>
<a class="navbar-brand" href="#">Silent Protest</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<!-- <li><a href="#">Stream</a></li> -->
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Options <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="silentprotest.pls">Download PLS Playlist</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>

<div class="jumbotron">
<div class="text-center">
<img style="filter: invert(70%); max-height: 100%; max-width: 100%" src="images/logo.png" alt="" />
<h1>Silent Protest</h1>
<p>DIY Wearable Protest &amp; Disco Network</p>
</div>
</div>

<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Live Stream</h3>
</div>
<div class="panel-body" id="node-info">
<div class="text-center">
<p>Live Stream here!</p>
<audio controls src="/live;" autoplay></audio>
</div>
</div>
</div>

<div class="col-md-6">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">Chat Rooms</h3>
</div>
<div class="panel-body" id="node-info">
<a href="https://chat.party.silentprotest.io" target="_blank" class="btn">
<img style="max-height: 70%; max-width: 70%" src="images/lets-chat.png" alt="" />
</a>
</div>
</div>
</div>

<div class="col-md-6">
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">Video Confrence</h3>
</div>
<div class="panel-body" id="node-info">
<a href="https://video.party.silentprotest.io/main" target="_blank" class="btn">
<img style="max-height: 70%; max-width: 70%" src="images/hublin.png" alt="" />
</a>
</div>
</div>
</div>
</div>

<footer>
<hr>
<div class="row">
<div class="col-xs-12 text-center"><a href="https://silentprotest.io">Silent Protest ♥</a></div>
</div>
</footer>
</div> <!-- /container-->

<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>
7 changes: 7 additions & 0 deletions html/js/bootstrap.min.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions html/js/jquery-1.11.3.min.js

Large diffs are not rendered by default.

0 comments on commit 7b867e1

Please sign in to comment.