This repository has been archived by the owner on Jun 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (68 loc) · 2.99 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
<!doctype html>
<!-- Your HTML is great. Well structured, semantic class names, etc. Way to go. -->
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="HandheldFriendly" content="True">
<meta name="author" content="Keenan Payne">
<title>Sprout Social Challenge</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/site.min.css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="http://cdn.datatables.net/1.10.2/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.2/html5shiv.min.js"></script>
<script type="text/javascript" src="js/tweets.min.js"></script>
<script src="//use.typekit.net/zmq1jku.js"></script>
<script>try{Typekit.load();}catch(e){}</script>
</head>
<body>
<header class="site-header">
<img src="images/logo.png" alt="Sprout Social Logo" class="logo align-center">
</header><!-- .site-header -->
<div class="dashboard container">
<div class="tweets-container">
<div class="tweets-list">
<h3 class="dashboard-header">
Incoming Tweets
<small>Accross your Twitter account</small>
</h3>
<div class="well">
<div class="table-responsive">
<table class="table-sort">
<thead>
<tr>
<th scope="col"></th>
<th scope="col">Name</th>
<th scope="col">Message</th>
<th scope="col">Date</th>
<th scope="col"></th>
</tr>
</thead>
<tbody class="tweets-result"></tbody>
</table><!-- .table -->
</div><!-- .table-responsive -->
</div><!-- .well -->
</div><!-- .tweets-list -->
<div class="tweets-summary">
<h3 class="dashboard-header">Summary</h3>
<div class="well">
<!-- I would have used a <dl /> list here for cleaner markup and better accessibility -->
<div class="tweets-total clearfix">
<p class="float-left">Total Tweets</p>
<!-- A trick we often use is to add classes like js-* when we need to manipulate
a DOM element often but not style it. A .js-total-tweets class would save you
some DOM traversal in your JS. -->
<p class="total float-right">0</p>
</div>
<div class="tweets-follow-up clearfix">
<p class="float-left">Marked for Follow Up</p>
<!-- Same here: .js-total-followup -->
<p class="total float-right">0</p>
</div>
</div><!-- .well -->
</div><!--.tweets-summary -->
</div><!-- .tweets-container -->
</div><!-- .dashboard -->
</body>
</html>