-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
36 lines (29 loc) · 905 Bytes
/
home.php
File metadata and controls
36 lines (29 loc) · 905 Bytes
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
<?php get_header(); ?>
<div id="mission" class="row">
<p class="offset1 span12 columns">
The Panther Linux User Group is devoted to bringing Linux and open source
ideals to the Florida International University campus and student body
</p>
</div>
<div id="call" class="row">
<div class="offset3 span5 columns">
<h1>Join</h1>
<p>blah blah mailing list chatroom stuff like that</p>
</div>
<div class="span5 columns">
<h1>Meet</h1>
<p>yada yada come to this meeting at this time and bring beer and bitches</p>
</div>
</div>
<div id="content" class="row">
<?php while ( have_posts() ) : the_post() ?>
<div id="post-<?php the_ID() ?>" class="offset1 span12 columns">
<h2>
<a href="<?php the_permalink() ?>" title="" rel="bookmark"><?php the_title() ?></a>
</h2>
<?php the_excerpt('Read More') ?>
</div>
<?php comments_template() ?>
<?php endwhile; ?>
</div>
<?php get_footer(); ?>