Consolidate layouts
- Remove page.html - Rename post-index.html ~> archive.html
This commit is contained in:
parent
338d06673c
commit
75a913d179
8 changed files with 13 additions and 54 deletions
2
404.md
2
404.md
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
layout: page
|
||||
layout: post
|
||||
title: "Page Not Found"
|
||||
excerpt: "Page not found. Your pixels are in another canvas."
|
||||
sitemap: false
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
{% include absolute-url.liquid %}
|
||||
|
||||
<article class="page">
|
||||
<h1>{{ page.title }}</h1>
|
||||
<div class="article-wrap">
|
||||
{{ content }}
|
||||
{% if page.share != false %}
|
||||
<hr />
|
||||
{% include social-share.html %}
|
||||
{% endif %}
|
||||
</div><!-- /.article-wrap -->
|
||||
{% if site.owner.disqus-shortname and page.comments == true %}
|
||||
<section id="disqus_thread"></section><!-- /#disqus_thread -->
|
||||
{% endif %}
|
||||
</article>
|
||||
|
||||
{% if site.owner.disqus-shortname and page.comments == true %}
|
||||
<section id="disqus_thread"></section><!-- /#disqus_thread -->
|
||||
{% endif %}
|
|
@ -5,19 +5,22 @@ layout: default
|
|||
{% include absolute-url.liquid %}
|
||||
|
||||
<article class="post">
|
||||
<div class="headline-wrap">
|
||||
<div class="article-wrap">
|
||||
{% if page.link %}
|
||||
<h1><a href="{{ page.link }}">{{ page.title }}</a></h1>
|
||||
{% else %}
|
||||
<h1><a href="{{ absurl }}{{ page.url }}" rel="bookmark" title="{{ page.title }}">{{ page.title }}</a></h1>
|
||||
{% endif %}
|
||||
</div><!--/ .headline-wrap -->
|
||||
<div class="article-wrap">
|
||||
|
||||
{{ content }}
|
||||
|
||||
<hr />
|
||||
|
||||
<footer role="contentinfo">
|
||||
{% if page.share != false %}{% include social-share.html %}{% endif %}
|
||||
<p class="byline"><strong>{{ page.title }}</strong> was published on <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %d, %Y" }}</time>{% if page.modified %} and last modified on <time datetime="{{ page.modified | date: "%Y-%m-%d" }}">{{ page.modified | date: "%B %d, %Y" }}</time>{% endif %}.</p>
|
||||
{% if page.date %}
|
||||
<p class="byline"><strong>{{ page.title }}</strong> was published on <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %d, %Y" }}</time>{% if page.modified %} and last modified on <time datetime="{{ page.modified | date: "%Y-%m-%d" }}">{{ page.modified | date: "%B %d, %Y" }}</time>{% endif %}.</p>
|
||||
{% endif %}
|
||||
</footer>
|
||||
</div><!-- /.article-wrap -->
|
||||
|
||||
|
@ -26,7 +29,8 @@ layout: default
|
|||
{% endif %}
|
||||
</article>
|
||||
|
||||
{% if site.related_posts.size > 0 %}
|
||||
{% comment %}<!-- only show related on a post page -->{% endcomment %}
|
||||
{% if page.id and site.related_posts.size > 0 %}
|
||||
<div class="related-articles">
|
||||
<h4>You might also enjoy <small class="pull-right">(<a href="{{ absurl }}/posts/">View all posts</a>)</small></h4>
|
||||
<ul>
|
||||
|
|
|
@ -319,22 +319,6 @@ $button-size: 1.5rem;
|
|||
height: auto;
|
||||
-ms-interpolation-mode: bicubic;
|
||||
}
|
||||
.headline-wrap {
|
||||
position: absolute;
|
||||
bottom: 25px;
|
||||
@include prefix(12,1);
|
||||
@media #{$small} {
|
||||
left: 25%;
|
||||
margin-left: 0;
|
||||
}
|
||||
@media #{$x-large} {
|
||||
@include prefix(12,1);
|
||||
}
|
||||
h1, h2 {
|
||||
color: $white;
|
||||
@include text-shadow(0 1px 2px rgba(0,0,0,.25));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Post byline */
|
||||
|
@ -360,7 +344,6 @@ $button-size: 1.5rem;
|
|||
@include prefix(12,2);
|
||||
}
|
||||
}
|
||||
|
||||
.author-name {
|
||||
margin-bottom: 0;
|
||||
@media #{$small} {
|
||||
|
@ -368,7 +351,6 @@ $button-size: 1.5rem;
|
|||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.author-bio {
|
||||
font-size: 80%;
|
||||
font-style: italic;
|
||||
|
@ -376,12 +358,10 @@ $button-size: 1.5rem;
|
|||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.author-avatar {
|
||||
max-width: 110px;
|
||||
@include rounded(150px);
|
||||
}
|
||||
|
||||
.author-social {
|
||||
margin-bottom: 5px;
|
||||
@include font-rem(14);
|
||||
|
@ -399,12 +379,10 @@ $button-size: 1.5rem;
|
|||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
@media #{$small} {
|
||||
display: block;
|
||||
max-width: 125px;
|
||||
}
|
||||
|
||||
@media #{$large} {
|
||||
.author-name,
|
||||
.author-avatar,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
layout: page
|
||||
layout: post
|
||||
title: About the Theme
|
||||
tags: [about, Jekyll, theme, responsive]
|
||||
modified: 2014-08-08T20:53:07.573882-04:00
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
layout: post-index
|
||||
layout: archive
|
||||
title: All Posts
|
||||
excerpt: "A List of Posts"
|
||||
---
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
layout: page
|
||||
layout: post
|
||||
title: Theme Setup
|
||||
modified: 2016-01-19
|
||||
excerpt: "Instructions on how to install and customize the Jekyll theme Minimal Mistakes."
|
||||
|
|
Loading…
Reference in a new issue