summaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html72
1 files changed, 22 insertions, 50 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 6bf4aca..3422dbe 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -1,56 +1,28 @@
-<!doctype html>
-<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
-<!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]-->
-<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]-->
-<!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!--<![endif]-->
-<head>
-{% include head.html %}
-</head>
+---
+layout: default
+---
+<h2 class="post-title"><a href="{{ page.url }}">{{ page.title }}</a></h2>
-<body id="post" itemscope itemtype="http://schema.org/WebPage">
+<p class="date">{{ page.date | date_to_string }}</p>
-{% include browser-upgrade.html %}
-{% include navigation.html %}
+{{ content }}
-<div id="main" role="main" itemprop="mainContentOfPage" itemscope itemtype="http://schema.org/Blog">
- <article class="hentry" itemscope itemtype="http://schema.org/BlogPosting" itemprop="blogpost">
- {% if page.image.feature %}<img src="{{ site.url }}/images/{{ page.image.feature }}" class="entry-feature-image" alt="{{ page.title }}">{% endif %}
- <div class="entry-wrapper">
- <header class="entry-header">
- <span class="entry-tags">{% for tag in page.tags %}<a href="{{ site.url }}/tags.html#{{ tag | cgi_encode }}" title="Pages tagged {{ tag }}" rel="tag">{{ tag }}</a>{% unless forloop.last %} &bull; {% endunless %}{% endfor %}</span>
- <h1 class="entry-title" itemprop="headline">{% if page.headline %}{{ page.headline }}{% else %}{{ page.title }}{% endif %}</h1>
- </header>
- <footer class="entry-meta">
- <img src="{{ site.url }}/images/{{ site.owner.avatar }}" alt="{{ site.owner.name }} photo" class="author-photo">
- <span class="author vcard" itemprop="author" itemscope itemtype="http://schema.org/Person">By <span itemprop="name" class="fn"><a href="{{ site.url }}/about" title="About {{ site.owner.name }}" itemprop="url">{{ site.owner.name }}</a></span></span>
- <span class="entry-date date published"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished"><i class="icon-calendar-empty"></i> {{ page.date | date: "%B %d, %Y" }}</time></span>
- {% if page.modified %}<span class="entry-date date modified"><time datetime="{{ page.modified }}" itemprop="dateModified"><i class="icon-pencil"></i> {{ page.modified | date: "%B %d, %Y" }}</time></span>{% endif %}
- {% if site.disqus_shortname and page.comments %}<span class="entry-comments"><i class="icon-comment-alt"></i> <a href="#disqus_thread">Comment</a></span>{% endif %}
- <span><a href="{{ site.url }}{{ page.url }}" rel="bookmark" title="{{ page.title }}"><i class="icon-link"></i> Permalink</a></span>
- </footer>
- <div class="entry-content">
- {{ content }}
- {% if site.disqus_shortname and page.comments %}<div id="disqus_thread"></div><!-- /#disqus_thread -->{% endif %}
- </div><!-- /.entry-content -->
- </div><!-- /.entry-wrapper -->
- <nav class="pagination" role="navigation">
- {% if page.previous %}
- <a href="{{ site.url }}{{ page.previous.url }}" class="btn" title="{{ page.previous.title }}">Previous article</a>
- {% endif %}
- {% if page.next %}
- <a href="{{ site.url }}{{ page.next.url }}" class="btn" title="{{ page.next.title }}">Next article</a>
- {% endif %}
- </nav><!-- /.pagination -->
- </article>
-</div><!-- /#main -->
+<hr />
-<div class="footer-wrapper">
- <footer role="contentinfo">
- {% include footer.html %}
- </footer>
-</div><!-- /.footer-wrapper -->
+<div id="call-to-action">
+ <h3>Read More</h3>
+ <ul>
+ {% for post in site.related_posts %}{% if post.url != page.url %}
+ <li>
+ <a href="{{ post.url }}">{{ post.title }}</a>
+ ({{ post.date | date_to_string }})
+ </li>
+ {% endif %}{% endfor %}
+ </ul>
+</div>
-{% include scripts.html %}
+<hr/>
-</body>
-</html>
+<footer>
+ <span>I sleep all night and I work all day.</span><br/>
+</footer>