diff --git a/_config.yml b/_config.yml index a99ae6f5dcf..ec6f629cbef 100644 --- a/_config.yml +++ b/_config.yml @@ -58,6 +58,11 @@ author: repository: nealcaren/crisis-opportunity repository_tree: master +collections: + books: + output: true + permalink: /:collection/:name/ + ## => Paths ############################## diff --git a/books.md b/books.md new file mode 100644 index 00000000000..5e28f4e6815 --- /dev/null +++ b/books.md @@ -0,0 +1,9 @@ +--- +layout: articles +# articles: +# excerpt_type: html +title: Current Catalog +data_source: books +--- + + diff --git a/books/book1.md b/books/book1.md new file mode 100644 index 00000000000..b736a0ce531 --- /dev/null +++ b/books/book1.md @@ -0,0 +1,5 @@ +--- +title: "Title of Book 1" +author: "Author Name" +--- +Content of Book 1 goes here. \ No newline at end of file diff --git a/books/book2.md b/books/book2.md new file mode 100644 index 00000000000..f0bf63d9592 --- /dev/null +++ b/books/book2.md @@ -0,0 +1,5 @@ +--- +title: "Title of Book 2" +author: "R Fisher" +--- +Content of Book 2 goes here. \ No newline at end of file