-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-home.php
67 lines (59 loc) · 2.46 KB
/
page-home.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
65
66
67
<?php
/*
Template Name: Home Page
*/
?>
<?php get_header('home'); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<section class="hero">
<?php the_content(); ?>
<h2 class="video-title">Watch our video:</h2>
<div class="movie-wrapper">
<iframe class="clf-movie" src="//www.youtube.com/embed/3DQAvk9Jrc0" frameborder="0" allowfullscreen></iframe>
</div>
</section>
<?php endwhile; endif; ?>
<?php get_sidebar(); ?>
<div id="inner-content" class="wrap clearfix">
<section class="entry-content events-classes clearfix" itemprop="articleBody">
<header class="article-header index-hero">
<h2><?php the_field('events_&_classes_header_text'); ?></h2>
</header> <!-- end article header -->
<footer>
<a href="http://www.eventbrite.com/o/the-code-liberation-foundation-4653154663"><?php the_field('events_&_classes_link'); ?></a> <!-- - <a href="#"><?php the_field('video_tutorials_link'); ?></a> -->
</footer>
</section> <!-- end article section -->
<section class="entry-content about clearfix" itemprop="articleBody">
<header class="article-header index-hero">
<h2><?php the_field('about_our_classes_header_text'); ?></h2>
</header> <!-- end article header -->
<article class="area-content">
<?php the_field('about_our_classes_content'); ?>
</article>
<footer>
<ul>
<li>
<a href="<?php echo home_url(); ?>/about"><?php the_field('about_our_teachers_link'); ?></a>
</li>
<li>
<a href="<?php echo home_url(); ?>/blog"><?php the_field('blog_link'); ?></a>
</li>
</ul>
<span class="fine-print"><?php the_field('about_our_classes_fine_print'); ?></span>
</footer>
</section> <!-- end article section -->
<section class="entry-content social-media clearfix" itemprop="articleBody">
<header class="article-header index-hero">
<h2><?php the_field('social_media_header_text'); ?></h2>
</header> <!-- end article header -->
<article class="area-content">
<?php the_field('social_media_twitter_shortcode'); ?>
</article>
<footer>
<?php the_field('social_media_links'); ?>
</footer>
</section> <!-- end article section -->
</div> <!-- end #inner-content -->
</div> <!-- end #content -->
<?php get_footer('home'); ?>