-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.hbs
executable file
·29 lines (24 loc) · 1.13 KB
/
index.hbs
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
{{!< default}}
{{#contentFor "meta"}}
<meta property="og:type" content="website" />
<meta property="og:url" content="{{@blog.url}}" />
<meta property="og:title" content="{{@blog.title}}" />
<meta property="og:site_name" content="{{@blog.title}}" />
{{#if @blog.logo}}<meta property="og:image" content="{{@blog.logo}}" />{{/if}}
<meta property="og:description" content="{{@blog.description}}"/>
<meta property="fb:profile_id" content="<YOUR FACEBOOK ID>" />
<meta property="fb:admins" content="<YOUR FACEBOOK ID>" />
{{/contentFor}}
{{! The big featured header on the homepage, with the site logo and description }}
<header id="site-head">
<div id="site-head-content" class="inner">
{{#if @blog.logo}}<a id="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="Blog Logo" /></a>{{/if}}
<h1 class="blog-title">{{@blog.title}}</h1>
<h2 class="blog-description">{{@blog.description}}</h2>
</div>
</header>
{{! The main content area on the homepage }}
<main class="content" role="main">
{{! The tag below includes the post loop - partials/loop.hbs }}
{{> "loop"}}
</main>