generated from TryGhost/Starter
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.hbs
37 lines (31 loc) · 1.3 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
30
31
32
33
34
35
36
37
{{!< default}}
<div class="gh-page">
<div class="pico-container">
<header class="pico-sitehead">
{{#if @site.logo}}
<img src="{{@site.logo}}" alt="{{@site.title}}" />
{{/if}}
<div class="pico-sitehead-content">
<h1>{{@site.title}}</h1>
<p>{{@site.description}}</p>
<div class="pico-sitehead-cta">
{{#if @member.paid}}
<a class="gh-button gh-button-primary" href="/account/">My account</a>
<a class="gh-button" href="javascript:" data-members-signout>Sign out</a>
{{else if @member}}
<a class="gh-button gh-button-primary" href="/signup/">Upgrade</a>
<a class="gh-button" href="javascript:" data-members-signout>Sign out</a>
{{else}}
<a class="gh-button gh-button-primary" href="/signup/">Subscribe now</a>
<a class="gh-button" href="/signin/">Sign in</a>
{{/if}}
</div>
</div>
</header>
<div class="gh-postfeed">
{{#foreach posts}}
{{> "card"}} {{!-- partials/card.hbs --}}
{{/foreach}}
</div>
</div>
</div>