-
Notifications
You must be signed in to change notification settings - Fork 0
/
feature-home.php
29 lines (25 loc) · 1.05 KB
/
feature-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
<?php if ( is_front_page() ) { ?>
<header class="jumbotron masthead row">
<div class="span12">
<div class="inner">
<h1>Happy Loops</h1>
<p>Learn how to properly code the WordPress loop. Read about the loop. Understand the different ways to loop in WordPress. See examples. Be Happy.</p>
<p class="download-info">
<a href="#" class="btn btn-info btn-large">View Loop Examples</a>
<a href="#" class="btn btn-large">Read the Happy Blog</a>
</p>
</div>
<ul class="quick-links">
<li><a href="http://krogsgard.com">Brought to you by Brian Krogsgard</a></li>
<li class="divider">·</li>
<li>
<a href="https://twitter.com/krogsgard" class="twitter-follow-button" data-width="145px" data-link-color="#0069D6" data-show-count="false">Follow @krogsgard</a>
</li>
<li>
<a href="https://twitter.com/happyloops" class="twitter-follow-button" data-width="145px" data-link-color="#0069D6" data-show-count="false">Follow @happyloops</a>
</li>
</ul>
</div>
</header>
<?php // get_sidebar('header'); ?>
<?php } ?>