-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50a73a7
commit 7b8057e
Showing
68 changed files
with
5,574 additions
and
14 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
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,38 @@ | ||
<?php | ||
/** | ||
* TSW Details NanoBlog | ||
* Author: Larry Judd Oliver @tradesouthwest | http://tradesouthwest.com/details | ||
* Contributors in readme.md file | ||
* License in LICENSE.md file | ||
*/ | ||
include 'header.php'; | ||
?> | ||
|
||
<title>Dev App for Looping Details</title> | ||
</head> | ||
<body> | ||
|
||
<?php include 'admin-nav.php'; ?><div class="clearfix"></div> | ||
|
||
<div class="container"> | ||
<div class="row"> | ||
|
||
<header class="col-md-12 text-center"> | ||
<h3 class="page-header">Admin Control Panel</h3> | ||
</header> | ||
|
||
</div> | ||
</div> | ||
|
||
<div class="container"> | ||
<div class="row"> | ||
|
||
<div class="col-md-12 col-sm-12"> | ||
|
||
<?php include 'details-list.php'; ?> | ||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
<?php include 'footer.php'; ?> |
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,24 @@ | ||
<nav class="navbar navbar-default navbar-fixed-top" role="navigation"> | ||
<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> | ||
<a class="navbar-brand" href="index.php"><img src="../lib/img/tsw-logoem.png" /></a> | ||
</div> | ||
<div id="navbar" class="navbar-collapse collapse"> | ||
<ul class="nav navbar-nav grad-menu"> | ||
<div class="btn-group btn-group-sm list-inline" id="admin-nav-top"> | ||
<li><a class="btn btn-default" href="../index.php" title="forms">Read Articles</a></li> | ||
<li><a class="btn btn-default" href="form-in.php" title="forms">Write Article</a></li> | ||
<li><a class="btn btn-default" href="admin-list.php" title="forms">List Articles</a></li> | ||
<li><a class="btn btn-default" href="index.php" title="lists">Config</a></li> | ||
</div> | ||
</ul> | ||
<h1 id="nav-header-title" class="nopadding"><?php esc( $det_name ); ?></h1> | ||
</div><!--/.nav-collapse --> | ||
</div><!--/.container-fluid --> | ||
</nav> |
Oops, something went wrong.