From cdc136d96ac3a00ae2e71a379cb8d1abc6167a73 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Tue, 4 Jul 2023 08:56:02 -0400 Subject: [PATCH] Try out community resources prototype --- app/router.js | 1 + app/templates/community/resources.hbs | 57 +++++++++++++++++++++++++++ app/utils/header-links.js | 5 +++ 3 files changed, 63 insertions(+) create mode 100644 app/templates/community/resources.hbs diff --git a/app/router.js b/app/router.js index f41bc92f..a4c7e7f8 100644 --- a/app/router.js +++ b/app/router.js @@ -20,6 +20,7 @@ Router.map(function () { }); this.route('meetups-getting-started'); this.route('invasion-of-ukraine'); + this.route('resources'); }); this.route('editions', function () { diff --git a/app/templates/community/resources.hbs b/app/templates/community/resources.hbs new file mode 100644 index 00000000..147c4487 --- /dev/null +++ b/app/templates/community/resources.hbs @@ -0,0 +1,57 @@ +{{page-title 'Resources'}} +
+

+ Community Resources +

+ +

+ Community members have provided useful projects that may help others learn, + share ideas, and demonstrate technical possibilities. +

+ +
+

Tutorials

+

+ The Glimmer Tutorial + is an interactive tutorial for Polaris' new fileformat: gjs. By + @NullVoxPopuli +

+

+ Limber + is a fast REPL for quickly prototyping out ideas or issue reproductions in + Ember. By + @NullVoxPopuli +

+
+ +
+

Sample Apps

+

+ Ember Discussion Forum + — a great venue for discussing features, architecture and best + practices. +

+
+ +
+

Technical Demos

+

+ Using Vite with Ember + — This is the hard way to use Vite with Ember, but it showcases what + modern build tooling can achieve, and represents (at a high level) the + end-goal of the + Embroider + efforts -- where build times are instant -- though under embroider, there + will be much less boilerplate. By + @lifeart +

+
+ +

+ Disclaimer: these links may contain out of date information, and may or may + not align with ember's plans, past, present, or future. +

+ +
diff --git a/app/utils/header-links.js b/app/utils/header-links.js index 557a444f..4bac53b6 100644 --- a/app/utils/header-links.js +++ b/app/utils/header-links.js @@ -101,6 +101,11 @@ export default [ name: 'Guidelines', type: 'link', }, + { + href: 'https://emberjs.com/community/resources', + name: 'Community Resources', + type: 'link', + }, { href: 'https://emberjs.com/community/black-lives-matter/', name: 'Black Lives Matter',