-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
47 lines (45 loc) · 2.31 KB
/
about.php
File metadata and controls
47 lines (45 loc) · 2.31 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
<?php /* Template Name: About Template */
/**
* The template for displaying all pages
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site may use a
* different template.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package scrolling_panels_sounddevco_2019
*/
get_header();
?>
<div id="primary" class="content-area">
<img class='panel-background' src="<?php echo get_template_directory_uri(); ?>/img/panel-2.jpg" alt="shaking-hands-building-trust"/>
<main id="main" class="about-page">
<div class='content-wrapper'>
<a class='logo-box' href='<?php echo get_home_url(); ?>'>
<img src="<?php echo get_template_directory_uri(); ?>/img/logo.png" alt="Logo" class="logo-img" />
<h2>Sound Development. Sound Practices.</h2>
</a>
<div class='page-box'>
<h1>ABOUT US</h1>
<p><img src='http://www.sounddev.co/wp-content/uploads/2019/08/IMG_6605.png' />Sound Development Company was founded by Mark Delgado in 2018 after years of working freelance and with organizations in multiple industries. We are based in Seattle, WA and work with a network of subcontractors as well as freelance developers through the internet. We work hard to ensure our customers always get a quality product in a reasonable amount of time.</p>
<p>We are not about technology, we are about using technology in order to get things done.</p>
</div>
<div class='panel-footer'>
<ul>
<li><a href='<?php echo get_site_url(); ?>/blog'>BLOG</a></li>
<li><a href='<?php echo get_site_url(); ?>/about'>ABOUT US</a></li>
<li><a href='<?php echo get_site_url(); ?>/contact'>CONTACT US</a></li>
<li><a href='<?php echo get_site_url(); ?>/careers'>CAREERS</a></li>
</ul>
<p>
© <?php echo date('Y'); ?> <a href="<?php echo home_url( '/' ) ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a><br>
<span>Designed by <a href="http://www.longbeachwebdesign.com" title="Long Beach, CA Website Design, Ecommerce, Website Hosting, & Graphics" target="_blank">LBWD</a></span>
</p>
</div>
</div>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_footer();