This repository was archived by the owner on Jun 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpage-getting-started.php
72 lines (61 loc) · 2.26 KB
/
page-getting-started.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
<?php
get_header();
while( have_posts() ) {
the_post(); ?>
<main class="getting-started">
<section class="gs-header" style="background-image: url('<?php echo get_theme_file_uri('images/aleksandar-cvetanovic-1068417-unsplash-min.jpg'); ?>');">
<div class="overlay"></div>
<h1>Getting Started</h1>
</section>
<?php $steps = get_field('steps'); ?>
<section class="steps" id="how-to-help">
<ul>
<?php foreach ($steps as $index=>$step) { ?>
<li class="step">
<div class="step-header">
<div class="step-number"><?php echo $index + 1; ?></div>
<div class="step-title"><?php echo $step["title"]; ?></div>
</div>
<div class="step-main">
<div class="step-blank"></div>
<div class="step-content">
<div class="step-description"><?php echo $step["description"]?></div>
<?php if ($step["link"]) { ?>
<a class="step-link" href="<?php echo $step["link"]; ?>" target="_blank"><?php echo $step["link_text"]; ?></a>
<?php } ?>
</div>
</div>
</li>
<?php }
?>
</ul>
</section>
<?php $faqs = get_field('faqs');
if ($faqs && sizeof($faqs) > 0) { ?>
<section class="faq">
<div class="faq-header" style="background-image: url('<?php echo get_theme_file_uri('images/camylla-battani-784361-unsplash-min.jpg'); ?>');">
<div class="overlay"></div>
<h2>Frequent Questions</h2>
</div>
<div class="faq-content">
<ul>
<?php foreach ($faqs as $faq) { ?>
<li>
<div class="question"><?php echo $faq["question"]; ?></div>
<div class="answer"><?php echo $faq["answer"]; ?></div>
</li>
<?php }
?>
</ul>
</div>
</section>
<?php }
?>
<section class="gs-contact">
<p>Still have a question?</p>
<a style="cursor:pointer" class="contact-link">Contact</a>
</section>
</main>
<?php }
get_footer();
?>