zed/server/templates/updates.hbs

32 lines
1,012 B
Handlebars
Raw Normal View History

{{#> layout }}
2021-09-16 21:12:24 +00:00
<div class="max-w-screen-lg mx-auto text-main font-extralight p-20">
2021-09-17 18:59:02 +00:00
{{#if current_user}}
{{#if releases}}
2021-09-17 16:33:10 +00:00
<h1 class="font-display font-extralight mb-10">Updates</h1>
2021-09-17 18:59:02 +00:00
2021-09-16 21:12:24 +00:00
{{#each releases}}
2021-09-17 16:33:10 +00:00
<article id="{{name}}" class="prose">
<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>
2021-09-16 21:12:24 +00:00
<div class="mt-5">
{{{body}}}
</div>
<div class="mt-5">
<p>&mdash;</p>
</div>
2021-09-16 21:12:24 +00:00
</article>
{{/each}}
2021-09-17 18:59:02 +00:00
{{/if}}
2021-09-17 18:59:02 +00:00
{{else}}
2021-09-17 18:59:02 +00:00
<h1 class="font-display font-extralight mb-10">Hold it!</h1>
<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>
<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>
{{/if}}
</div>
{{/layout}}