diff --git a/scripts/web.js b/scripts/web.js index 0081d24ab..58710f9ac 100644 --- a/scripts/web.js +++ b/scripts/web.js @@ -64,6 +64,9 @@ snippets = util.readSnippets(snippetsPath); try { startPart = fs.readFileSync(path.join(staticPartsPath, 'page-start.html'), 'utf8'); endPart = fs.readFileSync(path.join(staticPartsPath, 'page-end.html'), 'utf8'); + + beginnerStaticPart = fs.readFileSync(path.join(staticPartsPath, 'beginner-page-start.html'), 'utf8'); + endStaticPart = fs.readFileSync(path.join(staticPartsPath, 'beginner-page-end.html'), 'utf8'); } catch (err) { // Handle errors (hopefully not!) console.log(`${chalk.red('ERROR!')} During static part loading: ${err}`); diff --git a/static-parts/beginner-page-end.html b/static-parts/beginner-page-end.html new file mode 100644 index 000000000..886e2d2c7 --- /dev/null +++ b/static-parts/beginner-page-end.html @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/static-parts/beginner-page-start.html b/static-parts/beginner-page-start.html new file mode 100644 index 000000000..d367decd7 --- /dev/null +++ b/static-parts/beginner-page-start.html @@ -0,0 +1,24 @@ + + + + + 30 seconds of code - Beginner Section + + + + + + + + + + + +
+
+
+

Beginner snippets

+

The following section is aimed towards individuals who are at the start of their web developer journey.


+
+
+
\ No newline at end of file