-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·66 lines (57 loc) · 2.06 KB
/
index.php
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
<?php include "header.php" ?>
<!-- Example row of columns -->
<div class="row">
<div id="panel-seats" class="span7 init-center">
<div class="force-center">
<a id="btn_party" class="btnFill" data-field="party" href="#"><b>정당별</b><br>Party</a>
<a id="btn_ageclass" class="btnFill" data-field="ageclass" href="#"><b>연령별</b><br>Age</a>
<a id="btn_region1" class="btnFill" data-field="region1" href="#"><b>지역별</b><br>Region</a>
<a id="btn_sex_estimated" class="btnFill" data-field="sex_estimate" href="#"><b>성별</b><br>Gender</a>
<a id="btn_nofwins" class="btnFill" data-field="nofwins" href="#"><b>당선횟수별</b><br>n(Elected)</a>
</div>
<div style="margin-top:25px;padding-left:100px;">
<img id="the-comment" src='' style="text-align:center;height:40px;visibility:hidden;">
</div>
<div style="padding-left:100px;">
<img id="the-comment-fixed" src='img/cmt_click.png' style="text-align:center;height:30px;visibility:hidden;">
</div>
<?php include "nofwins.html" ?>
</div>
<div class="span4" id="panel-person" style="display: none;">
<h2 id="person-name">이름</h2>
<div style="margin:5px 0 5px 0;">
<img id="person-profile_image">
</div>
<table class="table table-condensed">
<tbody>
<tr>
<th>생년월일</th>
<td>
<span id="person-birthyear"></span>.
<span id="person-birthmonth"></span>.
<span id="person-birthday"></span>
</td>
</tr>
<tr>
<th>소속정당</th>
<td id="person-party"></td>
</tr>
<tr>
<th>학력</th>
<td id="person-edu_details"></td>
</tr>
<tr>
<th>경력</th>
<td id="person-experience"></td>
</tr>
<tr>
<th>뉴스</th>
<td>
<ul id="mashup"></ul>
</td>
</tr>
</tbody>
</table>
<p><a class="btn" href="#">타임라인에 추가하기 »</a></p>
</div>
<?php include "footer.php" ?>