-
Notifications
You must be signed in to change notification settings - Fork 1
/
discussions.html
116 lines (109 loc) · 5.73 KB
/
discussions.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
<html>
<head>
<title>Dashboard | MAI H00N HACKER</title>
<!-- Meta Data -->
<meta content="width=device-width, initial-scale=1" name="viewport" />
<!-- Font -->
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<!-- Icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<!-- CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/login.css">
</head>
<body>
<nav class="navbar general-navbar navbar-light">
<a class="navbar-brand">MAI H00N HACKER</a>
<div class="center-all">
<button class="myBtn cursor">Logout</button>
</div>
</nav>
<div class="grey-bg">
<div class="container">
<div class="row">
<!-- SORTING / FILTERS -->
<div class="col-md-3">
<div id ="sorter-filter">
<a class="no-decor" href="question.html">
<div class="tab cursor">
<h6 style="padding: 15px 20px;">Problem</h6>
</div>
</a>
<a class="no-decor" href="leaderboard.html">
<div class="tab cursor">
<h6 style="padding: 15px 20px;">Leaderboard</h6>
</div>
</a>
<a class="no-decor" href="submissions.html">
<div class="tab cursor">
<h6 style="padding: 15px 20px;">Submissions</h6>
</div>
</a>
<a class="no-decor" href="discussions.html">
<div class="card border-light mb-3 sort">
<h6 style="padding: 5px 20px 0 20px;">Discussions</h6>
</div>
</a>
<div class="card border-light mb-3 sort">
<div class="card-body">
<div class="card-title">Details</div><hr>
<small class="muted-text">Author: Author Name</small> <br>
<small class="muted-text">Difficulty: Medium</small> <br>
<small class="muted-text">Max Score: 30</small> <br>
<small class="muted-text">Success Rate: 100%</small> <br>
<!-- <hr>
<small class="muted-text">Rate this challenge:</small> <br> <br> -->
</div>
</div>
</div>
</div>
<!-- Question -->
<div class="col-md-9">
<div class="card border-light mb-3 question">
<div class="row">
<div class="col-md-12">
<div class="card-body">
<h3 class="card-title">Challenge Title</h3><hr>
<div id="disqus_thread"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<h3>Developed By <a target="_blank" href="http://harshsaglani.byethost13.com">Harsh Saglani</a></h3>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="assets/js/jquery-scrolltofixed-min.js"></script>
<script>
$(document).ready(function() {
$('#sorter-filter').scrollToFixed({ marginTop: 10, limit: function() {
var limit = $('.footer').offset().top - $('#sorter-filter').height() - 30;
return limit;
}, dontSetWidth: false, removeOffsets: true});
});
</script>
<script>
/**
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
/*
var disqus_config = function () {
this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
*/
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = 'https://YOUR_SHORT_NAME.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</body>
</html>