These are the projects for the JavaScript Level 2 module in Learn JS the Hard Way.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

981 B

= Ex 05: Static Blog Generator

This exercise has you use a templating system, and what you've learned from Ex 04 to process a directory of .md files and convert them to .html files. This is a simple static blog generator, but as with all of the previous exercises you're goal is to push it as far as you can trying as many techniques as you can.

Since you've gone through the HTML and CSS portions of the course you should be able to create a decent starter CSS, but I highly suggest you just create a quick one using blockstart.css or even grab a premade "classless CSS" to get started. You can also use the one from the course at zedshaw.games which will get you started as well, and is also a classless CSS.

The key point of the last paragraph is to not become obsesses with the CSS at first, but instead to get your .md file processing working right, then make your static blog look nice.