-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtemplate-homepage2017.php
46 lines (40 loc) · 1.57 KB
/
template-homepage2017.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
<?php
/*
Template Name: Homepage - Seattle DSA
*/
?>
<?php get_header(); ?>
<?php get_sidebar('alertmessage'); ?>
<div id="content">
<div class="sdsa-2017-frontispiece bg-light">
<article class="essay">
<div class="grid-container">
<div class="grid-x grid-margin-x">
<div class="plate card cell large-offset-6 large-6 medium-offset-3 medium-9 small-12"><!-- Begin Main Content-->
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php get_template_part( 'parts/loop', 'pagealt' ); ?>
<?php endwhile; endif; ?>
</div>
</div>
</div>
</article><!-- end article -->
<div class="diptych">
<div class="dsa-widgetRow">
<div class="grid-x grid-margin-x align-middle">
<?php get_sidebar('featuredhomepagearea'); ?>
<?php get_sidebar('emailhomepagearea'); ?>
<?php get_sidebar('beliefshomepagearea'); ?>
</div><!-- end cards -->
</div><!-- end bound -->
</div><!-- end diptych -->
</div><!-- end sdsa-2017-frontispiece -->
<div class="grid-x grid-margin-x grid-margin-y align-top bg-light">
<div id="dsa-events" class="cell large-6 small-12">
<?php get_template_part( 'parts/content', 'events' ); ?> <!-- see /parts/content-events.php -->
</div>
<div id="dsa-posts" class="cell large-6 small-12">
<?php get_template_part( 'parts/content', 'dispatches' ); ?> <!-- see /parts/content-dispatches.php -->
</div>
</div>
</div> <!-- end #content -->
<?php get_footer(); ?>