Skip to content

Commit 3d78b17

Browse files
authored
Merge pull request #9 from Node-Study-Guide/moving-domain
Adjusting things
2 parents a9701a6 + 4432a19 commit 3d78b17

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.eleventy.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module.exports = function(eleventyConfig) {
22
eleventyConfig.addPassthroughCopy("css");
3+
eleventyConfig.addPassthroughCopy("CNAME");
34
eleventyConfig.addLayoutAlias("default", "default.njk");
45
return {
56
passthroughFileCopy: true

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodestudyguide.com

index.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ layout: default.njk
33
title: OpenJS NodeJS Application Developer Study Guide
44
---
55

6-
TODO:
6+
Welcome to the ONAD Study Guide. This site has been set up to help you prepare for [OpenJS Node.js Application Developer (JSNAD)](https://training.linuxfoundation.org/certification/jsnad/) certification.
77

8-
- Set out the purpose here and list the sections with links
9-
- Styling and update the default template
8+
Each of the topics on the left corresponds to an area of knowledge you will need to be familiar with. Feel free to work through the content in whatever order you like.
109

11-
[Events]({{ "/events" | url }})
12-
13-
-- Adding timestamp to test deploy
10+
```
11+
NOTE: This is an early work-in-progress. Most content is not in place yet. Thank you for your patience!
12+
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "OpenJS Node application developer study guide",
55
"scripts": {
66
"start": "npx eleventy --serve",
7-
"preDeploy": "npx eleventy --pathprefix=openjs-nodejs-application-developer-study-guide",
7+
"preDeploy": "npx eleventy",
88
"deploy": "npm run preDeploy; timestamp=$(date \"+%s\") && gh-pages -d _site -m \"Deployed at $timestamp\""
99
},
1010
"repository": {

0 commit comments

Comments
 (0)