-
Notifications
You must be signed in to change notification settings - Fork 1
/
people.php
33 lines (33 loc) · 949 Bytes
/
people.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
<?php
$pageTitle = "New article";
$current = "new";
include("inc/page/overlayHeader.php");
?>
<div id="content" class="wrapping">
<h1>People near you</h1>
<div id="morePeople">
<ul>
<?php
for ($j=0; $j<10; $j++) {
for ($i=1; $i<9; $i++) {
?>
<li class="wrapping">
<a href="">
<img src="i/profiles/<?php echo $i;?>.jpg" />
<span class="name">Jason Grant</span>
<span class="username">@flexewebs</span>
<p>This is a description of who this person is and what they are
all about and gives more insight into whether they are relevant
to this journalist.</p>
</a>
</li>
<?php
}
}
?>
</ul>
</div>
</div>
<?php
include("inc/page/overlayFooter.php");
?>