-
Notifications
You must be signed in to change notification settings - Fork 0
/
hola-mobile.html
58 lines (45 loc) · 1.61 KB
/
hola-mobile.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
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>¡Hola Mobile!</title>
</head>
<body>
<div class="container">
<!-- The justified navigation menu is meant for single line per list item.
Multiple lines will require custom code not provided by Bootstrap. -->
<div class="masthead">
<h3 class="text-muted">¡Hola Mobile!</h3>
</div>
<div class="row">
<div class="col-lg-12">
{{> main}}
</div>
</div>
<!-- Site footer -->
<footer class="footer">
<p>© 2016, by <a href="https://github.com/ph-7"><abbr title="Pierre-Henry Soria">pH7</abbr></a></p>
</footer>
</div> <!-- /container -->
</body>
<template name="main">
<form class="new-ads">
<div class="form-group">
<textarea rows="4" cols="50" name="description" class="form-control field-space" placeholder="Enter An Awesome Description Of What You Are Selling"></textarea>
<input type="text" name="text" class="form-control" placeholder="Yo! Enter What You Want/Need To Sell!" />
<!-- <input type="text" name="fullname" class="fullname form-control field-space" placeholder="Finally, Type Your Lovely Name & Press Enter!" /> -->
</div>
</form>
<ul>
{{#each hola}}
<li>
<button class="delete-ad">×</button>
<span class="text">
{{fullname}}<br />
<strong>{{text}}</strong><br />
{{description}}
</span>
</li>
{{/each}}
</ul>
</template>