Fixed minor bugs.
This commit is contained in:
parent
7797696230
commit
c275a6418e
|
@ -584,14 +584,14 @@ body {
|
||||||
padding-bottom: 12px;
|
padding-bottom: 12px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #0000FF no-repeat 50%;
|
background: #0000FF no-repeat 50%;
|
||||||
background-size: cover
|
background-size: cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-header:before {
|
.site-header:before {
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
background: rgba(0,0,0,0.2);
|
background: rgba(0,0,0,0.2);
|
||||||
}
|
}
|
||||||
`
|
|
||||||
.site-header:after,
|
.site-header:after,
|
||||||
.site-header:before {
|
.site-header:before {
|
||||||
content: "";
|
content: "";
|
||||||
|
@ -1122,7 +1122,7 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.home-template .site-header:after {
|
.home-template .site-header:after{
|
||||||
display: none
|
display: none
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
into the {body} of the default.hbs template --}}
|
into the {body} of the default.hbs template --}}
|
||||||
|
|
||||||
{{!-- The big featured header, it uses blog cover image as a BG if available --}}
|
{{!-- The big featured header, it uses blog cover image as a BG if available --}}
|
||||||
<header class="site-header outer">
|
<header class="site-header outer no-cover">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
<div class="site-header-content">
|
<div class="site-header-content">
|
||||||
<h1 class="site-title">
|
<h1 class="site-title">
|
||||||
|
|
127
page.hbs
127
page.hbs
|
@ -1,50 +1,129 @@
|
||||||
{{!< default}}
|
{{!< default}}
|
||||||
|
|
||||||
{{!-- The tag above means: insert everything in this file
|
{{!-- The tag above means: insert everything in this file
|
||||||
into the {body} of the default.hbs template --}}
|
into the {body} of the default.hbs template --}}
|
||||||
|
|
||||||
{{!-- The big featured header, it uses blog cover image as a BG if available --}}
|
{{!-- Everything inside the #post tags pulls data from the post --}}
|
||||||
<header class="site-header outer">
|
{{#post}}
|
||||||
|
|
||||||
|
<div class="menu">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
{{> "site-nav"}}
|
{{> "site-nav"}}
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</div>
|
||||||
|
|
||||||
{{!-- Everything inside the #post tags pulls data from the post --}}
|
<header class="site-header outer {{#if feature_image}}" style="background-image: url({{feature_image}}){{else}}no-cover{{/if}}">
|
||||||
{{#post}}
|
<div class="inner">
|
||||||
|
<div class="site-header-content">
|
||||||
|
<section class="post-full-meta">
|
||||||
|
<time class="post-full-meta-date" datetime="{{date format="YYYY-MM-DD"}}">{{date format="D MMMM YYYY"}}</time>
|
||||||
|
{{#primary_tag}}
|
||||||
|
<span class="date-divider">/</span> <a href="{{url}}">{{name}}</a>
|
||||||
|
{{/primary_tag}}
|
||||||
|
</section>
|
||||||
|
<h1 class="site-title">{{title}}</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
<main id="site-main" class="site-main outer">
|
<main id="site-main" class="site-main outer">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
|
|
||||||
<article class="post-full {{post_class}} {{#unless feature_image}}no-image{{/unless}}">
|
<article class="post-full {{post_class}} {{#unless feature_image}}no-image{{/unless}}">
|
||||||
|
|
||||||
<header class="post-full-header">
|
|
||||||
<h1 class="post-full-title">{{title}}</h1>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
{{#if feature_image}}
|
|
||||||
<figure class="post-full-image" style="background-image: url({{feature_image}})">
|
|
||||||
</figure>
|
|
||||||
{{/if}}
|
|
||||||
|
|
||||||
<section class="post-full-content">
|
<section class="post-full-content">
|
||||||
<div class="post-content">
|
<div class="post-content">
|
||||||
{{content}}
|
{{content}}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
{{!-- Email subscribe form at the bottom of the page --}}
|
||||||
|
{{#if @labs.subscribers}}
|
||||||
|
<section class="subscribe-form">
|
||||||
|
<h3 class="subscribe-form-title">Subscribe to {{@blog.title}}</h3>
|
||||||
|
<p>Get the latest posts delivered right to your inbox</p>
|
||||||
|
{{subscribe_form placeholder="youremail@example.com"}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
<footer class="post-full-footer">
|
||||||
|
|
||||||
|
{{!-- There are two options for how we display the byline/author-info.
|
||||||
|
If the post has more than one author, we load a specific template
|
||||||
|
from includes/byline-multiple.hbs, otherwise, we just use the
|
||||||
|
default byline. --}}
|
||||||
|
|
||||||
|
{{#has author="count:>1"}}
|
||||||
|
{{> "byline-multiple"}}
|
||||||
|
{{else}}
|
||||||
|
{{> "byline-single"}}
|
||||||
|
{{/has}}
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
{{!--
|
||||||
|
<section class="post-full-comments">
|
||||||
|
If you want to embed comments, this is a good place to do it!
|
||||||
|
</section>
|
||||||
|
--}}
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
{{/post}}
|
{{!-- Links to Previous/Next posts --}}
|
||||||
|
<aside class="read-next outer">
|
||||||
|
<div class="inner">
|
||||||
|
<div class="read-next-feed">
|
||||||
|
{{#if primary_tag}}
|
||||||
|
{{#get "posts" filter="tags:{{primary_tag.slug}}+id:-{{id}}" limit="3" as |related_posts|}}
|
||||||
|
{{#if related_posts}}
|
||||||
|
<article class="read-next-card"
|
||||||
|
{{#if ../primary_tag.feature_image}}
|
||||||
|
style="background-image: url({{../primary_tag.feature_image}})"
|
||||||
|
{{else}}
|
||||||
|
{{#if @blog.cover_image}}
|
||||||
|
style="background-image: url({{@blog.cover_image}})"{{/if}}
|
||||||
|
{{/if}}
|
||||||
|
>
|
||||||
|
<header class="read-next-card-header">
|
||||||
|
<small class="read-next-card-header-sitetitle">— {{@blog.title}} —</small>
|
||||||
|
{{#../primary_tag}}
|
||||||
|
<h3 class="read-next-card-header-title"><a href="{{url}}">{{name}}</a></h3>
|
||||||
|
{{/../primary_tag}}
|
||||||
|
</header>
|
||||||
|
<div class="read-next-divider">{{> "icons/infinity"}}</div>
|
||||||
|
<div class="read-next-card-content">
|
||||||
|
<ul>
|
||||||
|
{{#foreach related_posts}}
|
||||||
|
<li><a href="{{url}}">{{title}}</a></li>
|
||||||
|
{{/foreach}}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<footer class="read-next-card-footer">
|
||||||
|
<a href="{{#../primary_tag}}{{url}}{{/../primary_tag}}">{{plural meta.pagination.total empty='No posts' singular='% post' plural='See all % posts'}} →</a>
|
||||||
|
</footer>
|
||||||
|
</article>
|
||||||
|
{{/if}}
|
||||||
|
{{/get}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
{{!-- The #contentFor helper here will send everything inside it up to the matching #block helper found in default.hbs --}}
|
{{!-- If there's a next post, display it using the same markup included from - partials/post-card.hbs --}}
|
||||||
{{#contentFor "scripts"}}
|
{{#next_post}}
|
||||||
<script>
|
{{> "post-card"}}
|
||||||
$(function() {
|
{{/next_post}}
|
||||||
var $postContent = $(".post-full-content");
|
|
||||||
$postContent.fitVids();
|
{{!-- If there's a previous post, display it using the same markup included from - partials/post-card.hbs --}}
|
||||||
});
|
{{#prev_post}}
|
||||||
</script>
|
{{> "post-card"}}
|
||||||
{{/contentFor}}
|
{{/prev_post}}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
{{!-- Floating header which appears on-scroll, included from includes/floating-header.hbs --}}
|
||||||
|
{{> floating-header}}
|
||||||
|
|
||||||
|
{{/post}}
|
Loading…
Reference in New Issue