-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout-template.php
112 lines (90 loc) · 4.06 KB
/
about-template.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?php
/*
Template Name: About Template
*/
include('includes/header.php');
?>
<div class="pusher">
<div class="wrapper">
<div class="main-content">
<div class="ui fluid container">
<div class="about">
<div class="ui text container">
<div class="home-text-slider">
<div class="home-text">
<h3><?php echo get_theme_mod('about-first-slider-headline');?></h3>
<div class="ui horizontal divider"></div>
<p>
<?php echo get_theme_mod('about-first-slider-paragraph-one-textarea');?>
</p>
<p>
<?php echo get_theme_mod('about-first-slider-paragraph-two-textarea');?>
</p>
</div> <!-- home-text -->
<div class="home-text">
<h3><?php echo get_theme_mod('about-second-slider-headline');?></h3>
<div class="ui horizontal divider"></div>
<p>
<?php echo get_theme_mod('about-second-slider-paragraph-one-textarea');?>
</p>
<p>
<?php echo get_theme_mod('about-second-slider-paragraph-two-textarea');?>
</p>
</div> <!-- home-text -->
<div class="home-text">
<h3><?php echo get_theme_mod('about-third-slider-headline');?></h3>
<div class="ui horizontal divider"></div>
<p>
<?php echo get_theme_mod('about-third-slider-paragraph-one-textarea');?>
</p>
<p>
<?php echo get_theme_mod('about-third-slider-paragraph-two-textarea');?>
</p>
</div> <!-- home-text -->
<div class="home-text">
<h3><?php echo get_theme_mod('about-fourth-slider-headline');?></h3>
<div class="ui horizontal divider"></div>
<p>
<?php echo get_theme_mod('about-fourth-slider-paragraph-one-textarea');?>
</p>
<p>
<?php echo get_theme_mod('about-fourth-slider-paragraph-two-textarea');?>
</p>
</div> <!-- home-text -->
</div> <!-- home-text-slider -->
</div> <!-- home-text-slider -->
<div class="arrows">
<p class="left-angel"><i class="caret left icon"></i></p>
<p class="right-angel"><i class="caret right icon"></i></p>
</div> <!-- arrows --->
</div> <!-- about -->
<div class="history">
<div class="ui stackable grid">
<div class="three wide middle aligned column">
<div class="ui text container">
<div class="bgs"><?php the_title(); ?></div>
</div>
</div>
<div class="ten wide column">
<div class="ui text container">
<div class="home-text">
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<?php the_content(); ?>
</p>
<?php endwhile; ?>
<?php else : ?>
<p><?php __('No Page Found'); ?></p>
<?php endif; ?>
</div> <!-- home-text -->
</div> <!-- home-text -->
</div> <!-- column -->
</div> <!-- ui grid -->
</div> <!-- home-text-slider -->
</div> <!-- history -->
</div> <!-- ui container -->
</div> <!-- main-content -->
</div> <!-- wrapper -->
</div> <!-- pusher -->
</div>
<?php include('includes/footer.php'); ?>