# Pastebin kAn6cffG let euphenix = ( import ~/github/manveru/euphenix { } ).extend (self: super: { parseMarkdown = super.parseMarkdown.override { flags = { prismjs = true; }; }; }); inherit (euphenix.lib) take; inherit (euphenix) build sortByRecent loadPosts; in euphenix.build { rootDir = ./.; layout = ./templates/layout.tmpl; favicon = ./static/img/favicon.svg; variables = rec { liveJS = true; posts = sortByRecent (loadPosts "/blog/" ./blog); latestPosts = take 5 posts; }; }