-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
164 lines (145 loc) · 7.83 KB
/
home.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<div class="app-content" style="margin-top:20px;">
<div ui-butterbar></div>
<a href class="off-screen-toggle hide" data-toggle="class:off-screen" data-target=".app-aside" ></a>
<div class="app-content-body fade-in-up">
<!-- COPY the content from "tpl/" -->
<div class="hbox hbox-auto-xs hbox-auto-sm" ng-init="getGameList()">
<div class="col">
<div >
<!-- <div style="background:url(img/bg.jpg) center center; background-size:cover"> -->
<img src="img/bg.jpg" width="100%" height="100%">
</div>
<div class="padder" ng-if="show_searchResults">
<div class=" m-b padder-v">
<div class="m-b-lg ">
<div class="m-b-xs">
<a href class="h3 text-info"><strong> {{ $root.translation.HOME_SEARCH_GAMES }}</strong></a>
</div>
<br/>
<div class="m-b col-xs-2" ng-repeat="one_search in searched_gameLists" >
<img src={{one_search.game_photolink}} width="100%" />
<div style="text-align:center;">
<strong style="font-size:16px;" ng-if="$root.currentLanguage == 'en'">{{one_search.gamename.ga_en}}</strong>
<strong style="font-size:16px;" ng-if="$root.currentLanguage == 'ko'">{{one_search.gamename.ga_kr}}</strong>
<strong style="font-size:16px;" ng-if="$root.currentLanguage == 'cn'">{{one_search.gamename.ga_ch}}</strong>
</div>
<div style="text-align:center;">
({{one_search.game_online_count}})
</div>
</div>
</div>
</div>
</div>
<br style="clear: both;" ng-if="show_searchResults">
<div class="padder" ng-if="!show_searchResults">
<div class=" m-b padder-v">
<div class="m-b-lg ">
<div class="m-b-xs">
<a href class="h3 text-info"><strong> {{ $root.translation.HOME_POPULAR_GAMES }}</strong></a>
</div>
<br>
<div class="m-b col-xs-2" ng-repeat="one_popular in popular_gameLists">
<img src={{one_popular.game_photolink}} width="100%" />
<div style="text-align:center;">
<strong style="font-size:16px;" ng-if="$root.currentLanguage == 'en'">{{one_popular.gamename.ga_en}}</strong>
<strong style="font-size:16px;" ng-if="$root.currentLanguage == 'ko'">{{one_popular.gamename.ga_kr}}</strong>
<strong style="font-size:16px;" ng-if="$root.currentLanguage == 'cn'">{{one_popular.gamename.ga_ch}}</strong>
</div>
<div style="text-align:center;">
({{one_popular.game_online_count}})
</div>
</div>
</div>
</div>
</div>
<br style="clear: both;" ng-if="!show_searchResults">
<div class="padder" ng-if="!show_searchResults">
<div class=" m-b padder-v">
<div class="m-b-lg ">
<div class="m-b-xs">
<a href class="h3 text-info"><strong> {{ $root.translation.HOME_MY_GAMES }}</strong></a>
</div>
<br>
<div class="m-b col-xs-2" ng-repeat="one_my in my_gameLists" >
<img src={{one_my.game_photolink}} width="100%" />
<div style="text-align:center;">
<strong style="font-size:16px;" ng-if="$root.currentLanguage == 'en'">{{one_my.gamename.ga_en}}</strong>
<strong style="font-size:16px;" ng-if="$root.currentLanguage == 'ko'">{{one_my.gamename.ga_kr}}</strong>
<strong style="font-size:16px;" ng-if="$root.currentLanguage == 'cn'">{{one_my.gamename.ga_ch}}</strong>
</div>
<div style="text-align:center;">
({{one_my.game_online_count}})
</div>
</div>
</div>
</div>
</div>
<br style="clear: both;" ng-if="!show_searchResults">
<div class="padder" ng-if="!show_searchResults">
<div class=" m-b padder-v">
<div class="m-b-lg ">
<div class="m-b-xs">
<a href class="h3 text-info" style="text-align: left;"><strong> {{ $root.translation.HOME_NEWEST_GAMES }}</strong></a>
</div>
<br>
<div class="m-b col-xs-2" ng-repeat="one_new in newest_gameLists">
<img src={{one_new.game_photolink}} width="100%" />
<div style="text-align:center;">
<strong style="font-size:16px;" ng-if="$root.currentLanguage == 'en'">{{one_new.gamename.ga_en}}</strong>
<strong style="font-size:16px;" ng-if="$root.currentLanguage == 'ko'">{{one_new.gamename.ga_kr}}</strong>
<strong style="font-size:16px;" ng-if="$root.currentLanguage == 'cn'">{{one_new.gamename.ga_ch}}</strong>
</div>
<div style="text-align:center;">
({{one_new.game_online_count}})
</div>
</div>
</div>
</div>
</div>
<br style="clear: both;" ng-if="!show_searchResults">
</div>
<div class="col w-lg bg-light lter b-l bg-auto" ng-show="$root.is_logged">
<div class="wrapper">
<div class="panel b-a" ng-show="$root.showNotices.length != 0">
<h4 class="font-thin padder"><a href class="text-info"><strong>Notice</strong></a></h4>
<ul class="list-group">
<li class="list-group-item" ng-repeat="one_notice in showNotices">
<p ng-click="showNoticeDetails()"><em><a style="text-decoration: underline;">{{ one_notice.show_m }}</a></em></p>
<small class="block text-muted"><i class="fa fa-fw fa-clock-o"></i> {{ one_notice.time }}</small>
</li>
</ul>
</div>
<div class="panel b-a">
<h4 class="font-thin padder"><a href class="text-info"><strong>News</strong></a></h4>
<ul class="list-group">
<li class="list-group-item" ng-repeat="one_news in showNews">
<p ng-click="showNewsDetails(one_news)"><em><a style="text-decoration: underline;">{{ one_news.show_m }}</a></em></p>
<small class="block text-muted"><i class="fa fa-fw fa-clock-o"></i>{{ one_news.time }}</small>
</li>
</ul>
</div>
</div>
</div>
</div>
<div style="background: #271e1f; width: 100%; margin-top: 50px;">
<div style="display: table; margin: 0 auto; color: #c0bebe; padding-top: 28px; padding-right: 30px; padding-left: 30px;">
<p>{{$root.translation.ABOUT_US_TITLE}}<br/>
{{$root.translation.ABOUT_US_CONTENT1}}<br/>
{{$root.translation.ABOUT_US_CONTENT2}}<br/>
{{$root.translation.ABOUT_US_CONTENT3}}<br/>
{{$root.translation.ABOUT_US_CONTENT4}}<br/>
{{$root.translation.ABOUT_US_CONTENT5}}<br/>
</p>
</div>
<center>
<img src="img/footerLogo.png" style="width: 100%;" />
</center>
<div style="display: table; margin: 0 auto; color: #c0bebe; text-align: center;">
<p>{{$root.translation.ABOUT_US_CONTENT6}}<br/>
{{$root.translation.ABOUT_US_CONTENT7}}<br/>
</p>
</div>
</div>
<!-- PASTE above -->
</div>
</div>