-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·109 lines (105 loc) · 4.37 KB
/
index.php
File metadata and controls
executable file
·109 lines (105 loc) · 4.37 KB
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
<?php
include("header.php");
?>
<main>
<div class = "splash">
<div>
<h1>We are Scriptum, and we are changing the web.</h1>
<p>Scriptum is a idea-sharing community that depends on high-quality content from thinkers like you. Once you have an account, you can freely write your ideas, from travel guides to geopolitical analysis to world-changing manifestos, and everything in between.</p>
</div>
<div class = "actionWrap">
<a class = "btn btnLight" href = "login.php">Login</a>
<a class = "btn" href = "signup.php">Signup</a>
</div>
</div>
<h1>Editor's choice</h1>
<div class = "choiceWrap"> <!-- collapsed by default when logged in -->
<div class = "choice">
<h2>NYC isn't what it used to be.</h2>
<a href = "post.php" class = "more">Read more ➞</a>
<p>So New York City used to be dirty and crimey. Far cry from today!</p>
</div>
<div class = "choice">
<h2>NYC isn't what it used to be.</h2>
<a href = "post.php" class = "more">Read more ➞</a>
<p>So New York City used to be dirty and crimey. Far cry from today!</p>
</div>
<div class = "choice">
<h2>NYC isn't what it used to be.</h2>
<a href = "post.php" class = "more">Read more ➞</a>
<p>So New York City used to be dirty and crimey. Far cry from today!</p>
</div>
</div>
<div class = "col2Wrap">
<div>
<h1>Top authors</h1>
<div class = "postPrevWrap">
<a class = "postPrev postPrev2" href = "#">
<h3 class = "postPrevTitle">John Sarbak</h3>
<p class = "postPrevDesc">Founder and stuff. Does fun things. Lord and savior.</p>
</a>
<a class = "postPrev postPrev2" href = "#">
<h3 class = "postPrevTitle">Roundup 2</h3>
<p class = "postPrevDesc">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</a>
<a class = "postPrev postPrev2" href = "#">
<h3 class = "postPrevTitle">Roundup 2</h3>
<p class = "postPrevDesc">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</a>
<a class = "postPrev postPrev2" href = "#">
<h3 class = "postPrevTitle">Roundup 2</h3>
<p class = "postPrevDesc">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</a>
<a class = "postPrev postPrev2" href = "#">
<h3 class = "postPrevTitle">Roundup 2</h3>
<p class = "postPrevDesc">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</a>
<a class = "postPrev postPrev2" href = "#">
<h3 class = "postPrevTitle">Roundup 2</h3>
<p class = "postPrevDesc">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</a>
<a class = "postPrev postPrev2" href = "#">
<h3 class = "postPrevTitle">Roundup 2</h3>
<p class = "postPrevDesc">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</a>
<a class = "postPrev postPrev2" href = "#">
<h3 class = "postPrevTitle">Roundup 2</h3>
<p class = "postPrevDesc">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</a>
</div>
</div>
<div>
<h1>Rising Scribos</h1>
<div class = "postPrevWrap">
<a class = "postPrev" href = "#">
<h3 class = "postPrevTitle">Science</h3>
<p class = "postPrevDesc">October 23 is MOLE DAY!</p>
<p class = "postPrevDate">by John Sarbak</p>
</a>
<a class = "postPrev" href = "#">
<h3 class = "postPrevTitle">Science</h3>
<p class = "postPrevDesc">October 23 is MOLE DAY!</p>
<p class = "postPrevDate">by John Sarbak</p>
</a>
<a class = "postPrev" href = "#">
<h3 class = "postPrevTitle">Science</h3>
<p class = "postPrevDesc">October 23 is MOLE DAY!</p>
<p class = "postPrevDate">by John Sarbak</p>
</a>
<a class = "postPrev" href = "#">
<h3 class = "postPrevTitle">Science</h3>
<p class = "postPrevDesc">October 23 is MOLE DAY!</p>
<p class = "postPrevDate">by John Sarbak</p>
</a>
<a class = "postPrev" href = "#">
<h3 class = "postPrevTitle">Science</h3>
<p class = "postPrevDesc">October 23 is MOLE DAY!</p>
<p class = "postPrevDate">by John Sarbak</p>
</a>
</div>
</div>
</div>
</main>
<?php
include("footer.php");
?>