-
Notifications
You must be signed in to change notification settings - Fork 19
/
template-lite.tpl
147 lines (138 loc) · 6.08 KB
/
template-lite.tpl
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
<html>
<head>
<title>@{{username}}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body style="background-color:#444">
<div class="container" style="margin-top:2em;">
<nav class="navbar navbar-inverse">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#">{{username}}</a>
</div>
</div>
</nav>
<div class="col-sm-6">
<div class="panel panel-primary">
<div class="panel-heading">
<h3>Not Followed Back</h3>
</div>
<div class="panel-body">
<table class="table table-hover">
<thead>
<tr>
<th>Full Name</th>
<th>User Name</th>
<th>Image</th>
</tr>
</thead>
<tbody>
{{#notback}}
<tr>
<td>{{full_name}}</td>
<td>{{username}}</td>
<td><img src="{{profile_pic_url}}" class="img img-responsive center-block img-circle" style="width:50px; height:50px;" /></td>
</tr>
{{/notback}}
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div class="panel panel-warning">
<div class="panel-heading">
<h3>New Followers :)</h3>
</div>
<div class="panel-body">
<table class="table table-hover">
<thead>
<tr>
<th>Full Name</th>
<th>User Name</th>
<th>Image</th>
</tr>
</thead>
<tbody>
{{#newfollowers}}
<tr>
<td>{{full_name}}</td>
<td>{{username}}</td>
<td><img src="{{profile_pic_url}}" class="img img-responsive center-block img-circle" style="width:50px; height:50px;" /></td>
</tr>
{{/newfollowers}}
</tbody>
</table>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div class="panel panel-warning">
<div class="panel-heading">
<h3>New Unfollowers :(</h3>
</div>
<div class="panel-body">
<table class="table table-hover">
<thead>
<tr>
<th>Full Name</th>
<th>User Name</th>
<th>Image</th>
</tr>
</thead>
<tbody>
{{#newunfollowers}}
<tr>
<td>{{full_name}}</td>
<td>{{username}}</td>
<td><img src="{{profile_pic_url}}" class="img img-responsive center-block img-circle" style="width:50px; height:50px;" /></td>
</tr>
{{/newunfollowers}}
</tbody>
</table>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="panel panel-warning">
<div class="panel-heading">
<h3>New Followings</h3>
</div>
<div class="panel-body">
<table class="table table-hover">
<thead>
<tr>
<th>Full Name</th>
<th>User Name</th>
<th>Image</th>
</tr>
</thead>
<tbody>
{{#newfollowings}}
<tr>
<td>{{full_name}}</td>
<td>{{username}}</td>
<td><img src="{{profile_pic_url}}" class="img img-responsive center-block img-circle" style="width:50px; height:50px;" /></td>
</tr>
{{/newfollowings}}
</tbody>
</table>
</div>
</div>
</div>
</div>
<nav class="navbar navbar-inverse navbar-static-bottom">
<div class="container">
<h4 class="text-center" style="color:white; margin-top:15px;">btyb Cagri Ozkan</h4>
</div>
</nav>
</div>
</body>
</html>