-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (33 loc) · 1.41 KB
/
index.html
File metadata and controls
40 lines (33 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="app.css" type="text/css" />
</head>
<body>
<div ng-app="app" ng-controller="mainController as ctrl">
<p>[参考情報] 全投稿テーマを投票の多い順に並べ替えして以下に出力します。</p>
<div ng-repeat="theme in ctrl.sortedThemes">
<div>
<span>{{theme.votes.length}}票</span>
<span>{{theme.title}}</span>
</div>
</div>
<p>以下に、スコアの高い順に、タイムテーブル案を出力します。</p>
<div ng-repeat="plan in ctrl.plans" class="plan">
<div class="caption">プラン {{$index+1}} - スコア {{plan.score}}</div>
<div ng-repeat="frame in plan.frames" class="frame">
<div>{{$index+1}}コマ目</div>
<div class="themes">
<div class="theme"><span class="header">Side A:</span> <span class="title">{{frame.theme1.title}}</span></div>
<div class="theme"><span class="header">Side B:</span> <span class="title">{{frame.theme2.title}}</span></div>
</div>
</div>
</div>
</div>
<script src="Scripts/jquery.min.js"></script>
<script src="Scripts/angular.min.js"></script>
<script src="app.js"></script>
</body>
</html>