summaryrefslogtreecommitdiff
path: root/examples/blog/src/pages/posts/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'examples/blog/src/pages/posts/index.md')
-rw-r--r--examples/blog/src/pages/posts/index.md26
1 files changed, 0 insertions, 26 deletions
diff --git a/examples/blog/src/pages/posts/index.md b/examples/blog/src/pages/posts/index.md
deleted file mode 100644
index e118d869d..000000000
--- a/examples/blog/src/pages/posts/index.md
+++ /dev/null
@@ -1,26 +0,0 @@
----
-setup: |
- import Layout from '../../layouts/BlogPost.astro'
- import Cool from '../../components/Author.astro'
-title: Hello world!
-publishDate: 12 Sep 2021
-name: Nate Moore
-value: 128
-description: Just a Hello World Post!
----
-
-<Cool name={frontmatter.name} href="https://twitter.com/n_moore" client:load />
-
-This is so cool!
-
-Do variables work {frontmatter.value * 2}?
-
-```javascript
-// Example JavaScript
-
-const x = 7;
-function returnSeven() {
- return x;
-}
-
-```