<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" /> <meta name="viewport" content="width=device-width" /> <link rel="apple-touch-icon-precomposed" href="/apple-touch-icon.png"/> <title><?= (isset($content['post']) ? h($content['post']['post-title']) . ' – ' : '') . ($content['page-title'] != $content['blog-title'] && ( $content['page-type'] == 'page' || $content['page-type'] == 'archive' || $content['page-type'] == 'tag' || $content['page-type'] == 'type' ) ? h($content['page-title']) . ' – ' : '') . h($content['blog-title']) ?></title> <? if ($content['page-type'] != 'frontpage' && $content['page-type'] != 'page' && $content['page-type'] != 'post') { ?> <meta name="robots" content="noindex"/> <? } ?> </head> <body> <div id="mastheadbackground"> </div> <section id="posts"> <div id="masthead"> <h1><a href="/">My Site</a></h1> <p id="description">Who am I?</p> </div> <? if ($content['page-type'] == 'page') { ?> <article> <header> <h2><?= h($content['page-title']) ?></h2> </header> <?= $content['page-body'] ?> </article> <? } else { ?> <? if (isset($content['posts'])) foreach ($content['posts'] as $post) { ?> <article<?= $post['post-type'] == 'link' ? ' class="link"' : '' ?>> <header> <h2> <a href="<?= h($post['post-permalink-or-link']) ?>"><?= h($post['post-title']) ?></a> <?= $post['post-type'] == 'link' ? '<span class="linkarrow">→</span>' : '' ?> </h2> <p> <time datetime="<?= h(date('c', $post['post-timestamp'])) ?>" pubdate="pubdate"><?= date('F j, Y', $post['post-timestamp']) ?></time> • <a class="permalink" title="Permalink" href="<?= h($post['post-permalink']) ?>">∞</a> </p> </header> <?= $post['post-body'] ?> </article> <? } ?> <? } ?> <? if (isset($content['archives'])) { ?> <nav id="archives"> <h3>Archives</h3> <div style="clear: both; font-size: 1px; line-height: 1px;"> </div> <div style="float: left; width: 90px; text-align: right; padding-bottom: 2em;"> <? $so_far = 0; $per_column = ceil(count($content['archives']) / 5); ?> <? foreach ($content['archives'] as $archive) { ?> <? if (++$so_far > $per_column) { ?> <? $so_far = 1; ?> </div> <div style="float: left; width: 90px; text-align: right;"> <? } ?> <a href="<?= h($archive['archives-uri']) ?>"><?= $archive['archives-month-short-name'] ?> <?= $archive['archives-year'] ?></a> <br/> <? } ?> </div> <div style="clear: both; font-size: 1px; line-height: 1px;"> </div> </nav> <? } ?> <footer> <p>© 2006-2012 Marco Arment. All rights reserved.</p> <p> <a href="/rss.xml">RSS feed</a>. Powered by <a href="http://www.marco.org/secondcrack">Second Crack</a>. </p> </footer> </section> </body> </html>