-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmember-index.php
43 lines (33 loc) · 1.6 KB
/
member-index.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
<?php
define('AUTH_REQUIRED', True);
require_once('includes/header.php');
?>
<!-- This is the login controls holder -->
<!-- End of the login controls holder -->
<!-- Here's the box for the main article -->
<div class="articleboxouter">
<!-- Here's where you can place ur content -->
<div class="articleboxinner2">
<!-- The flower image. 300px by 200px -->
<img src="images/help.jpg" alt="help" class="mainpiccontrol" />
<!-- The title for this article -->
<span class="articleheader">Anarchy Online</span>
<br />
<!-- The preview content -->
Omni-R&D announces a breakthrough in insurance technology that could have profound importance for the use of cell scanning and soul transferals in environments with low notum concentrations.
The existence of the soul was proven in 28906. Since the discovery of being able to transfer this life force to cloned bodies in 28920, scientists have been trying to find a way to use this knowledge to stave off death, and indeed succeeded when the insurance system was perfected on Rubi-Ka in 29436.
<br />
<!-- Link to the full article, an arrow and a text link -->
<span class="readmore">
<a href="#">
<img src="images/arrow.png" alt="read more" class="noborder" />
</a>
<a href="#">Read More</a>
<br />
</span>
</div>
<!-- End of content holder -->
</div>
<?php
require_once('includes/footer.php');
?>