-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-experience.php
More file actions
42 lines (32 loc) · 1.1 KB
/
Copy pathpage-experience.php
File metadata and controls
42 lines (32 loc) · 1.1 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
<?php
add_filter( 'body_class', function( $classes ) {
return array_merge( $classes, array( 'about-page' ) );
});
?>
<?php
/**
* The template for displaying a project / portfolio
*/
get_header(); ?>
<div class="content">
<main class="about">
<?php while ( have_posts() ) : the_post(); ?>
<div class="container">
<div class="about__image">
<?php the_post_thumbnail(); ?>
</div>
</div>
<div class="container">
<div class="experience-info">
<h1>Dan Brown</h1>
<h3>Brand & marketing expert. Creator. Product guy. Swiss Army Knife.</h3>
<a href="https://www.linkedin.com/in/slightlyoffbeat
" target="_blank" class="button experience-info__button button--primary">LinkedIn</a>
<a href="<?php bloginfo('template_directory')?>/include/DanBrown-Resume.pdf" target="_blank" class="button experience-info__button button-outline--secondary">Resume</a>
</div>
</div>
<?php get_template_part( 'components/single/single', 'content' ); ?>
<?php endwhile; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer(); ?>