From 8eb1ba9fe77bda1ca5575acf65f5f481782a79fb Mon Sep 17 00:00:00 2001 From: Nate Date: Wed, 15 Sep 2021 12:57:25 -0400 Subject: [PATCH] split home and releases --- server/templates/home.hbs | 30 ------------ server/templates/releases.hbs | 90 +++++++++++++++++++++++++++++++++++ 2 files changed, 90 insertions(+), 30 deletions(-) create mode 100644 server/templates/releases.hbs diff --git a/server/templates/home.hbs b/server/templates/home.hbs index 7bd0297264..5bd341bd2c 100644 --- a/server/templates/home.hbs +++ b/server/templates/home.hbs @@ -1,33 +1,4 @@ {{#> layout }} -{{#if releases}} - -
-
- {{#each releases}} -
-
-
- VERSION {{name}} -
- - DOWNLOAD - -
-
- {{{body}}} -
-
- {{/each}} -
-
- -{{else}} - -
- -
@@ -59,5 +30,4 @@
-{{/if}} {{/layout}} \ No newline at end of file diff --git a/server/templates/releases.hbs b/server/templates/releases.hbs new file mode 100644 index 0000000000..f2a4920700 --- /dev/null +++ b/server/templates/releases.hbs @@ -0,0 +1,90 @@ +{{#> layout }} +{{#if releases}} + +
+
+ {{#each releases}} +
+
+
+ VERSION {{name}} +
+ + DOWNLOAD + +
+
+ {{{body}}} +
+
+ {{/each}} +
+
+ +{{else}} + +

You can't access this without logging in.

+ +{{/if}} +
+
+
+ +
+ + NATHAN SOBO + +
+ Nathan joined GitHub in late 2011 to build the Atom text editor, and + he led the Atom team until 2018. He also co-led development of Teletype for Atom, pioneering one of the first production + uses of conflict-free replicated data types for collaborative text editing. He's been dreaming about + building the world’s best text editor since he graduated from college, and is excited to finally + have + the knowledge, tools, and resources to achieve this vision. +
+
+
+
+ +
+ + ANTONIO SCANDURRA + +
+ Antonio joined the Atom team in 2014 while still in university after his outstanding open source + contributions caught the attention of the team. He later joined Nathan in architecting Teletype for + Atom and researching the foundations of what has turned into Zed. For the last two years, + he’s + become an expert in distributed systems and conflict-free replicated data types through the + development of a real-time, distributed, conflict-free database implemented in Rust for Ditto. +
+
+
+
+ +
+ + MAX BRUNSFELD + +
+ Max joined the Atom team in 2013 after working at Pivotal Labs. While driving Atom towards its 1.0 + launch during the day, Max spent nights and weekends building Tree-sitter, a blazing-fast and + expressive incremental parsing framework that currently powers all code analysis at GitHub. Before + leaving to start Zed, Max helped GitHub's semantic analysis team integrate Tree-sitter to support + syntax highlighting and code navigation on github.com. +
+
+
+
+
+ +{{/layout}}