-
- Hi people
- Welcome to your new Gatsby site.
- Now go build something great.
-
-
-
- Go to page 2
+
+ {pageContext.downloadedContent.map(content => {
+ if (content.cssVars.length < 1) return null;
+ return (
+
{content.title}
+
{content.url}
+
+
+ {content.cssVars.map(cssVarWithDesc =>
+ (
+ {cssVarWithDesc.cssVar} |
+ {cssVarWithDesc.cssDesc} |
+
)
+ )}
+
+
+
);
+ })}
+ {pageContext.buildDate}
)
diff --git a/src/pages/page-2.js b/src/pages/page-2.js
deleted file mode 100644
index 666c23e..0000000
--- a/src/pages/page-2.js
+++ /dev/null
@@ -1,16 +0,0 @@
-import React from "react"
-import { Link } from "gatsby"
-
-import Layout from "../components/layout"
-import SEO from "../components/seo"
-
-const SecondPage = () => (
-