-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9085c64
commit a262832
Showing
3 changed files
with
104 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
{{ if novel.story }} | ||
<h2>あらすじ</h2> | ||
<p>{{ novel.story.replaceAll('\n', '<br>') }}</p> | ||
{{ /if }} | ||
|
||
<h2>作品情報</h2> | ||
<table> | ||
<tr> | ||
<td>状態</td> | ||
<td> | ||
{{if novel.end === 0}} | ||
完結済 | ||
{{if novel.novel_type === 1}} | ||
(全{{novel.general_all_no}}エピソード) | ||
{{else}} | ||
(短編) | ||
{{/if}} | ||
{{else}} | ||
連載中 | ||
{{if novel.novel_type === 1}} | ||
(全{{novel.general_all_no}}エピソード) | ||
{{/if}} | ||
{{/if}} | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>ジャンル</td> | ||
<td>{{genreText}}</td> | ||
</tr> | ||
<tr> | ||
<td>キーワード</td> | ||
<td>{{ novel.keyword }}</td> | ||
</tr> | ||
<tr> | ||
<td>最終掲載</td> | ||
<td>{{ novel.general_lastup }}</td> | ||
</tr> | ||
<tr> | ||
<td>Nコード</td> | ||
<td>{{ novel.ncode }}</td> | ||
</tr> | ||
<tr> | ||
<td>読了時間</td> | ||
<td>約{{ novel.time }}分({{ novel.length.toLocaleString() }}文字)</td> | ||
</tr> | ||
</table> | ||
<br> | ||
<table> | ||
{{ if novel.weekly_unique }} | ||
<tr> | ||
<td>週別ユニークユーザ</td> | ||
<td>{{ novel.weekly_unique < 100 ? '100未満' : novel.weekly_unique.toLocaleString() }}</td> | ||
</tr> | ||
{{ /if }} | ||
<tr> | ||
<td>総合ポイント</td> | ||
<td>{{ novel.global_point.toLocaleString() }} pt</td> | ||
</tr> | ||
<tr> | ||
<td>評価人数</td> | ||
<td>{{ novel.all_hyoka_cnt.toLocaleString() }} 人</td> | ||
</tr> | ||
<tr> | ||
<td>評価ポイント</td> | ||
<td>{{ novel.all_point.toLocaleString() }} pt</td> | ||
</tr> | ||
<tr> | ||
<td>ブックマーク</td> | ||
<td>{{ novel.fav_novel_cnt.toLocaleString() }} 件</td> | ||
</tr> | ||
</table> | ||
|
||
{{ if novel.sasie_cnt > 0 }} | ||
<h2>イラスト</h2> | ||
<p>挿絵数:{{ novel.sasie_cnt }}枚</p> | ||
{{ /if }} |
This file was deleted.
Oops, something went wrong.