
remove dependence on jQuery add image delete Admin ui fix for mobile image updates to new style update comments
80 lines
3.0 KiB
Smarty
80 lines
3.0 KiB
Smarty
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<!--
|
|
* app/resources/templates/example.tpl
|
|
*
|
|
* @version 5.0.1
|
|
* @author Joey Kimsey <Joey@thetempusproject.com>
|
|
* @link https://TheTempusProject.com
|
|
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>{TITLE}</title>
|
|
<meta name="description" content="{PAGE_DESCRIPTION}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="author" content="The Tempus Project">
|
|
{ROBOT}
|
|
<link rel="alternate" hreflang="en-us" href="alternateURL">
|
|
<link rel="icon" href="{BASE}images/favicon.ico">
|
|
<!-- Required CSS -->
|
|
<!-- Custom styles for this template -->
|
|
<link rel="stylesheet" href="{BASE}Templates/default/default.css">
|
|
<!-- Required JS -->
|
|
<script language="JavaScript" type="text/javascript" src="{BASE}JS/default.js"></script>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-inverse navbar-fixed-top">
|
|
<!--Brand and toggle should get grouped for better mobile display
|
|
but I had to account for additional menus-->
|
|
<div class="navbar-header">
|
|
<a href="{BASE}" class="navbar-brand">{SITENAME}</a>
|
|
<button type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target=".navbar-ex1-collapse" style="">
|
|
<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 class="container-fluid">
|
|
<div class="collapse navbar-collapse navbar-ex1-collapse">
|
|
{topNavLeft}
|
|
<div class="navbar-right">
|
|
<ul class=" navbar-nav">
|
|
{topNavRight}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<div class="container-fluid">
|
|
<div class="foot-pad">
|
|
{ISSUES}
|
|
<div class="row">
|
|
<div class="container">
|
|
{ERROR}
|
|
{NOTICE}
|
|
{SUCCESS}
|
|
{INFO}
|
|
</div>
|
|
</div>
|
|
{/ISSUES}
|
|
<div class="row">
|
|
<div class="container">
|
|
{CONTENT}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<footer>
|
|
{FOOT}
|
|
{COPY}
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
<!-- Bootstrap core JavaScript and jquery -->
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
|
|
<script src="{BASE}vendor/twbs/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
</body>
|
|
</html> |