-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwarpdrive.html
95 lines (86 loc) · 2.18 KB
/
warpdrive.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
<head>
<title>WarpDrive</title>
</head>
<body>
<div class="container">
<header>
<h1>Media list</h1>
<!-- add a form below the h1 -->
<form class="new-task">
<input type="text" name="firstName" placeholder="First name" />
<input type="text" name="lastName" placeholder="Last name" />
<input type="submit" name="submit" />
</form>
</header>
<table class="table">
<caption>Journalists writing about [insert keyword search]</caption>
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Publication</th>
<th>Title</th>
<th>Email</th>
<th>Phone</th>
</tr>
</thead>
<tbody>
{{#each journalists}}
{{> journalist}}
{{/each}}
</tbody>
</table>
<table class="table">
<caption>Events for [insert keyword search]</caption>
<thead>
<tr>
<th>Name</th>
<th>Date</th>
<th>Month</th>
<th>Deadline</th>
<th>Website</th>
<th>City</th>
<th>County</th>
<th>Continent</th>
<th>Description</th>
<th>Contact</th>
</tr>
</thead>
<tbody>
{{#each industryEvents}}
{{> industryEvent}}
{{/each}}
</tbody>
</table>
</div>
</body>
<template name="journalist">
<tr>
<td>{{firstName}}</td>
<td>{{lastName}}</td>
<td>{{publication}}</td>
<td>{{title}}</td>
<td>{{email}}</td>
<td>{{phone}}</td>
</tr>
</template>
<template name="industryEvent">
<tr>
<td>{{name}}</td>
<td>{{date}}</td>
<td>{{month}}</td>
<td>{{deadline}}</td>
<td>{{city}}</td>
<td>{{country}}</td>
<td>{{continent}}</td>
<td>{{details}}</td>
<td>{{contact}}</td>
</tr>
</template>
<template name="task">
<li>{{text}}</li>
</template>
<!--
<input type="text" name="lastName" placeholder="Last name" />
<input type="text" name="publication" placeholder="Publication" />
-->