This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
spdocker/themes/spd/layout/post.ejs
2018-03-07 15:58:54 +11:00

132 lines
4.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
layout: layout
---
<!-- Post Content -->
<article>
<div class="container">
<div class="row">
<!-- Post Container -->
<div class="
col-lg-8 col-lg-offset-2
col-md-10 col-md-offset-1
post-container">
<%- page.content %>
<hr>
<!-- Pager -->
<ul class="pager">
<% if (page.prev){ %>
<li class="previous">
<a href="<%- config.root %><%- page.prev.path %>" data-toggle="tooltip" data-placement="top" title="<%- page.prev.title %>">&larr; Previous Post</a>
</li>
<% } %>
<% if (page.next){ %>
<li class="next">
<a href="<%- config.root %><%- page.next.path %>" data-toggle="tooltip" data-placement="top" title="<%- page.next.title %>">Next Post &rarr;</a>
</li>
<% } %>
</ul>
<!-- disqus comment start -->
<% if(config['disqus_username']) { %>
<div class="comment">
<div id="disqus_thread" class="disqus-thread"></div>
</div>
<% } %>
<!-- disqus comment end -->
</div>
<!-- Tabe of Content -->
<%- partial('_partial/toc') %>
<!-- Sidebar Container -->
<div class="
col-lg-8 col-lg-offset-2
col-md-10 col-md-offset-1
sidebar-container">
<!-- Featured Tags -->
<% if(config['featured-tags']) { %>
<section>
<!-- no hr -->
<h5><a href="<%= config.root %>tags/">FEATURED TAGS</a></h5>
<div class="tags">
<% page.tags.forEach(function(tag){ %>
<a class="tag" href="<%= config.root %>tags/#<%= tag.name %>" title="<%= tag.name %>"><%= tag.name %></a>
<% }) %>
</div>
</section>
<% }%>
<!-- Friends Blog -->
<% if(config.friends) { %>
<hr>
<h5>FRIENDS</h5>
<ul class="list-inline">
<% config.friends.forEach(function(friend){ %>
<li><a href="<%= friend.href %>" target="_blank"><%= friend.title %></a></li>
<% }); %>
</ul>
<% }%>
</div>
</div>
</div>
</article>
<% if(config['disqus_username']) { %>
<!-- disqus embedded js code start (one page only need to embed once) -->
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES * * */
var disqus_shortname = "<%= config['disqus_username'] %>";
var disqus_identifier = "<%= page.permalink %>";
var disqus_url = "<%= page.permalink %>";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<!-- disqus embedded js code start end -->
<% } %>
<% if(config['anchorjs']) { %>
<!-- async load function -->
<script>
function async(u, c) {
var d = document, t = 'script',
o = d.createElement(t),
s = d.getElementsByTagName(t)[0];
o.src = u;
if (c) { o.addEventListener('load', function (e) { c(null, e); }, false); }
s.parentNode.insertBefore(o, s);
}
</script>
<!-- anchor-js, Doc:http://bryanbraun.github.io/anchorjs/ -->
<script>
async("https://cdn.bootcss.com/anchor-js/1.1.1/anchor.min.js",function(){
anchors.options = {
visible: 'hover',
placement: 'left',
icon: ''
};
anchors.add().remove('.intro-header h1').remove('.subheading').remove('.sidebar-container h5');
})
</script>
<style>
/* place left on bigger screen */
@media all and (min-width: 800px) {
.anchorjs-link{
position: absolute;
left: -0.75em;
font-size: 1.1em;
margin-top : -0.1em;
}
}
</style>
<% } %>