Fix Footer

This commit is contained in:
rog1121 2014-03-01 18:50:31 -07:00
parent aa4cb8e8ee
commit d210537889
2 changed files with 21 additions and 40 deletions

View File

@ -1,17 +1 @@
<div class="row">
<div class="col-lg-12">
<div class="panel-body">
<font size="1">
<center>
<strong>MPOS</strong> by TheSerapher, available on <a href="https://github.com/MPOS/php-mpos">GitHub</a>
<br>
Please <strong>Donate</strong> to TheSerapher LTC: Lge95QR2frp9y1wJufjUPCycVsg5gLJPW8
<br>
<strong>Copyright &copy; 2014 Sebastian Grewe</strong>
</center>
</font>
</table>
</div>
</div>
</div>
Powered by <a href="https://github.com/MPOS/php-mpos">MPOS</a> | Donate to Lge95QR2frp9y1wJufjUPCycVsg5gLJPW8

View File

@ -33,33 +33,30 @@
<script src="{$PATH}/js/mpos.js"></script>
</head>
<body>
<div id="wrapper">
{include file="global/header.tpl"}
{include file="global/navigation.tpl"}
<div id="wrapper">
{include file="global/header.tpl"}
{include file="global/navigation.tpl"}
<div id="page-wrapper"><br />
{nocache}
{if is_array($smarty.session.POPUP|default)}
{section popup $smarty.session.POPUP}
<div class="{$smarty.session.POPUP[popup].TYPE|default:"alert alert-info"}">{$smarty.session.POPUP[popup].CONTENT nofilter}</div>
{/section}
<div id="page-wrapper"><br />
{nocache}
{if is_array($smarty.session.POPUP|default)}
{section popup $smarty.session.POPUP}
<div class="{$smarty.session.POPUP[popup].TYPE|default:"alert alert-info"}">{$smarty.session.POPUP[popup].CONTENT nofilter}</div>
{/section}
{/if}
{/nocache}
{if $CONTENT != "empty" && $CONTENT != ""}
{if file_exists($smarty.current_dir|cat:"/$PAGE/$ACTION/$CONTENT")}
{include file="$PAGE/$ACTION/$CONTENT"}
{else}
Missing template for this page
{/if}
{/nocache}
{if $CONTENT != "empty" && $CONTENT != ""}
{if file_exists($smarty.current_dir|cat:"/$PAGE/$ACTION/$CONTENT")}
{include file="$PAGE/$ACTION/$CONTENT"}
{else}
Missing template for this page
{/if}
{/if}
</div>
</div>
<div id="footer">
{/if}
<footer>
{include file="global/footer.tpl"}
</footer>
</div>
</div>
</body>
</html>