-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfront-page.php
64 lines (47 loc) · 2.4 KB
/
front-page.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
62
63
64
<?php
// Tweak the excerpt length
add_filter( 'excerpt_length', function( $excerpt_length ) {
return 60;
});
// Tweak the excerpt more
add_filter( 'excerpt_more', function( $excerpt_more ) {
return ' …';
});
get_header();
wpcampus_2016_print_main_callout();
?>
<h2>What Is WPCampus?</h2>
<p>A two-day event with <a href="/schedule/">38 sessions from 41 speakers</a> covering a variety of topics, all dedicated to the confluence of WordPress in higher education.</p>
<p>The inaugural WPCampus conference took place July 15-16 at <a href="http://usfsm.edu/">The University of South Florida Sarasota-Manatee</a> in beautiful Sarasota, Florida.</p>
<h2>Who Was There?</h2>
<p>Members of the higher education and WordPress communities from all over the United States, Canada, and the United Kingdom. WPCampus events are open to faculty, staff, students, and even professionals outside full time higher education.</p>
<p><a href="/attendees/">Over 60 institutions</a> were represented from the United States and Canada.</p>
<div class="callout primary" style="text-align:center;">
<h2>WPCampus Session Recordings Available</h2>
<p><strong>All WPCampus sessions were recorded and will be archived on our website.</strong> We have started uploading them to the website so be sure to <a href="/schedule/" style="color:#003366;"><strong>visit the WPCampus schedule</strong></a> to check them out.</p>
</div>
<?php
/*<div class="callout secondary" style="text-align:center;">
<h2>Will Your Campus Be WPCampus 2017?</h2>
<p><strong><a href="https://wpcampus.org/apply-to-host/">Our hosting application</a> will open Monday, August 22, 2016 and close Friday, October 28, 2016</strong></p>
<p>The WPCampus planning team is already hard at work preparing for next year's conference. If you would like your campus to be considered for 2017, please start rounding up any questions you might have and begin talking to campus administrators.</p>
</div>*/
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_title( '<h2 class="entry-title"><a href="' . get_permalink() . '">', '</a></h2>' );?>
</header><!-- .entry-header -->
<?php
the_excerpt( sprintf(
'Continue reading<span class="screen-reader-text"> "%s"</span>',
get_the_title()
));
?>
</article>
<?php
endwhile;
endif;
get_footer();