forked from gdm-201516-mmp2/nmdad1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (93 loc) · 3.29 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
<!DOCTYPE html>
<html lang="nl-be" dir="ltr">
<head>
<meta charset="UTF-8">
<title>Tweety - Tweets Application | NMDADI | drdynscript</title>
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1">
<link rel="stylesheet" href="css/vendor/normalize.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/grid.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-custom.js"></script>
</head>
<body>
<div class="grid__wrapper header-wrapper">
<div class="grid__container">
<div class="grid__row">
<div class="grid__column-bp1-12">
<header>
<section class="header__logo">
<h1><span>Tweety</span></h1>
<h2>Tweets application for the mass</h2>
</section>
</header>
</div>
</div>
</div>
</div>
<div class="grid__wrapper tweet-create-wrapper">
<div class="grid__container">
<div class="grid__row">
<div class="grid__column-bp1-12">
<div class="tweet-create">
<form id="tweet-create-frm">
<fieldset>
<legend>Create a new Tweet</legend>
<textarea id="txtTweetContent" name="txtTweetContent" rows="4" cols="50" placeholder="Write your tweet here ..." maxlength="280" minlength="4" required="required"></textarea>
<div class="rdbg-mood">
<input type="radio" name="mood" value="Neutral" id="mood-neutral" required="required"/>
<label for="mood-neutral">Neutral mood</label>
<input type="radio" name="mood" value="Happy" id="mood-happy" />
<label for="mood-happy">Happy mood</label>
<input type="radio" name="mood" value="Sad" id="mood-sad" />
<label for="mood-sad">Sad mood</label>
</div>
<button type="submit" class="btn btn--primary"><span class="fa fa-edit"></span>Tweet</button>
<span class="txtAmountChars">280</span>
</fieldset>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="grid__wrapper">
<div class="grid__container">
<div class="grid__row">
<div class="grid__column-bp1-12">
<section class="tweets">
</section>
</div>
</div>
</div>
</div>
<!-- Handlebars Template -->
<script id="tweets-template" type="text/x-handlebars-template">
{{#if this}}
<ul>
{{#each this}}
<li class="tweet tweet-mood-{{this.Mood}}" data-id="{{this.Id}}">
<span class="tweet__createdAt">{{timeToTwitterDateTimeString this.CreatedAt}}</span>
<span class="tweet__content">{{this.Content}}</span>
<span class="tweet__edit-form"></span>
<a href="#" title="Remove tweet" class="tweet__remove">
<span class="fa fa-remove"></span>
</a>
<a href="#" title="Edit tweet" class="tweet__edit">
<span class="fa fa-edit"></span>
</a>
</li>
{{/each}}
</ul>
{{else}}
<p>No tweets present!</p>
{{/if}}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.0.3/handlebars.min.js"></script>
<script src="js/utilities.js"></script>
<script src="js/helpers.js"></script>
<script src="js/models.js"></script>
<script src="js/services.js"></script>
<script src="js/main.js"></script>
</body>
</html>