Skip to content

Commit 2e9c4e0

Browse files
committed
Moving to 11ty
1 parent 9efe0ae commit 2e9c4e0

File tree

9 files changed

+66
-66
lines changed

9 files changed

+66
-66
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
.DS_Store
2+
node_modules
3+
_site

_includes/default.njk

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: OpenJS NodeJS Application Developer Study Guide
3+
---
4+
<!doctype html>
5+
<html lang="en">
6+
<head>
7+
<meta charset="utf-8">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
9+
<title>{{ title }}</title>
10+
</head>
11+
<body>
12+
{{ content | safe }}
13+
</body>
14+
</html>

_layouts/default.html

Lines changed: 0 additions & 65 deletions
This file was deleted.

buffers-and-streams/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: default.njk
3+
title: Buffers and Streams
4+
---
5+
6+
I've seen things you people wouldn't believe. Attack ships on fire off the shoulder of Orion. I watched C-beams glitter in the dark near the Tannhäuser Gate. All those moments will be lost in time, like buffers and streams.

child-processes/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: default.njk
3+
title: Child Processes
4+
---
5+
6+
I've seen things you people wouldn't believe. Attack ships on fire off the shoulder of Orion. I watched C-beams glitter in the dark near the Tannhäuser Gate. All those moments will be lost in time, like child processes.

control-flow/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: default.njk
3+
title: Control Flow
4+
---
5+
6+
I've seen things you people wouldn't believe. Attack ships on fire off the shoulder of Orion. I watched C-beams glitter in the dark near the Tannhäuser Gate. All those moments will be lost in time, like control flow.

diagnostics/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: default.njk
3+
title: Diagnostics
4+
---
5+
6+
I've seen things you people wouldn't believe. Attack ships on fire off the shoulder of Orion. I watched C-beams glitter in the dark near the Tannhäuser Gate. All those moments will be lost in time, like disgnostics.

index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: default.njk
3+
title: OpenJS NodeJS Application Developer Study Guide
4+
---
5+
6+
# {{ title }}
7+
8+
TODO:
9+
10+
- Set out the purpose here and list the sections with links
11+
- Styling and update the default template

readme.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,18 @@
22

33
The OpenJS Node.js Application Developer certification is designed for anyone looking to demonstrate competence with Node.js to create applications of any knd, with a focus of Node.js core APIs.
44

5-
[OpenJS - details of certification](https://openjsf.org/certification/)
5+
[OpenJS - details of certification](https://openjsf.org/certification/)
6+
7+
## Local site
8+
9+
To run locally, install [11ty](https://11ty.io) using:
10+
11+
```
12+
npm install -g @11ty/eleventy
13+
```
14+
15+
Then run `eleventy --serve`. You can access your site on [localhost:8080](http://localhost:8080).
16+
17+
## Deployment
18+
19+
TODO: Use Github pages deployment for 11ty (from the generated \_site folder)

0 commit comments

Comments
 (0)