-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.hbs
More file actions
53 lines (46 loc) · 2.03 KB
/
index.hbs
File metadata and controls
53 lines (46 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{{!< default}}
{{! The comment above "< default" means - insert everything in this file into
the {body} of the default.hbs template, which contains our header/footer. }}
{{! The big featured header on the homepage, with the site logo and description }}
<header class="site-head" {{#if @blog.cover_image}}style="background-image: url({{@blog.cover_image}})"{{/if}}>
<div class="navbar-fill">
<div class="container">
<a class="brand" href="/"><img src="http://rascalmicro.com/img/rm-logo-words-only-light.png"></a>
<ul class="nav">
<li class="active"><a href="http://store.rascalmicro.com">Store</a></li>
<li><a href="/about">About</a></li>
<li><a href="/blog/">Blog</a></li>
<li><a href="/docs/">Docs</a></li>
</ul>
</div>
</div>
<script type="text/javascript">
function activateNavbar() { // From https://gist.github.com/1362111, but with the regex tweaked
var path = location.pathname.replace (/^(\/.+?\/).+$/, '$1');
$('ul.nav li').removeClass("active");
$('ul.nav a[href="' + path + '"]').parent().addClass("active");
}
$(function(){
activateNavbar();
})
</script>
</header>
{{! The main content area on the homepage }}
<main class="content" role="main">
<div class="center-column">
{{! Each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<span class="post-meta"><time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time> {{tags prefix="on "}}</span>
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
</header>
<section class="post-excerpt">
<p>{{excerpt}}…</p>
</section>
</article>
{{/foreach}}
{{!! After all the posts, we have the previous/next pagination links }}
{{pagination}}
</div>
</main>