3-5
templates/index.tpl
<!DOCTYPE html>
<html lang="zh-Hant">
<!-- 引入檔頭 -->
{include file="head.tpl"}
<body>
<div class="container">
<h1 class="page-header">
<i class="fa fa-address-book-o" aria-hidden="true"></i>
<a href="index.php">{$page_title}</a>
</h1>
<div class="row">
<div class="col-sm-8 col-md-9">
{if $op=="regist"}
{include file="regist_form.tpl"}
{else}
<h2>{$content}</h2>
{/if}
</div>
<div class="col-sm-4 col-md-3">
<h2>嗨!{$name}</h2>
<!-- 引入登入表單 -->
{if $group=="admin"}
{include file="side_tools.tpl"}
{else}
{include file="side_login.tpl"}
{/if}
</div>
</div>
</div>
<!--BootStrap js-->
<script src="class/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>