定数

BaseLayer定数
$MIDDLE MiddleLayer
$CONTENTS ContentsLayer
$CSS CSSタグ
$JS JSタグ
$META METAタグ
$FAVICON FAVICONタグ
ページ定数
$page . resource_type リソースタイプ
. url URL
. url_path URLパス
. title ページタイトル
サイト定数
$site . title サイトタイトル
. description 概要
. keywords キーワード
. robots 検索エンジンロボット制御
. header_logo ヘッダーロゴ画像URL
. footer_text フッター文
. favicon faviconURL
インスタンス定数
$instance . name インスタンス名
. refid インスタンスID
. plugin プラグインタイプ
ウィジェット定数
$widgets . {ウィジェットID} ウィジェット
ダッシュボード定数
$dashbords . {ダッシュボードID} ダッシュボード
ログインメンバー定数
$members . {メンバーインスタンスID} . refid メンバーID
. resource_type リソースタイプ
. url メンバーURL
. url_path メンバーURLパス
. login_id ログインID
. contents . {フィールドID} メンバーコンテンツ
所属グループ
. groups . {i} . refid グループID
. name グループ名
. created 作成日時
. last_logined 最終ログイン日時

プロトタイプ

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{?$page.title?} | {?$site.title?}</title>

{?$META?}
{?$CSS?}
{?$JS?}

<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->

</head>
<body>

<div class="container">

<!-- Static navbar -->
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<h1><a href="/">{?if $site.header_logo?}<img src="{?$site.header_logo?}" title="{?$site.title?}" alt="{?$site.title?}" />{?else?}{?$site.title?}{?/if?}</a></h1>
</div>
</div><!--/.container-fluid -->

</nav>

{?$MIDDLE?}


<hr>

<footer>
<p>{?$site.footer_text?}</p>
</footer>
</div>

</body>
</html>