レコード一覧 (テンプレートリファレンス)/ref_temp/record/rv_contents_records
定数
ページ定数 | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
$page | . | resource_type | リソースタイプ | ||||||||
. | url | URL | |||||||||
. | url_path | URLパス | |||||||||
. | title | タイトル | |||||||||
レコード一覧 | |||||||||||
. | records | . | {i} | . | refid | レコードID | |||||
. | resource_type | リソースタイプ | |||||||||
. | url | URL | |||||||||
. | url_path | URLパス | |||||||||
. | title | レコードタイトル | |||||||||
. | description | 概要 | |||||||||
. | keywords | キーワード | |||||||||
. | robots | 検索エンジンロボット制御 | |||||||||
. | contents | . | {フィールドID} | レコードコンテンツ | |||||||
. | link_status | リンク設定 | |||||||||
. | owner | 所有ユーザー名 | |||||||||
. | modified | 更新日時 | |||||||||
. | modified_user | 更新ユーザー名 | |||||||||
. | created | 作成日時 | |||||||||
所属カテゴリ | |||||||||||
. | categories | . | {i} | . | refid | カテゴリID | |||||
. | name | カテゴリ名 | |||||||||
. | description | 概要 | |||||||||
. | keywords | キーワード | |||||||||
. | url | URL | |||||||||
. | url_path | URLパス |
サイト定数 | |||||||||
---|---|---|---|---|---|---|---|---|---|
$site | . | title | サイトタイトル | ||||||
. | description | 概要 | |||||||
. | keywords | キーワード | |||||||
. | robots | 検索エンジンロボット制御 | |||||||
. | header_logo | ヘッダーロゴ画像URL | |||||||
. | footer_text | フッター文 | |||||||
. | favicon | faviconURL | |||||||
ウィジェット定数 | |||||||||
$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 | 最終ログイン日時 |
プロトタイプ
<div class="jumbotron">
<h2>{?$page.title?}</h2>
</div>
<div class="panel panel-default col-xs-10 col-xs-offset-1">
<div class="panel-body">
<ul class="list-group">
{?foreach from=$page.records item=value?}
<a href="{?$value.url?}" class="list-group-item">
<h4 class="list-group-item-heading">{?$value.title?}</h4>
{?if $value.description?}<p class="list-group-item-text">{?$value.description?}</p>{?/if?}
{?foreach from=$value.categories item=val?}
<span class="label label-default">{?$val.name?}</span>
{?/foreach?}
</a>
{?/foreach?}
</ul>
{?$widgets.pagination?}
</div>
</div>