-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added html file instance.html to provide a first view for dynamic req…
…uests in a template.
- Loading branch information
Showing
1 changed file
with
128 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>{{ instance.identifier }} : TS3Eventscripts</title> | ||
<!-- BOOTSTRAP STYLES--> | ||
<link href="assets/css/bootstrap.css" rel="stylesheet" /> | ||
<!-- FONTAWESOME STYLES--> | ||
<link href="assets/css/font-awesome.css" rel="stylesheet" /> | ||
<!-- CUSTOM STYLES--> | ||
<link href="assets/css/custom.css" rel="stylesheet" /> | ||
<!-- GOOGLE FONTS--> | ||
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' /> | ||
</head> | ||
<body> | ||
<div id="wrapper"> | ||
<nav class="navbar navbar-default navbar-cls-top " role="navigation" style="margin-bottom: 0"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".sidebar-collapse"> | ||
<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="index.html">TS3Eventscripts</a> | ||
</div> | ||
<div style="color: white; | ||
padding: 15px 50px 5px 50px; | ||
float: right; | ||
font-size: 16px;"> Current instance: {{ instance.identifier }} <a href="#" class="btn btn-danger square-btn-adjust">Logout</a> </div> | ||
</nav> | ||
<!-- /. NAV TOP --> | ||
<nav class="navbar-default navbar-side" role="navigation"> | ||
<div class="sidebar-collapse"> | ||
<ul class="nav" id="main-menu"> | ||
<li class="text-center"> | ||
<img src="assets/img/find_user.png" class="user-image img-responsive"/> | ||
</li> | ||
|
||
|
||
<li> | ||
<a href="index.html"><i class="fa fa-dashboard fa-3x"></i> Dashboard</a> | ||
</li> | ||
<li> | ||
<a href="ui.html"><i class="fa fa-desktop fa-3x"></i> UI Elements</a> | ||
</li> | ||
<li> | ||
<a href="tab-panel.html"><i class="fa fa-qrcode fa-3x"></i> Tabs & Panels</a> | ||
</li> | ||
<li > | ||
<a href="chart.html"><i class="fa fa-bar-chart-o fa-3x"></i> Morris Charts</a> | ||
</li> | ||
<li > | ||
<a href="table.html"><i class="fa fa-table fa-3x"></i> Table Examples</a> | ||
</li> | ||
<li > | ||
<a href="form.html"><i class="fa fa-edit fa-3x"></i> Forms </a> | ||
</li> | ||
|
||
|
||
<li> | ||
<a href="#"><i class="fa fa-sitemap fa-3x"></i> Multi-Level Dropdown<span class="fa arrow"></span></a> | ||
<ul class="nav nav-second-level"> | ||
<li> | ||
<a href="#">Second Level Link</a> | ||
</li> | ||
<li> | ||
<a href="#">Second Level Link</a> | ||
</li> | ||
<li> | ||
<a href="#">Second Level Link<span class="fa arrow"></span></a> | ||
<ul class="nav nav-third-level"> | ||
<li> | ||
<a href="#">Third Level Link</a> | ||
</li> | ||
<li> | ||
<a href="#">Third Level Link</a> | ||
</li> | ||
<li> | ||
<a href="#">Third Level Link</a> | ||
</li> | ||
|
||
</ul> | ||
|
||
</li> | ||
</ul> | ||
</li> | ||
<li > | ||
<a class="active-menu" href="blank.html"><i class="fa fa-square-o fa-3x"></i> Blank Page</a> | ||
</li> | ||
</ul> | ||
|
||
</div> | ||
|
||
</nav> | ||
<!-- /. NAV SIDE --> | ||
<div id="page-wrapper" > | ||
<div id="page-inner"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<h2>{{ instance.identifier }}</h2> | ||
<h5>Welcome Jhon Deo , Love to see you back. </h5> | ||
|
||
</div> | ||
</div> | ||
<!-- /. ROW --> | ||
<hr /> | ||
|
||
</div> | ||
<!-- /. PAGE INNER --> | ||
</div> | ||
<!-- /. PAGE WRAPPER --> | ||
</div> | ||
<!-- /. WRAPPER --> | ||
<!-- SCRIPTS -AT THE BOTOM TO REDUCE THE LOAD TIME--> | ||
<!-- JQUERY SCRIPTS --> | ||
<script src="assets/js/jquery-1.10.2.js"></script> | ||
<!-- BOOTSTRAP SCRIPTS --> | ||
<script src="assets/js/bootstrap.min.js"></script> | ||
<!-- METISMENU SCRIPTS --> | ||
<script src="assets/js/jquery.metisMenu.js"></script> | ||
<!-- CUSTOM SCRIPTS --> | ||
<script src="assets/js/custom.js"></script> | ||
|
||
|
||
</body> | ||
</html> |