zed/server/templates/releases.hbs

36 lines
1.6 KiB
Handlebars
Raw Normal View History

2021-09-15 16:57:25 +00:00
{{#> layout }}
2021-09-20 22:23:01 +00:00
<div class="max-w-screen-lg p-10 mx-auto font-thin text-main lg:p-20">
2021-09-17 18:59:02 +00:00
{{#if current_user}}
2021-09-20 22:23:01 +00:00
<h1 class="mb-10 font-display font-extralight">Releases</h1>
2021-09-17 19:06:38 +00:00
<p class="mt-5 leading-7">Zed is currently only available on OS X.</p>
2021-09-17 18:59:02 +00:00
<p class="mt-5 leading-7">We are frequently shipping new versions, check back reguarly to get the most recent version. If you run into an issue you think we might not know about use the "new issue" links by the appropriate version to let us know about it.</p>
{{#if releases}}
2021-09-17 18:59:02 +00:00
<ul class="mt-10 leading-7">
2021-09-15 16:57:25 +00:00
{{#each releases}}
2021-09-17 18:59:02 +00:00
<li id="release-{{name}}" class="mb-5">
2021-09-20 22:23:01 +00:00
<a class="text-lg leading-7 underline hover:text-gray-300" href="/releases/{{tag_name}}/{{assets.0.name}}">Zed {{name}}</a></h2>
<p class="mt-2 text-gray-400">
2021-09-17 19:06:38 +00:00
<a class="hover:text-white" href="https://github.com/zed-industries/zed/releases/tag/{{tag_name}}">Release Notes</a>
2021-09-17 18:59:02 +00:00
·
2021-09-17 19:06:38 +00:00
<a class="hover:text-white" href="https://github.com/zed-industries/zed/issues/new?labels=defect&title={{name}}+New+issue">New issue</a>
2021-09-17 18:59:02 +00:00
</p>
</li>
2021-09-15 16:57:25 +00:00
{{/each}}
2021-09-17 18:59:02 +00:00
</ul>
2021-09-15 16:57:25 +00:00
2021-09-17 18:59:02 +00:00
{{/if}}
{{else}}
2021-09-15 16:57:25 +00:00
2021-09-20 22:23:01 +00:00
<h1 class="mb-10 font-display font-extralight">Hold it!</h1>
<p class="mt-5 leading-7">You can't access this without <a href=" /sign_in" class="mt-5 leading-7 underline hover:text-white">logging in</a>.</p>
<p class="mt-5 leading-7">Try <a href="/community" class="mt-5 leading-7 underline hover:text-white">joining our community</a> to get access to updates & releases.</p>
2021-09-17 18:59:02 +00:00
{{/if}}
2021-09-15 16:57:25 +00:00
</div>
{{/layout}}