diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-02-14 11:10:08 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-02-14 11:10:08 +0100 |
commit | a65f888a77c48968087d23750e5fa4d55f2a8686 (patch) | |
tree | b88e7e5b0e98ae791726586592716cd602355abf /test | |
parent | 71059e3ea3ea9af156987a0dd4cb0a5457b0316c (diff) | |
download | gitbook-a65f888a77c48968087d23750e5fa4d55f2a8686.zip gitbook-a65f888a77c48968087d23750e5fa4d55f2a8686.tar.gz gitbook-a65f888a77c48968087d23750e5fa4d55f2a8686.tar.bz2 |
Start moving template and conrefs on Output
Diffstat (limited to 'test')
-rw-r--r-- | test/all.js | 1 | ||||
-rw-r--r-- | test/website-theme.js | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/test/all.js b/test/all.js index 242324b..35957b4 100644 --- a/test/all.js +++ b/test/all.js @@ -14,3 +14,4 @@ require('./template'); // Output require('./output-json'); require('./assets-inliner'); +require('./website-theme'); diff --git a/test/website-theme.js b/test/website-theme.js new file mode 100644 index 0000000..afbae5e --- /dev/null +++ b/test/website-theme.js @@ -0,0 +1,17 @@ + + +describe('Website Theming', function() { + +// Spec proposal: +// - Plugins can "export" a theme +// - Theme can be overrided in the book itself + + +// Themes structures +// - _layout/ (Folder containing all the templates) +// - page.html (Template used for generating a page) +// - _assets/ (Assets of the theme copied to the output) + + +}); + |