-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
107 lines (100 loc) · 4.88 KB
/
index.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
<!--
dailyProgrammer - (c) Antonio Vivace, 2016-2017
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>Daily Programmer</title>
<!-- CSS -->
<style>
body {
word-wrap: break-word !important;
}
</style>
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="" id="styleSheet" type="text/css" rel="stylesheet" media="screen,projection"/>
<!--<link href="" id="styleSheet" type="text/css" rel="stylesheet" media="screen,projection"/>-->
<!-- Fonts -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<!-- NAVBAR -->
<nav id="nav" class="nav-extended grey lighten-1">
<div class="nav-wrapper">
<a style="font-size: 1.7em; font-weight: 300;" class="black-text brand-logo center">dailyProgrammer</a>
<!-- Mobile -->
<a href="#" onlick="sideNav()" data-activates="mobile-demo" class="black-text button-collapse"><i class="material-icons">menu</i></a>
<ul class="left hide-on-med-and-down">
<li> <a class='black-text dropdown-button btn-flat' href='#' data-activates='dropdown1'><i class="material-icons left">filter_list</i><b>Difficulty</b></a>
</li>
</ul>
<ul class="right hide-on-med-and-down">
<li class="active"><a class="black-text" href="index.html"><i class="material-icons left">view_agenda</i>Challenges</a></li>
<li><a class="black-text" href="settings.html"><i class="material-icons left">settings</i>Settings</a></li>
<li><a class="black-text" href="credits.html"><i class="material-icons left">info</i>About</a></li>
</ul>
<!-- Full-width -->
<ul class="side-nav" id="mobile-demo">
<div class="black-text" id="account"> Loading... </div>
<br>
<li class="sn-element"><a class="black-text" href="index.html"><i class="black-text sidebar-icons material-icons">view_agenda</i>Challenges</a></li>
<li class="sn-element"><a class="black-text" href="settings.html"><i class="black-text sidebar-icons material-icons">settings</i>Settings</a></li>
<li class="sn-element"><a class="black-text" href="credits.html"><i class="black-text sidebar-icons material-icons">info</i>About</a></li>
</ul>
</div>
<div class="nav-content">
<ul class="black-text tabs tabs-transparent hide-on-large-only">
<li class="tab col s3"><a onClick="showAll()" class="active" href="#">All</a>
</li>
<li class="tab col s3"><a onClick="showEasy()" href="#">Easy</a></li>
<li class="tab col s3"><a onClick="showMed()" href="#">Medium</a></li>
<li class="tab col s3"><a onClick="showHard()" href="#">Hard</a></li>
</ul>
</div>
</nav>
<!-- Difficulty filter dropdown structure -->
<ul id='dropdown1' class='dropdown-content'>
<li><a onClick="showAll()" href="#">all</a></li>
<li><a onClick="showEasy()" href="#">easy</a></li>
<li><a onClick="showMed()" href="#">medium</a></li>
<li><a onClick="showHard()" href="#">hard</a></li>
</ul>
<div class="row">
<div class="hide-on-med-and-down col m1 l1 xl2"></div>
<div class="col s12 m12 l10 xl8">
<div id="notification" class="card blue-grey darken-1">
<div class="card-content white-text">
<span class="card-title">Join our community!</span>
<p style="font-size: 16px">Thank you everybody! We are more than <b>6000</b> weekly users, let's build a community and discuss the challenges, compare solutions, provide feedback on this application and talk about nerd stuff.</p>
</div>
<div class="card-action">
<a target="_blank" href="https://t.me/dailyprogrammer">Telegram Chat</a>
<a target="_blank" href="https://discord.gg/feXdA9V">Discord Server</a>
<a onclick="hideN()" href="#">Hide message</a>
</div>
</div>
</div>
<div class="hide-on-med-and-down col m1 l1 xl2"></div>
</div>
<div id="all"></div>
<div id="loading"><br><center> <svg class="spinner" width="65px" height="65px" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
<circle class="path" fill="none" stroke-width="3" stroke-linecap="round" cx="33" cy="33" r="30"></circle>
</svg></center></div>
<div id="bottom"></div>
<!-- Scripts -->
<script src="js/styler.js"></script>
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
<script src="js/hammer.min.js"></script>
<script src="js/hammer-time.min.js"></script>
<script src="js/account.js"></script>
<script src="js/front.js"></script>
<script src="js/analytics.js"></script>
<script src="https://use.fontawesome.com/0eaed8d23a.js"></script>
</body>
</html>