updates.hbs

 1{{#> layout }}
 2
 3
 4<div class="max-w-screen-lg mx-auto text-main font-extralight p-20">
 5    {{#if current_user}}
 6    
 7    {{#if releases}}
 8    <h1 class="font-display font-extralight mb-10">Updates</h1>
 9    
10    {{#each releases}}
11    <article id="{{name}}" class="prose">
12        <h2 class="font-display font-extralight">{{name}}&mdash;<a class="underline mt-5 leading-7" href="/releases/{{tag_name}}/{{assets.0.name}}">Download</a></h2>
13        <div class="mt-5">
14            {{{body}}}
15        </div>
16        <div class="mt-5">
17            <p>&mdash;</p>
18        </div>
19    </article>
20    {{/each}}
21    {{/if}}
22
23    {{else}}
24
25    <h1 class="font-display font-extralight mb-10">Hold it!</h1>
26    <p class="mt-5 leading-7">You can't access this without <a href=" /sign_in" class="underline mt-5 leading-7">logging in</a>.</p>
27    <p class="mt-5 leading-7">Try <a href="/community" class="underline mt-5 leading-7">joining our community</a> to get access to updates & releases.</p>
28    {{/if}}
29</div>
30
31{{/layout}}