diff --git a/src/documents/projects.html b/src/documents/projects.html deleted file mode 100644 index 173e36c..0000000 --- a/src/documents/projects.html +++ /dev/null @@ -1,7 +0,0 @@ ---- -layout: "contentpage" -title: "Projects" -icon: "wrench" -order: 2 ---- -Test diff --git a/src/documents/projects.html.ejs b/src/documents/projects.html.ejs new file mode 100644 index 0000000..96343f2 --- /dev/null +++ b/src/documents/projects.html.ejs @@ -0,0 +1,10 @@ +--- +layout: "contentpage" +title: "Projects" +icon: "wrench" +order: 2 +--- +<% var projects = getCollection("projects").toJSON() %> +<% projects.forEach(function(project){ %> + <%= project.title %> +<% }) %> diff --git a/src/documents/projects/test.html b/src/documents/projects/test.html new file mode 100644 index 0000000..a1ac59b --- /dev/null +++ b/src/documents/projects/test.html @@ -0,0 +1,4 @@ +--- +title: "Test Project" +--- +Test2