index.html
4.19 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
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
<!DOCTYPE html>
<!--
Indus by TEMPLATE STOCK
templatestock.co @templatestock
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html lang="en" class="no-js">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Today's Issue</title>
<link rel="stylesheet" type="text/css" href="../static/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="../static/css/et-lineicon.css" />
<link rel="stylesheet" type="text/css" href="../static/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="../static/css/style.css" />
<link href='http://fonts.googleapis.com/css?family=Roboto:400,500,400italic,500italic,700' rel='stylesheet' type='text/css'>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="animationload">
<div class="loader">
Loading...
</div>
</div>
<section id="home">
<div class="content">
<div id="large-header" class="large-header">
<canvas id="demo-canvas"></canvas>
<div id="countdown_dashboard" class="home-main container">
<div class="row">
<div class="logo">
<img src="../static/images/logo-light.png" alt="logo" width="70">
<p>오 늘 의 학 교 는</p>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-3 col-xs-6 dash-glob" data-scroll-reveal="enter bottom move 25px, after 0.3s">
<div class="dash days_dash">
<div class="digit">{{ data.total }}</div>
<span class="dash_title">새 글</span>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6 dash-glob" data-scroll-reveal="enter bottom move 25px, after 0.3s">
<div class="dash hours_dash">
<div class="digit">{{ data.positive }}</div>
<span class="dash_title">긍정</span>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6 dash-glob" data-scroll-reveal="enter bottom move 25px, after 0.3s">
<div class="dash minutes_dash">
<div class="digit">{{ data.neutral }}</div>
<span class="dash_title">중립</span>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6 dash-glob" data-scroll-reveal="enter bottom move 25px, after 0.3s">
<div class="dash seconds_dash">
<div class="digit">{{ data.negative }}</div>
<span class="dash_title">부정</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="contact">
<!-- WordCloud FIG -->
</section>
<footer class="footer">
<div class="container text-center">
<div class="row">
<p class="copyright">Copyright© 2016 <a href="http://templatestock.co">Template Stock</p>
</div>
</div>
</footer>
<!-- JAVASCRIPTS -->
<script src="../static/js/jquery.min.js"></script>
<script src="../static/js/jquery.stellar.min.js"></script>
<script src="../static/js/jquery.nicescroll.min.js"></script>
<script src="../static/js/animated.js"></script>
<script src="../static/js/main.js"></script>
</body>
</html>