diff --git a/build/tasks/docs-task.coffee b/build/tasks/docs-task.coffee index 27ebb1d59..bff0e01e9 100644 --- a/build/tasks/docs-task.coffee +++ b/build/tasks/docs-task.coffee @@ -273,7 +273,7 @@ module.exports = (grunt) -> # Prepare to render by loading handlebars partials - templatesPath = path.resolve(__dirname, '..', '..', 'docs-templates') + templatesPath = path.resolve(__dirname, '..', '..', 'docs', 'docs-templates') grunt.file.recurse templatesPath, (abspath, root, subdir, filename) -> if filename[0] is '_' and path.extname(filename) is '.html' Handlebars.registerPartial(filename[0..-6], grunt.file.read(abspath)) diff --git a/docs-templates/_footer.html b/docs/docs-templates/_footer.html similarity index 100% rename from docs-templates/_footer.html rename to docs/docs-templates/_footer.html diff --git a/docs-templates/_function.html b/docs/docs-templates/_function.html similarity index 100% rename from docs-templates/_function.html rename to docs/docs-templates/_function.html diff --git a/docs-templates/_header.html b/docs/docs-templates/_header.html similarity index 100% rename from docs-templates/_header.html rename to docs/docs-templates/_header.html diff --git a/docs-templates/_property.html b/docs/docs-templates/_property.html similarity index 100% rename from docs-templates/_property.html rename to docs/docs-templates/_property.html diff --git a/docs-templates/_sidebar.html b/docs/docs-templates/_sidebar.html similarity index 100% rename from docs-templates/_sidebar.html rename to docs/docs-templates/_sidebar.html diff --git a/docs-templates/_sidebarSection.html b/docs/docs-templates/_sidebarSection.html similarity index 100% rename from docs-templates/_sidebarSection.html rename to docs/docs-templates/_sidebarSection.html diff --git a/docs-templates/article.html b/docs/docs-templates/article.html similarity index 100% rename from docs-templates/article.html rename to docs/docs-templates/article.html diff --git a/docs-templates/class.html b/docs/docs-templates/class.html similarity index 100% rename from docs-templates/class.html rename to docs/docs-templates/class.html