Skip to content

Commit

Permalink
docs(#349): Add layout to guides
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-wade committed Aug 10, 2023
1 parent 6aa7229 commit 7cddafe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/website/pages/new-website-guide.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
layout: layout.html
title: Creating a new website
---

# Creating a new website

First, you'll need to decide what kind of website you want to use. Tybalt works well both in CSR (client-side rendered) and SSG (static site generated) application, and we provide scaffolding for either, using fastify and eleventy respectively. If you want to serve your website from a static hosting solution, like netlify or s3, you'll want to use the `eleventy` scaffold; if you want to host a running process on a server, use the `fastify` scaffold.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
layout: layout.html
title: Writing tests
---

# Writing tests

Tybalt comes with a unit testing framework built on top of jest. Jest, along with jsdom, give us the ability to simulate realistic browser environments without a browser, and give us tools for making assertions.
Expand Down

0 comments on commit 7cddafe

Please sign in to comment.