-
Notifications
You must be signed in to change notification settings - Fork 1
/
brandnew.php
47 lines (41 loc) · 1.34 KB
/
brandnew.php
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
<?php
$pageTitle = "New article";
$current = "brandnew";
include("inc/page/header.php");
include("inc/data.php");
include("inc/page/navigation.php");
?>
<div class="column75">
<form>
<div id="message">
<p>These are the suggestions for what you could write about from this
area right now which are not covered by other publishers yet.</p>
</div>
<article contenteditable="true" class="wrapping">
<h1>Judges from Google and Guardian disect the hacks</h1>
<p>Geolocation hack</p>
<p>Art and mood audio</p>
<p>Journalist collaboration tool</p>
<p>Articlr</p>
<p>Prizes and awards</p>
<p>2 day hack day</p>
<p>Guardian mashup</p>
</article>
<div class="actions">
<input type="submit" value="Publish" class="large awesome green primary" />
<input type="button" value="Save" class="medium awesome blue primary" />
<input type="button" value="Cancel" class="small awesome yellow secondary" />
</div>
</form>
</div>
<div class="column25">
<?php
include("inc/interestedIn.php");
include("inc/relatedTweets.php");
include("inc/peopleNearby.php");
include("inc/relatedArticles.php");
?>
</div>
<?php
include("inc/page/footer.php");
?>