mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 13:24:19 +00:00
31 lines
1,012 B
Handlebars
31 lines
1,012 B
Handlebars
{{#> layout }}
|
|
|
|
|
|
<div class="max-w-screen-lg mx-auto text-main font-extralight p-20">
|
|
{{#if current_user}}
|
|
|
|
{{#if releases}}
|
|
<h1 class="font-display font-extralight mb-10">Updates</h1>
|
|
|
|
{{#each releases}}
|
|
<article id="{{name}}" class="prose">
|
|
<h2 class="font-display font-extralight">{{name}}—<a class="underline mt-5 leading-7" href="/releases/{{tag_name}}/{{assets.0.name}}">Download</a></h2>
|
|
<div class="mt-5">
|
|
{{{body}}}
|
|
</div>
|
|
<div class="mt-5">
|
|
<p>—</p>
|
|
</div>
|
|
</article>
|
|
{{/each}}
|
|
{{/if}}
|
|
|
|
{{else}}
|
|
|
|
<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}}
|