-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-page.php
38 lines (34 loc) · 1.29 KB
/
about-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
<?php
/*
Template Name: About Page
Template Post Type: page
*/
?>
<?php get_header(); ?>
<?php $about_image = get_field('about-image');
$g20_logo = get_field('g20-logo'); ?>
<!-- main START -->
<main>
<!-- page heading -->
<section class="bg-dark text-center locations-container">
<div class="container container--narrow">
<p><a href="<?php echo get_home_url(); ?>">Khoj</a>/<a href="<?php echo get_home_url(); ?>/about/">About</a></p>
<h2>About</h2>
</div>
</section>
<!-- content -->
<section class="bg-white about-section">
<div class="container">
<img src="<?php echo esc_url($about_image['url']); ?>" alt="<?php echo esc_attr($about_image['alt']); ?>">
<p><?php echo esc_html(get_field('about-content-1')); ?></p>
<p><?php echo esc_html(get_field('about-content-2')); ?></p>
<img src="<?php echo esc_url($g20_logo['url']); ?>" alt="<?php echo esc_attr($g20_logo['alt']); ?>">
<p><?php echo esc_html(get_field('about-content-3')); ?></p>
<p><?php echo esc_html(get_field('about-content-4')); ?></p>
<p><?php echo esc_html(get_field('about-content-5')); ?></p>
</div>
</section>
<!-- /content -->
</main>
<!-- main END -->
<?php get_footer(); ?>