-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
executable file
·60 lines (44 loc) · 2.42 KB
/
Copy pathabout.php
File metadata and controls
executable file
·60 lines (44 loc) · 2.42 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
51
52
53
54
55
56
57
58
59
60
<?php
/**
* Template Name: mynameismartin about
*
*
* @package WordPress
* @subpackage Starkers
* @since Starkers 4.0
*/
?>
<?php get_template_parts( array( 'parts/shared/html-header', 'parts/shared/header' ) ); ?>
<?php get_template_parts( array( 'parts/shared/background-image' ) ); ?>
<div class="container">
<article class="about-article">
<section class="content-body">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
</section>
</article>
<section class="overshare">
<ul>
<li><a href="http://twitter.com/wrightmartin" class="twitter"><i class="ss-icon ">twitter</i></a></li>
<li><a href="http://dribbble.com/wrightmartin" class="dribbble"><i class="ss-icon ">dribbble</i></a></li>
<li><a href="http://flickr.com/photos/skip694" class="flickr"><i class="ss-icon ">flickr</i></a></li>
<li><a href="http://www.last.fm/user/Johnny-5" class="lastfm"><i class="ss-icon">lastfm</i></a></li>
<li><a href="http://instagram.com/mynameismartin/" class="instagram"><i class="ss-icon ">instagram</i></a></li>
<li><a href="https://www.facebook.com/thenameismartin" class="facebook"><i class="ss-icon ">facebook</i></a></li>
</ul>
</section>
</div>
<section class="colophon">
<div class="container">
<div class="content-body">
<h2>About this site</h2>
<div class="cols">
<p>This site was designed & built by hand on an <a href="http://apple.com/mac">Apple Mac</a> using <a href="http://panic.com/coda/">Coda</a>, <a href="http://www.photoshop.com/">Photoshop</a> and <a href="https://www.google.com/intl/en/chrome/browser/">Google Chrome</a>.</p>
<p>It was designed with the browser in HTML, CSS & <a href="http://sass-lang.com/">Sass</a>. Content is managed in <a href="http://wordpress.org">WordPress</a> & themed with <a href="http://viewportindustries.com/products/starkers/">Starkers</a>.</p>
<p>Type is set in <a href="https://typekit.com/fonts/proxima-nova">Proxima Nova</a> & <a href="https://typekit.com/fonts/ff-meta-serif-web-pro">FF Meta Serif</a>, served by <a href="http://typekit.com">Typekit</a> and laid out in a fluid grid with a little help from <a href="http://gridsetapp.com">Gridset</a>*.</p>
</div>
</div>
</div>
</section>
<?php get_template_parts( array( 'parts/shared/footer','parts/shared/html-footer') ); ?>