summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--www/public/assets/blog/demo-day-2021-09/discord-chat.jpgbin0 -> 41959 bytes
-rw-r--r--www/public/assets/blog/demo-day-2021-09/hero.pngbin0 -> 1771348 bytes
-rw-r--r--www/public/assets/blog/demo-day-2021-09/social.pngbin0 -> 384584 bytes
-rw-r--r--www/src/pages/blog/demo-day-2021-09.astro48
-rw-r--r--www/src/pages/index.astro4
5 files changed, 50 insertions, 2 deletions
diff --git a/www/public/assets/blog/demo-day-2021-09/discord-chat.jpg b/www/public/assets/blog/demo-day-2021-09/discord-chat.jpg
new file mode 100644
index 000000000..3a0fb3615
--- /dev/null
+++ b/www/public/assets/blog/demo-day-2021-09/discord-chat.jpg
Binary files differ
diff --git a/www/public/assets/blog/demo-day-2021-09/hero.png b/www/public/assets/blog/demo-day-2021-09/hero.png
new file mode 100644
index 000000000..ca9067ecf
--- /dev/null
+++ b/www/public/assets/blog/demo-day-2021-09/hero.png
Binary files differ
diff --git a/www/public/assets/blog/demo-day-2021-09/social.png b/www/public/assets/blog/demo-day-2021-09/social.png
new file mode 100644
index 000000000..cb390cc6e
--- /dev/null
+++ b/www/public/assets/blog/demo-day-2021-09/social.png
Binary files differ
diff --git a/www/src/pages/blog/demo-day-2021-09.astro b/www/src/pages/blog/demo-day-2021-09.astro
new file mode 100644
index 000000000..48a378f98
--- /dev/null
+++ b/www/src/pages/blog/demo-day-2021-09.astro
@@ -0,0 +1,48 @@
+---
+import { Markdown } from 'astro/components';
+import BaseHead from '../../components/BaseHead.astro';
+import BlogHeader from '../../components/BlogHeader.astro';
+import BlogPost from '../../components/BlogPost.astro';
+
+let title = 'Astro Demo Day September Edition';
+let description = 'Astro September Demo Day was today and we had 4 amazing talks, including one with big announcements on the future direction of Astro.';
+let publishDate = 'September 20, 2021';
+let permalink = 'https://astro.build/blog/demo-day-2021-09';
+let lang = 'en';
+---
+
+<html lang={ lang ?? 'en' }>
+ <head>
+ <BaseHead title={title} description={description} canonicalURL={permalink} image="/assets/blog/demo-day-2021-09/social.png" />
+ <link rel="stylesheet" href={Astro.resolve('../../scss/blog.css')} />
+ <style>
+ .chat-messages {
+
+ }
+ </style>
+ </head>
+
+ <body>
+ <BlogHeader />
+ <BlogPost title={title} author="matthew" heroImage="/assets/blog/demo-day-2021-09/hero.png" publishDate={publishDate}>
+ <Markdown>
+ **Astro Demo Day** was today! We had **4** amazing talks, including one big announcement on the future direction of Astro. If you missed the livestream, fear not! You can see the full event [on YouTube](https://www.youtube.com/watch?v=-ExcBJrXOd8) or watch the talks in any order by visiting the links below. Subscribe to the [Astro YouTube channel](https://www.youtube.com/channel/UCeFjmvZEK-MoefuYXptnX6A) to make sure you don't miss our next demo day. Today's demos were:
+
+ * [Developing the Astro VSCode extension](https://youtu.be/-ExcBJrXOd8?t=109) 🧑‍💻 from [Matthew Phillips](https://twitter.com/matthewcp)
+ * [Integrating a CMS - Astro+Forestry+Netlify](https://youtu.be/-ExcBJrXOd8?t=763) 🌳 from [Tony Sullivan](https://twitter.com/navillus_dev)
+ * [The Astro SEO component](https://youtu.be/-ExcBJrXOd8?t=1384) 🗃 from [Jonas Schumacher](https://twitter.com/jonasmerlin1)
+ * [Astro's v2 Compiler and a Surprise](https://youtu.be/-ExcBJrXOd8?t=2070) 🪄 from [Drew Powers](https://twitter.com/drwpow) and [Nate Moore](https://twitter.com/n_moore)
+
+ As always, our Discord community brought the hype:
+
+ <img alt="Messages from the Demo Day chat room on Discord" src="/assets/blog/demo-day-2021-09/discord-chat.jpg" class="chat-messages" />
+
+ ## The next Astro release
+
+ Astro's next release will be our biggest ever, featuring a new WASM-powered compiler plus a new Vite-powered runtime. You can expect a preview release on [npm](https://www.npmjs.com/package/astro) later today or tomorrow. Over the next few weeks, we will continue to polish the new code as we prepare for its official release!
+
+ If you haven't already, follow [@astrodotbuild](https://twitter.com/astrodotbuild) on Twitter for more news and announcements, and [join our Discord](https://astro.build/chat) to learn how you can try out the new previous release.
+ </Markdown>
+ </BlogPost>
+ </body>
+</html>
diff --git a/www/src/pages/index.astro b/www/src/pages/index.astro
index d0897cb0b..2d1f71318 100644
--- a/www/src/pages/index.astro
+++ b/www/src/pages/index.astro
@@ -51,8 +51,8 @@ let lang = 'en';
<br/>
- <a class="action-button" href="/blog/astro-repl">
- New Blog Post - Introducing the Astro REPL
+ <a class="action-button" href="/blog/demo-day-2021-09/">
+ New Blog Post - Demo Day September Edition
<span style="float: right;">&#8594;</span>
</a>