forked from reidab/osbp_wordpress
-
Notifications
You must be signed in to change notification settings - Fork 2
/
frontpage.php
61 lines (53 loc) · 3.11 KB
/
frontpage.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/*
Template Name: Front Page
*/
?>
<?php get_header() ?>
<div id="frontpage_info">
<div class='inner_container' style="z-index:10">
<h2>Connecting developers across projects, languages, and backgrounds.</h2>
<?php if ( is_active_sidebar( 'frontpage' ) ) : ?>
<div id="frontpage_sidebar">
<?php dynamic_sidebar( 'frontpage' ); ?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'sponsors' ) ) : ?>
<div id="frontpage_callouts">
<div id='sponsors-callout'>
<?php dynamic_sidebar( 'sponsors' ); ?>
</div>
</div>
<?php endif; ?>
<div id="frontpage_content">
<?php the_content(); ?>
</div>
</div>
</div>
<div class='inner_container' style="z-index:1">
<div id="frontpage_blog">
<h2 id='latest_news_head'>Latest Blog Post <a href='/blog'>View more posts</a></h2>
<?php query_posts('showposts=1'); ?>
<?php while ( have_posts() ) : the_post() ?>
<div id="post-<?php the_ID() ?>" class="<?php sandbox_post_class() ?>">
<h2 class="entry-title"><a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'sandbox'), the_title_attribute('echo=0') ) ?>" rel="bookmark"><?php the_title() ?></a></h2>
<div class="entry-date"><abbr class="published" title="<?php the_time('Y-m-d\TH:i:sO') ?>"><?php unset($previousday); printf( __( '%1$s – %2$s', 'sandbox' ), the_date( '', '', '', false ), get_the_time() ) ?></abbr></div>
<div class="entry-content">
<?php the_content( __( 'Read More <span class="meta-nav">»</span>', 'sandbox' ) ) ?>
<?php wp_link_pages('before=<div class="page-link">' . __( 'Pages:', 'sandbox' ) . '&after=</div>') ?>
</div>
<div class="entry-meta">
<span class="author vcard"><?php printf( __( 'By %s', 'sandbox' ), '<a class="url fn n" href="' . get_author_link( false, $authordata->ID, $authordata->user_nicename ) . '" title="' . sprintf( __( 'View all posts by %s', 'sandbox' ), $authordata->display_name ) . '">' . get_the_author() . '</a>' ) ?></span>
<span class="meta-sep">|</span>
<span class="cat-links"><?php printf( __( 'Posted in %s', 'sandbox' ), get_the_category_list(', ') ) ?></span>
<span class="meta-sep">|</span>
<?php the_tags( __( '<span class="tag-links">Tagged ', 'sandbox' ), ", ", "</span>\n\t\t\t\t\t<span class=\"meta-sep\">|</span>\n" ) ?>
<?php edit_post_link( __( 'Edit', 'sandbox' ), "\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t<span class=\"meta-sep\">|</span>\n" ) ?>
<span class="comments-link"><?php comments_popup_link( __( 'Comments (0)', 'sandbox' ), __( 'Comments (1)', 'sandbox' ), __( 'Comments (%)', 'sandbox' ) ) ?></span>
</div>
</div><!-- .post -->
<?php comments_template() ?>
<?php endwhile; ?>
</div>
</div>
<?php get_footer() ?>