forked from nmcardoso/splus-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
front-page.php
87 lines (72 loc) · 2.45 KB
/
front-page.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
<?php
get_header();
get_template_part('partials/navbar');
?>
<section class="hero">
<div class="hero-inner">
<h1><?php echo bloginfo('title'); ?></h1>
<h2><?php echo bloginfo('description'); ?></h2>
</div>
<a href="#home" data-smooth-scroll class="btn">EXPLORE</a>
</section>
<main id="home">
<?php
$p = get_post();
echo do_shortcode($p->post_content);
?>
<?php /*
<section class="home-gallery mt-5 pt-5">
<div class="container">
<div class="row">
<div class="col-lg-8">
<h1>WE ARE MAPPING THE SOUTHERN SKY…</h1>
<p class="pt-2">
Lorem ipsum dolor sit amet, mel deserunt inciderint cu,
iudicabit efficiendi an vis, sed id inani abhorreant deterruisset.
Ea etiam verterem reprimique vix, sit ceteros intellegebat ne,
te vis minim verterem reprehendunt.
</p>
<a href="#" class="btn base float-right">More Details</a>
</div>
<div class="col-lg-4">
</div>
</div>
</div>
</section>
<section class="mt-5 pt-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8 text-center">
<h1>…THAT WILL BENEFIT MANY ASTRONOMY FIELDS…</h1>
</div>
</div>
</div>
</section>
<section class="mt-5">
<div class="container-fluid py-5" style="background-color: #9A3838;">
<h2 class="text-center py-5 text-white">Vamos preencher isso de alguma forma</h2>
</div>
</section>
<section class="multicol-inverted mt-5 pt-5">
<div class="container">
<div class="row">
<div class="col-lg-4">
<img src="<?php bloginfo('template_url'); ?>/img/photo1.png" width="100%" alt="">
</div>
<div class="col-lg-8">
<h1>…WITH A 86-CM TELESCOPE LOCATED IN CTIO.</h1>
<p class="pt-2">
Lorem ipsum dolor sit amet, mel deserunt inciderint cu,
iudicabit efficiendi an vis, sed id inani abhorreant deterruisset.
Ea etiam verterem reprimique vix, sit ceteros intellegebat ne,
te vis minim verterem reprehendunt.
</p>
<a class="btn base float-right" href="#">More Details</a>
</div>
</div>
</div>
</section>
*/?>
</main>
<?php get_template_part('partials/footer'); ?>
<?php get_footer(); ?>