-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathlauncher.php
More file actions
84 lines (72 loc) · 2.44 KB
/
launcher.php
File metadata and controls
84 lines (72 loc) · 2.44 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
/**
* Template Name: Launcher Homepage
*/
?>
<?php
the_post();
get_header();
$placeholder_text = get_post_meta(get_the_ID(),"placeholder",true);
$button_label = get_post_meta(get_the_ID(),"button label",true);
$hint = get_post_meta(get_the_ID(),"hint",true);
?>
<body>
<div class="fh5co-loader"></div>
<aside id="fh5co-aside" role="sidebar" class="text-center home-side">
<h1 id="fh5co-logo">
<a href="<?php echo site_url(); ?>">
<?php bloginfo("name") ?>
</a>
</h1>
</aside>
<div id="fh5co-main-content">
<div class="dt js-dt">
<div class="dtc js-dtc">
<div class="simply-countdown-one animate-box" data-animate-effect="fadeInUp"></div>
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-lg-7">
<div class="fh5co-intro animate-box">
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
</div>
</div>
<div class="col-lg-7 animate-box">
<form action="#" id="fh5co-subscribe">
<div class="form-group">
<input type="text" class="form-control" placeholder="<?php echo esc_attr($placeholder_text); ?>">
<input type="submit" value="<?php echo esc_attr($button_label); ?>" class="btn btn-primary">
<p class="tip">
<?php echo esc_html($hint); ?>
</p>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="fh5co-footer">
<div class="row">
<div class="col-md-6">
<?php
if(is_active_sidebar("footer-left")){
dynamic_sidebar("footer-left");
}
?>
</div>
<div class="col-md-6 fh5co-copyright">
<?php
if(is_active_sidebar("footer-right")){
dynamic_sidebar("footer-right");
}
?>
</div>
</div>
</div>
</div>
<?php
get_footer();
?>