-
Notifications
You must be signed in to change notification settings - Fork 0
/
front.php
58 lines (39 loc) · 1.34 KB
/
front.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
<?php
/*
Template Name: Front
*/
get_header(); ?>
<!-- Test The theme changes -->
<h1 class="tpl-name container">FRONTR TPL <?php c2c_reveal_template(); ?></h1>
<div id="hero" class="hero" role="banner">
<div class="container">
<div class="marketing">
<div class="tagline">
<h1><?php bloginfo( 'name' ); ?></h1>
<h4 class="subheader"><?php bloginfo( 'description' ); ?></h4>
<a role="button" class="download large button sites-button hide-for-small-only" href="https://github.com/timoti/Semantique">Download Semantique</a>
</div>
<div id="watch" class="watch">
<section id="stargazers" class="stargazers">
<a href="https://github.com/timoti/Semantique">1.5k stargazers</a>
</section>
<section id="twitter" class="twitter">
<a href="https://twitter.com/timgummerdesign">@timgummerdesign</a>
</section>
</div>
</div>
</div><!-- /container -->
</div> <!-- /hero -->
<?php do_action( 'semantique_before_content' ); ?>
<!-- calling out for callouts! -->
<?php if ( is_active_sidebar( 'frontpage-callouts-area' ) ) : ?>
<div class="frontpage-callouts-area-div">
<?php dynamic_sidebar( 'frontpage-callouts-area' ); ?>
</div><!-- frontpage-callouts-area -->
<?php endif; ?>
<?php endwhile;?>
<?php do_action( 'semantique_after_content' ); ?>
<div class="section-divider">
<hr />
</div>
<?php get_footer();