Skip to content

Commit 09fdd0a

Browse files
authored
Merge pull request #1 from jjmax75/11ty
Moving to 11ty
2 parents 3bf90c5 + 07c480e commit 09fdd0a

File tree

11 files changed

+5418
-65
lines changed

11 files changed

+5418
-65
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

0 commit comments

Comments
 (0)