-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-about.php
More file actions
50 lines (43 loc) · 1.01 KB
/
page-about.php
File metadata and controls
50 lines (43 loc) · 1.01 KB
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
<?php
/*
Template Name: ABOUT
*/
?>
<?php get_header(); ?>
<div class="blog-background">
<div class="post-card">
<section class="wa-hero au-hero">
<div>
<h1>About Us</h1>
<p>We help software companies accelerate their business by powering up their user experience.</p>
</div>
</section>
<div class="aboutus">
<section class="about-content">
<div class="right-column2">
</div>
<div class="left-column">
<h2><?php the_field('about_content_title'); ?></h2>
<p><?php the_field('about_content_description'); ?></p>
</div>
</section>
</div>
<div class="not-p">
<?php include 'inc-experts.php'; ?>
</div>
</div>
<?php include 'inc-contact.php'; ?>
</div>
<?php get_footer(); ?>
<script>
function scrollToAnchor(aid){
var aTag = $("a[name='"+ aid +"']");
$('html,body').animate({scrollTop: aTag.offset().top},'slow');
}
$("#link-anchor").click(function() {
scrollToAnchor('link-anchor');
});
$("#link-anchor2").click(function() {
scrollToAnchor('link-anchor');
});
</script>