├── .meteor ├── .gitignore ├── release └── packages ├── client ├── stylesheets │ ├── sass │ │ ├── _titles.scss │ │ ├── _blocks.scss │ │ ├── _footer.scss │ │ ├── _errors.scss │ │ ├── _media.scss │ │ ├── _tables.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _colors.scss │ │ ├── _forms.scss │ │ ├── _sidebar.scss │ │ ├── _mixins.scss │ │ ├── _header.scss │ │ ├── main.min.scss │ │ ├── _vars-typeplate.scss │ │ └── _grid.scss │ ├── .DS_Store │ └── css │ │ ├── .DS_Store │ │ └── jquery.cleditor.css ├── views │ ├── categories │ │ ├── categories.js │ │ ├── category_posts.html │ │ ├── categories.html │ │ ├── add_category.js │ │ ├── add_category.html │ │ ├── list_categories.js │ │ └── list_categories.html │ ├── includes │ │ ├── loading.html │ │ ├── errors.html │ │ ├── errors.js │ │ └── wysiwyg.html │ ├── .DS_Store │ ├── pages │ │ ├── view_page.html │ │ ├── edit_page.html │ │ ├── templates │ │ │ ├── posts_list.html │ │ │ ├── posts_lists_excerpt.html │ │ │ ├── default.html │ │ │ └── default.js │ │ ├── view_page.js │ │ ├── page_list.js │ │ ├── edit_page.js │ │ ├── pages_list.html │ │ ├── new_page.html │ │ └── new_page.js │ ├── admin │ │ ├── login.html │ │ ├── .DS_Store │ │ ├── admin.js │ │ ├── admin_sidebar.html │ │ └── admin.html │ ├── posts │ │ ├── edit_post.html │ │ ├── view_post.js │ │ ├── posts_list.js │ │ ├── view_post.html │ │ ├── edit_post.js │ │ ├── posts_list.html │ │ ├── new_post.html │ │ └── new_post.js │ ├── users │ │ ├── roles_list.js │ │ ├── users_list.js │ │ ├── users.html │ │ ├── users.js │ │ ├── users_list.html │ │ └── roles_list.html │ ├── settings │ │ ├── general_settings.js │ │ ├── settings.html │ │ ├── header_settings.js │ │ ├── general_settings.html │ │ ├── settings.js │ │ ├── header_settings.html │ │ ├── menu_settings.js │ │ └── menu_settings.html │ ├── header │ │ ├── header.js │ │ └── header.html │ ├── application │ │ └── layout.html │ └── media │ │ ├── media_list.js │ │ └── media_list.html ├── main.html ├── .DS_Store ├── lib │ └── .DS_Store ├── helpers │ ├── .DS_Store │ ├── typekit.html │ └── errors.js └── main.js ├── .DS_Store ├── lib ├── .DS_Store ├── permissions.js └── router.js ├── public ├── file.gif ├── .DS_Store ├── image.gif ├── buttons.gif ├── toolbar.gif └── worksImages │ └── paulEliot1.jpg ├── packages ├── .DS_Store ├── spin ├── moment ├── iron-router ├── collectionFS ├── graphicsmagick ├── http-methods ├── micro-queue ├── power-queue ├── user-session ├── reactive-list ├── bootstrap-wysiwyg ├── cfs-public-folder ├── reactive-property └── .gitignore ├── .sass-cache ├── 02158e44c02044ad36accebd5ec2647e198987b9 │ ├── _box.scssc │ ├── _columns.scssc │ ├── _filter.scssc │ ├── _images.scssc │ ├── _opacity.scssc │ ├── _regions.scssc │ ├── _shared.scssc │ ├── _appearance.scssc │ ├── _box-shadow.scssc │ ├── _font-face.scssc │ ├── _transform.scssc │ ├── _transition.scssc │ ├── _hyphenation.scssc │ ├── _inline-block.scssc │ ├── _text-shadow.scssc │ ├── _background-clip.scssc │ ├── _border-radius.scssc │ ├── _background-origin.scssc │ ├── _box-sizing.scssc │ └── _background-size.scssc ├── 08401c0ad7ad501dba84d33296797226a7367fc0 │ ├── _css3.scssc │ ├── _support.scssc │ └── _reset.scssc ├── 1be79228d8a8bc5dc95ae1de3ec82ddc11fb1d4d │ ├── _forms.scssc │ ├── _grid.scssc │ ├── _media.scssc │ ├── _buttons.scssc │ ├── _colors.scssc │ ├── _errors.scssc │ ├── _header.scssc │ ├── _mixins.scssc │ ├── _sidebar.scssc │ ├── _tables.scssc │ ├── main.min.scssc │ ├── _typeplate.scssc │ ├── _vars-typeplate.scssc │ ├── _titles.scssc │ ├── _blocks.scssc │ ├── _footer.scssc │ └── _breakpoints.scssc ├── 2a70e55dcec18c1ab99667cb3e1212042ac4ce65 │ └── _hacks.scssc ├── 30a89a8151306c671a55f466f0ec3dffdef2738c │ └── _hacks.scssc ├── 5fd84aed066c1123a49a4b2e70d9778046041310 │ ├── _css3.scssc │ ├── _support.scssc │ └── _reset.scssc ├── 62cd69437928356a2188ce533ef9db05abe43add │ ├── _box.scssc │ ├── _columns.scssc │ ├── _filter.scssc │ ├── _images.scssc │ ├── _opacity.scssc │ ├── _regions.scssc │ ├── _shared.scssc │ ├── _appearance.scssc │ ├── _box-shadow.scssc │ ├── _font-face.scssc │ ├── _transform.scssc │ ├── _transition.scssc │ ├── _hyphenation.scssc │ ├── _inline-block.scssc │ ├── _text-shadow.scssc │ ├── _background-clip.scssc │ ├── _border-radius.scssc │ ├── _background-origin.scssc │ ├── _box-sizing.scssc │ └── _background-size.scssc ├── 6c3c9353135d4d9aa040cf155bf2d0f87f1c8330 │ ├── _forms.scssc │ ├── _grid.scssc │ ├── _media.scssc │ ├── _buttons.scssc │ ├── _colors.scssc │ ├── _errors.scssc │ ├── _header.scssc │ ├── _mixins.scssc │ ├── _sidebar.scssc │ ├── _tables.scssc │ ├── main.min.scssc │ ├── _typeplate.scssc │ ├── _vars-typeplate.scssc │ ├── _titles.scssc │ ├── _blocks.scssc │ ├── _footer.scssc │ └── _breakpoints.scssc ├── 850734b355edad0c5a94f6e312f00ffd28a993d2 │ ├── _box.scssc │ ├── _columns.scssc │ ├── _filter.scssc │ ├── _images.scssc │ ├── _opacity.scssc │ ├── _regions.scssc │ ├── _shared.scssc │ ├── _appearance.scssc │ ├── _box-shadow.scssc │ ├── _font-face.scssc │ ├── _transform.scssc │ ├── _transition.scssc │ ├── _hyphenation.scssc │ ├── _inline-block.scssc │ ├── _text-shadow.scssc │ ├── _background-clip.scssc │ ├── _border-radius.scssc │ ├── _background-origin.scssc │ ├── _box-sizing.scssc │ └── _background-size.scssc ├── b1b135f0e0071c3ffec0d62bf58c8ccb95c9b288 │ └── _hacks.scssc ├── cd8f27b1db1e8fda0dad5bd5c8a8a4fe2a30946a │ └── _hacks.scssc ├── ceef6b4763ed1f0ad749aa13106fa5835ff2542c │ ├── _box.scssc │ ├── _columns.scssc │ ├── _filter.scssc │ ├── _images.scssc │ ├── _opacity.scssc │ ├── _regions.scssc │ ├── _shared.scssc │ ├── _appearance.scssc │ ├── _box-shadow.scssc │ ├── _font-face.scssc │ ├── _transform.scssc │ ├── _transition.scssc │ ├── _hyphenation.scssc │ ├── _inline-block.scssc │ ├── _text-shadow.scssc │ ├── _background-clip.scssc │ ├── _border-radius.scssc │ ├── _background-origin.scssc │ ├── _box-sizing.scssc │ └── _background-size.scssc ├── e706a5e2bcf859659cf2acda3ee301e5190ba734 │ ├── _css3.scssc │ ├── _support.scssc │ └── _reset.scssc ├── eae41b11bce2b59e4ed9fb104c38e2c9ac1ca4e0 │ ├── _css3.scssc │ ├── _support.scssc │ └── _reset.scssc ├── 418ad867c62e8d3435cd9ae00f15d595aaa291e8 │ └── _utilities.scssc ├── 8a442de7a3a53c2f8e610debb2ab1bb678341528 │ └── _utilities.scssc ├── a22119c6b7b4895e1e43f3e7d4c5c9c27743ab99 │ └── _utilities.scssc └── dca05306bc8135662de94df30baaebf8dd7f3e5e │ └── _utilities.scssc ├── smart.json ├── server ├── fixtures.js └── publications.js ├── config.rb ├── README.md ├── smart.lock ├── collections └── collections.js └── compass_app_log.txt /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | 0.8.0 2 | -------------------------------------------------------------------------------- /client/stylesheets/sass/_titles.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/views/categories/categories.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/main.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | -------------------------------------------------------------------------------- /client/stylesheets/sass/_blocks.scss: -------------------------------------------------------------------------------- 1 | .block{ 2 | padding: 1rem; 3 | } -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/.DS_Store -------------------------------------------------------------------------------- /client/stylesheets/sass/_footer.scss: -------------------------------------------------------------------------------- 1 | .footer{ 2 | .footer-content{ 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/lib/.DS_Store -------------------------------------------------------------------------------- /public/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/public/file.gif -------------------------------------------------------------------------------- /client/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/client/.DS_Store -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/public/image.gif -------------------------------------------------------------------------------- /client/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/client/lib/.DS_Store -------------------------------------------------------------------------------- /client/views/includes/loading.html: -------------------------------------------------------------------------------- 1 | 2 | {{> spinner}} 3 | -------------------------------------------------------------------------------- /packages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/packages/.DS_Store -------------------------------------------------------------------------------- /public/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/public/buttons.gif -------------------------------------------------------------------------------- /public/toolbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/public/toolbar.gif -------------------------------------------------------------------------------- /client/views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/client/views/.DS_Store -------------------------------------------------------------------------------- /client/views/pages/view_page.html: -------------------------------------------------------------------------------- 1 | 2 | {{> pageTemplate}} 3 | -------------------------------------------------------------------------------- /client/helpers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/client/helpers/.DS_Store -------------------------------------------------------------------------------- /client/views/admin/login.html: -------------------------------------------------------------------------------- 1 | 2 | {{> loginButtons align="right"}} 3 | -------------------------------------------------------------------------------- /client/stylesheets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/client/stylesheets/.DS_Store -------------------------------------------------------------------------------- /client/views/admin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/client/views/admin/.DS_Store -------------------------------------------------------------------------------- /packages/spin: -------------------------------------------------------------------------------- 1 | /Users/ramsaylanier/.meteorite/packages/spin/SachaG/meteor-spin/3f655f0016228e4195acc784c45d3e3a247dc39f -------------------------------------------------------------------------------- /client/stylesheets/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsaylanier/MeteorCMS/HEAD/client/stylesheets/css/.DS_Store -------------------------------------------------------------------------------- /client/views/pages/edit_page.html: -------------------------------------------------------------------------------- 1 | 2 |{{{content}}}
28 |No pages
43 | {{/if}} 44 |