-
Notifications
You must be signed in to change notification settings - Fork 0
/
story1_tweets.html
186 lines (153 loc) · 4.62 KB
/
story1_tweets.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<html>
<head>
<title>SketchPad Demo</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src='jquery.min.js'></script>
<script type="text/javascript" src='script.js'></script>
</head>
<body>
<div id='header'>
<div id='name'>Sara's Collater</div>
<div id='logout'>log out</div>
</div>
<div id='storyhead'>
<div id='back'><a href='SaraPad1.html'>Back to stories</a></div>
<div id='storyname'>Story 1: Hacking Journalism; Deadline: June 8, 2014</div>
</div>
<div id='switch'>
Switch to storyline
</div>
<div id='storyline'>
<div id='storyline-title'>
Storyline: Hacking Journalism
</div>
<div id='storyline-tab-blocks'>
<div id='storyline-tabs'>
<div class='storyline-block'>
<div class='storyline-block-title'>Lede</div>
<div class='edit'><a>Edit</a></div>
</div>
<div class='storyline-block'>
<div class='storyline-block-title'>History</div>
<div class='edit'><a>Edit</a></div>
</div>
<div class='storyline-block'>
<div class='storyline-block-title'>Scope</div>
<div class='edit'><a>Edit</a></div>
</div>
<div class='storyline-block'>
<div class='storyline-block-title'>Impact</div>
<div class='edit'><a>Edit</a></div>
</div>
<div class='storyline-block'>
<div class='storyline-block-title'>Final Word</div>
<div class='edit'><a>Edit</a></div>
</div>
</div>
<div class='add-block'>
Add a section
<div class='urlbox'>
Section title: <input type="text" name="url" class='url section-title'><br>
</div>
<div class='urlbox'>
Content: <input type="text" name="notes" class='notes section-content'>
</div>
<div class='add-button add-section-button'>
Add
</div>
</div>
</div> <!--storyline tab block-->
</div>
</div> <!-- end of storyline-->
<div id='main'>
<div id='menu'>
<ul>
<li class='link-switch'>
<svg width="20" height="25">
<circle id='link' cx="10" cy="15" r="8" stroke="#00A4C5" stroke-width="2" fill="#00A4C5" />
</svg>
<span style='margin-top:-10px;'>Links</span>
</li>
<li class='tweet-switch'>
<svg width="20" height="25">
<circle id='tweet' cx="10" cy="15" r="8" stroke="#D26091" stroke-width="2" fill="none" />
</svg>
Tweets
</li>
<li>
<svg width="20" height="25">
<circle cx="10" cy="15" r="8" stroke="#5B5492" stroke-width="2" fill="none" />
</svg>
Data Sources
</li>
<li>
<svg width="20" height="25">
<circle cx="10" cy="15" r="8" stroke="#DDC85C" stroke-width="2" fill="none" />
</svg>
Pictures
</li>
<li>
<svg width="20" height="25">
<circle cx="10" cy="15" r="8" stroke="#6D6E71" stroke-width="2" fill="none" />
</svg>
Videos
</li>
</ul>
</div> <!--menu-->
<div class='add-tweet-expand'>
Search Tweets
<div class='urlbox'>
User: <input type="text" name="url" class='url'><br>
</div>
<div class='urlbox'>
Hashtag: <input type="text" name="url" class='url'><br>
</div>
<div class='urlbox'>
Results: <input type="text" name="notes" class='notes'>
</div>
<div class='add-tweet-button'>
Add
</div>
</div> <!--add link box end-->
<div class='add-link-expand'>
Add a link
<div class='urlbox'>
URL: <input type="text" name="url" class='url'><br>
</div>
<div class='urlbox'>
Notes: <input type="text" name="notes" class='notes'>
</div>
<div class='add-button'>
Add
</div>
</div> <!--add link box end-->
<article class='link'>
<h3><a href='story1.html'>Link 1: MIT Media Lab - Wikipedia</a></h3>
<p>
Here goes whatever you need to say about this link... Type some notes and have them all displayed under the link... <a>Edit</a>
</p>
</article>
<article class='link'>
<h3><a href='story1.html'>Link 2: MIT Press Coverage</a></h3>
<p>
Here goes whatever you need to say about this link... Type some notes and have them all displayed under the link... <a>Edit</a>
</p>
</article>
<article class='link'>
<h3><a href='story1.html'>Link 3: Guardian API</a></h3>
<p>
Here goes whatever you need to say about this link... Type some notes and have them all displayed under the link... <a>Edit</a>
</p>
</article>
<article class='link'>
<h3><a href='story1.html'>Link 4: Hackthon Culture in Cambridge</a></h3>
<p>
Here goes whatever you need to say about this link... Type some notes and have them all displayed under the link... <a>Edit</a>
</p>
</article>
</div> <!--end of main-->
<div id='fixed-upload'>
<img src='upload.png' width="70" height="235">
</div>
</body>
</html>