-
Notifications
You must be signed in to change notification settings - Fork 0
/
generic-page.php
56 lines (44 loc) · 1.5 KB
/
generic-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
<?php
/**
* Template Name: Generic Page
*
*/
get_header();
?>
<main class="dark-theme">
<section class="generic-hero">
<div class="generic-hero-back"></div>
<div class="area flex align-center">
<div class="resp-logo">
<img src="<?php echo get_template_directory_uri(); ?>/img/logos/logo-white.svg" />
</div>
<div class="col-9">
<?php if( get_field('pre_title_blu_text') ): ?>
<div class="sub-section flex align-center">
<div class="icon small">
<img src="<?php echo get_template_directory_uri(); ?>/img/icons/features.svg" loading="lazy" />
</div>
<p class="subtitle">
<?php the_field('pre_title_blu_text'); ?>
</p>
</div>
<?php endif; ?>
<h1 class="title-giga">
<?php the_title(); ?>
</h1>
<p class="text-20 light-blu">
<?php the_field('header_sub_title'); ?>
</p>
<div class="buttons gap-20 flex">
<a href="#content-area" class="button secondary">Learn More</a>
</div>
</div>
</div>
</section>
<section id="content-area" class="generic-content">
<div class="area">
<?php the_content(); ?>
</div>
</section>
</main>
<?php get_footer(); ?>