DEV Community

Zander Martineau
Zander Martineau

Posted on

 

Creating dynamic layouts with Jekyll

Liquid syntax error: Unknown tag 'endraw'

Top comments (1)

Collapse
 
remotesynth profile image
Brian Rinaldi

Very cool. I did something similar years back but it used a file naming convention so that I didn't need to put things into the yaml (the includes depended on the categories metadata in this case). Of course, that means that the includes couldn't be reused in the same manner as yours and perhaps not as flexible but that was perfect for my use case.

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.