[開発] ニュース系の一覧開発
書き方
<div class="news-list-entry-point"> "outputBasename": 出力先(ベースネーム), "categoryBasename": カテゴリ(ベースネーム), "length": 1ページ当たりの件数, "pagination": ページャー表示の可否 </div>
例1
パラメータ | 値 |
---|---|
outputBasename | press |
length | 20 |
pagination | true |
{ "outputBasename": "press", "length": 20, "pagination": true }
例2
パラメータ | 値 |
---|---|
outputBasename | press |
length | 5 |
pagination | false |
{ "outputBasename": "press", "length": 5, "pagination": false }
例3
パラメータ | 値 |
---|---|
outputBasename | press |
categoryBasename | news-5 |
length | 5 |
pagination | false |
{ "outputBasename": "press", "categoryBasename": "news-5", "length": 5, "pagination": false }