A charming Jekyll theme. linus.arthr.dev/
jekyll-theme
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

setup(project): adds build tasks

+24
+8
.nova/Configuration.json
··· 1 + { 2 + "editor.default_syntax" : "liquid-html", 3 + "workspace.color" : 8, 4 + "workspace.name" : "Linus", 5 + "workspace.preview_append_paths" : false, 6 + "workspace.preview_type" : "custom", 7 + "workspace.preview_url" : "http:\/\/localhost:4000" 8 + }
+16
.nova/Tasks/Jekyll.json
··· 1 + { 2 + "actions" : { 3 + "build" : { 4 + "enabled" : true, 5 + "script" : "#!\/bin\/sh\nbundle" 6 + }, 7 + "clean" : { 8 + "enabled" : true, 9 + "script" : "#!\/bin\/sh\nbundle exec jekyll clean" 10 + }, 11 + "run" : { 12 + "enabled" : true, 13 + "script" : "#!\/bin\/sh\nbundle exec jekyll serve" 14 + } 15 + } 16 + }