diff --git a/src/pages/index.md b/src/pages/index.md index 2511961b..40228137 100644 --- a/src/pages/index.md +++ b/src/pages/index.md @@ -20,7 +20,7 @@ imports:
Greenwood is HTML first by design. Start from just an index.html file or leverage hybrid, file-system based routing to easily achieve static and dynamic pages side-by-side. Single Page Applications (SPA) also supported.
+Greenwood is HTML first by design. Start from just an index.html
file or leverage hybrid, file-system based routing to easily achieve static and dynamic pages side-by-side. Single Page Applications (SPA) also supported.
Web Components are not only a great component model, but also a great templating model for generating static HTML. Below is a dynamic page in Greenwood powered by the Custom Elements API and server-rendering an imported custom element.
+Web Components are not only a great component model, but also a great templating model for generating static HTML. Below is a dynamic page in Greenwood powered by the Custom Elements API and server-rendering an imported custom element.
```js // src/pages/products.js @@ -79,7 +79,7 @@ imports:Greenwood makes it possible to author real isomorphic Web Components, using Light or Shadow DOM, re-using that same definition across the server and client side. Combined with Web APIs like Constructable Stylesheets and Import Attributes, Web Components make for a compelling solution as the web's own component model.
+Greenwood makes it possible to author real isomorphic Web Components, using Light or Shadow DOM, re-using that same definition across the client and the server. Combined with Web APIs like Constructable Stylesheets
and Import Attributes
, Web Components make for a compelling solution as the web's own component model.
Need client side data fetching or mutations? Greenwood provides API routes out of the box that are fully invested in web standards like Fetch and FormData. Of course it is all fully compatible with server-rendering Web Components; a perfect companion for HTML over the wire solutions!
+Need client side data fetching or mutations? Greenwood provides API routes out of the box that are fully invested in web standards like Fetch
and FormData
. Of course it is all fully compatible with server-rendering Web Components; a perfect companion for HTML over the wire solutions!