├── client ├── public │ ├── app │ │ ├── about │ │ │ ├── about.css │ │ │ └── about.coffee │ │ ├── gallery │ │ │ ├── list │ │ │ │ ├── gallery-list.css │ │ │ │ ├── gallery-list.coffee │ │ │ │ └── gallery-list.tpl.html │ │ │ └── detail │ │ │ │ ├── gallery-detail.coffee │ │ │ │ └── gallery-detail.tpl.html │ │ ├── article │ │ │ ├── list │ │ │ │ └── article-list.css │ │ │ ├── Common │ │ │ │ ├── article-sider-lastest-comments.coffee │ │ │ │ ├── article-sider.tpl.html │ │ │ │ ├── article-sider-search.coffee │ │ │ │ ├── article-sider-search.tpl.html │ │ │ │ ├── article-sider-lastest-comments.tpl.html │ │ │ │ └── article-post-header.tpl.html │ │ │ ├── detail │ │ │ │ └── article-detail.css │ │ │ ├── archives │ │ │ │ ├── article-archives.css │ │ │ │ ├── article-archives.coffee │ │ │ │ └── article-archives.tpl.html │ │ │ ├── article.css │ │ │ └── article.coffee │ │ ├── _framework │ │ │ ├── framework.coffee │ │ │ ├── framework-MainCtrl.coffee │ │ │ ├── framework-TopCtrl.coffee │ │ │ └── framework-HeadCtrl.coffee │ │ ├── index │ │ │ ├── index.coffee │ │ │ └── index.css │ │ └── i18n │ │ │ └── languages │ │ │ └── zh-cn.coffee │ ├── common │ │ ├── templates.coffee │ │ ├── untils.coffee │ │ ├── directives.coffee │ │ ├── services.coffee │ │ ├── resources │ │ │ ├── galleries.coffee │ │ │ ├── board.coffee │ │ │ ├── categories.coffee │ │ │ ├── users.coffee │ │ │ └── articles.coffee │ │ ├── services │ │ │ ├── messager.coffee │ │ │ ├── context.coffee │ │ │ ├── odateResource.js │ │ │ ├── progress.coffee │ │ │ └── security.coffee │ │ ├── directives │ │ │ ├── _ngBindHtmlUnsafe.coffee │ │ │ ├── fancybox.coffee │ │ │ └── oDataPager.coffee │ │ ├── untils │ │ │ ├── ajaxErrorHandler.coffee │ │ │ └── ajaxLoading.coffee │ │ ├── until.js │ │ ├── init.coffee │ │ └── filters.coffee │ ├── vendor │ │ ├── unify_1.3 │ │ │ └── theme │ │ │ │ ├── red │ │ │ │ ├── reset.css │ │ │ │ └── header1-red.css │ │ │ │ ├── default │ │ │ │ └── reset.css │ │ │ │ ├── blue │ │ │ │ └── header1-blue.css │ │ │ │ ├── light │ │ │ │ └── header1-light.css │ │ │ │ └── orange │ │ │ │ └── header1-orange.css │ │ └── fancybox │ │ │ ├── blank.gif │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_overlay.png │ │ │ ├── fancybox_sprite.png │ │ │ ├── fancybox_loading@2x.gif │ │ │ ├── fancybox_sprite@2x.png │ │ │ ├── .gitattributes │ │ │ └── .bower.json │ ├── robots.txt │ └── img │ │ ├── up.png │ │ ├── zack.jpg │ │ ├── avatar.png │ │ ├── bg_sky.jpg │ │ ├── favicon.png │ │ ├── upgrade.png │ │ ├── works │ │ ├── 318.png │ │ ├── api.png │ │ ├── xfj.png │ │ └── dxyw.png │ │ ├── social │ │ ├── rss.png │ │ └── github.png │ │ ├── main_bg_image.jpg │ │ ├── overlay-icon.png │ │ └── main_bg_grid_tile.png └── admin │ ├── common │ ├── templates.coffee │ ├── untils.coffee │ ├── services.coffee │ ├── resources │ │ ├── galleries.coffee │ │ ├── board.coffee │ │ ├── categories.coffee │ │ ├── users.coffee │ │ └── articles.coffee │ ├── directives.coffee │ ├── directives │ │ ├── _ngBindHtmlUnsafe.coffee │ │ ├── ckeditor.coffee │ │ ├── myDatepicker.coffee │ │ ├── oDataPager.coffee │ │ ├── epicEditor.coffee │ │ └── activeLink.coffee │ ├── services │ │ ├── tip.coffee │ │ ├── context.coffee │ │ ├── version.coffee │ │ ├── odataResource.js │ │ ├── messager.coffee │ │ └── security.coffee │ ├── untils │ │ ├── ajaxErrorHandler.coffee │ │ ├── promissLoading.coffee │ │ └── ajaxLoading.coffee │ ├── init.coffee │ └── filters.coffee │ ├── img │ ├── up.png │ ├── logo.gif │ ├── zack.jpg │ ├── avatar.png │ ├── bg_sky.jpg │ ├── favicon.ico │ ├── upgrade.png │ ├── social │ │ ├── rss.png │ │ └── github.png │ ├── works │ │ ├── 318.png │ │ ├── api.png │ │ ├── dxyw.png │ │ └── xfj.png │ ├── main_bg_image.jpg │ ├── loading_animation.gif │ └── main_bg_grid_tile.png │ ├── app │ ├── dialogs │ │ ├── dialogs.coffee │ │ └── version-upgrade │ │ │ ├── version-upgrade-dialog.coffee │ │ │ └── version-upgrade-dialog.tpl.html │ ├── article │ │ ├── article.coffee │ │ ├── list │ │ │ └── article-list.coffee │ │ └── edit │ │ │ └── article-edit.less │ ├── gallery │ │ ├── gallery.coffee │ │ └── list │ │ │ ├── gallery-list.coffee │ │ │ └── gallery-list.tpl.html │ ├── system │ │ ├── 401 │ │ │ ├── index.coffee │ │ │ └── index.tpl.html │ │ ├── 404 │ │ │ └── index.coffee │ │ ├── user │ │ │ ├── user.css │ │ │ ├── user-edit-dialog.coffee │ │ │ └── user.coffee │ │ ├── system.coffee │ │ └── history │ │ │ ├── history.coffee │ │ │ └── history.tpl.html │ ├── _framework │ │ ├── framework.coffee │ │ ├── framework-LoginCtrl.coffee │ │ └── framework-MainCtrl.coffee │ ├── dashboard │ │ ├── dashboard.coffee │ │ └── dashboard.tpl.html │ ├── category │ │ ├── category-edit-dialog.coffee │ │ └── category.coffee │ ├── style.css │ └── app.coffee │ ├── robots.txt │ ├── plugin │ ├── ckeditor_4.4.5 │ │ ├── plugins │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── link │ │ │ │ ├── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ └── dialogs │ │ │ │ │ └── anchor.js │ │ │ ├── smiley │ │ │ │ └── images │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ ├── wink_smile.png │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── whatchutalkingabout_smile.png │ │ │ ├── image │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── hidpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── icon-rtl.png │ │ │ ├── flash │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── iframe │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_pre.png │ │ │ │ │ ├── block_address.png │ │ │ │ │ └── block_blockquote.png │ │ │ ├── templates │ │ │ │ └── templates │ │ │ │ │ ├── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ │ │ └── default.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ └── lang │ │ │ │ │ └── _translationstatus.txt │ │ │ ├── wsc │ │ │ │ ├── README.md │ │ │ │ ├── LICENSE.md │ │ │ │ └── dialogs │ │ │ │ │ └── wsc.css │ │ │ └── scayt │ │ │ │ ├── README.md │ │ │ │ ├── LICENSE.md │ │ │ │ └── dialogs │ │ │ │ └── toolbar.css │ │ ├── skins │ │ │ └── bootstrapck │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── lock.png │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ └── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ └── lock-open.png │ │ │ │ ├── scss │ │ │ │ ├── config │ │ │ │ │ ├── _config.scss │ │ │ │ │ └── _defaults.scss │ │ │ │ ├── browser-specific │ │ │ │ │ ├── iequirks │ │ │ │ │ │ └── dialog_iequirks.scss │ │ │ │ │ ├── gecko │ │ │ │ │ │ └── editor_gecko.scss │ │ │ │ │ ├── ie8 │ │ │ │ │ │ ├── editor_ie8.scss │ │ │ │ │ │ └── dialog_ie8.scss │ │ │ │ │ └── opera │ │ │ │ │ │ └── dialog_opera.scss │ │ │ │ └── components │ │ │ │ │ └── _presets.scss │ │ │ │ ├── sample │ │ │ │ ├── css │ │ │ │ │ └── bootstrapck-sample.css │ │ │ │ └── js │ │ │ │ │ └── analytics.js │ │ │ │ └── readme.md │ │ ├── config.js │ │ └── README.md │ └── EpicEditor-v0.2.2 │ │ └── themes │ │ └── editor │ │ ├── epic-light.css │ │ └── epic-dark.css │ └── data │ └── version.txt ├── lite ├── .gitigonre ├── views │ └── index.html ├── package.json └── index.js ├── react-native ├── .watchmanconfig ├── android │ ├── settings.gradle │ ├── app │ │ └── src │ │ │ └── main │ │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── com │ │ │ ├── app │ │ │ └── MainActivity.java │ │ │ └── cms │ │ │ └── MainActivity.java │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── build.gradle │ └── gradle.properties ├── src │ ├── config.js │ ├── app │ │ ├── post │ │ │ ├── containers │ │ │ │ ├── List.styles.js │ │ │ │ ├── Detail.styles.js │ │ │ │ └── Detail.js │ │ │ ├── components │ │ │ │ ├── ListItem.styles.js │ │ │ │ ├── ListItem.js │ │ │ │ ├── Title.styles.js │ │ │ │ └── Title.js │ │ │ └── redux │ │ │ │ ├── posts.js │ │ │ │ └── post.js │ │ ├── reducers.js │ │ ├── layout │ │ │ ├── Header.styles.js │ │ │ └── Header.js │ │ ├── routes.js │ │ └── home │ │ │ └── containers │ │ │ └── Home.js │ └── index.js ├── package.json ├── index.ios.js ├── .gitignore ├── ios │ ├── App │ │ ├── AppDelegate.h │ │ ├── main.m │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ └── Info.plist │ ├── CMS │ │ ├── AppDelegate.h │ │ ├── main.m │ │ └── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── AppTests │ │ └── Info.plist │ └── CMSTests │ │ └── Info.plist └── patch.js ├── server ├── static │ └── upload │ │ ├── gallery │ │ └── README.md │ │ └── temp │ │ └── README.md ├── bootstrap │ └── init-data │ │ ├── common │ │ ├── log.json │ │ └── tag.json │ │ ├── system │ │ └── user.json │ │ ├── board │ │ └── board.json │ │ ├── article │ │ ├── category.json │ │ └── article.json │ │ ├── index.coffee │ │ └── photo │ │ └── gallery.json ├── resources │ ├── auth.coffee │ ├── article │ │ ├── comment.coffee │ │ └── category.coffee │ ├── board │ │ └── board.coffee │ ├── gallery │ │ └── gallery.coffee │ └── system │ │ └── user.coffee ├── index.js ├── models │ ├── article │ │ ├── tag.coffee │ │ ├── category.coffee │ │ ├── comment.coffee │ │ └── article.coffee │ ├── board │ │ └── board.coffee │ ├── gallery │ │ └── gallery.coffee │ ├── system │ │ └── user.coffee │ └── index.coffee ├── _migrations │ ├── 001-test.js │ └── readme.md ├── middleware │ ├── authorization.coffee │ └── domainError.coffee ├── server.coffee └── functions │ ├── upload.coffee │ └── login.coffee ├── .gitignore ├── data-migration-tool ├── models │ ├── common │ │ ├── log.coffee │ │ └── tag.coffee │ ├── article │ │ ├── category.coffee │ │ └── article.coffee │ ├── gallery │ │ └── gallery.coffee │ ├── board │ │ └── board.coffee │ └── system │ │ └── user.coffee ├── bootstrap │ └── registerModels.coffee ├── package.json ├── run.js ├── util │ └── requires.coffee ├── import-board.coffee ├── import-user.coffee └── import-photo.coffee ├── .travis.yml ├── chrome-extension ├── icon.png ├── loading_animation.gif ├── popup.js ├── popup.css ├── manifest.json ├── content_css.css ├── background.js ├── popup.html └── content_script.js ├── todo-list.md ├── config ├── config.dev.js └── config.prd.js ├── bower.json └── package.json /client/public/app/about/about.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lite/.gitigonre: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /react-native/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/static/upload/gallery/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/static/upload/temp/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _dist/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /server/bootstrap/init-data/common/log.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-migration-tool/models/common/log.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/admin/common/templates.coffee: -------------------------------------------------------------------------------- 1 | angular.module('admin-templates',[]) -------------------------------------------------------------------------------- /client/public/common/templates.coffee: -------------------------------------------------------------------------------- 1 | angular.module('public-templates',[]) -------------------------------------------------------------------------------- /server/resources/auth.coffee: -------------------------------------------------------------------------------- 1 | module.exports = 2 | admin: (req) -> !!req.user 3 | -------------------------------------------------------------------------------- /client/public/app/gallery/list/gallery-list.css: -------------------------------------------------------------------------------- 1 | .gallery-list ul li:hover{opacity: 0.8} -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- 1 | require("coffee-script").register() 2 | require("./server.coffee") 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - "0.12" 5 | 6 | script: make 7 | -------------------------------------------------------------------------------- /client/public/vendor/unify_1.3/theme/red/reset.css: -------------------------------------------------------------------------------- 1 | .blog > p a { 2 | color: #E74C3C; 3 | } -------------------------------------------------------------------------------- /react-native/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'CMS' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /client/admin/img/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/admin/img/up.png -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- 1 | # robots.txt for http://www.woshinidezhu.com 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /client/public/vendor/unify_1.3/theme/default/reset.css: -------------------------------------------------------------------------------- 1 | .blog > p a { 2 | color: #72c02c; 3 | } -------------------------------------------------------------------------------- /server/models/article/tag.coffee: -------------------------------------------------------------------------------- 1 | module.exports = 2 | name: String 3 | collections: [] 4 | -------------------------------------------------------------------------------- /chrome-extension/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/chrome-extension/icon.png -------------------------------------------------------------------------------- /client/admin/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/admin/img/logo.gif -------------------------------------------------------------------------------- /client/admin/img/zack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/admin/img/zack.jpg -------------------------------------------------------------------------------- /client/public/app/article/list/article-list.css: -------------------------------------------------------------------------------- 1 | /* 搜索高亮 */ 2 | .ui-match { background: #FF9632; } 3 | -------------------------------------------------------------------------------- /client/public/img/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/public/img/up.png -------------------------------------------------------------------------------- /client/public/img/zack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/public/img/zack.jpg -------------------------------------------------------------------------------- /client/admin/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/admin/img/avatar.png -------------------------------------------------------------------------------- /client/admin/img/bg_sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/admin/img/bg_sky.jpg -------------------------------------------------------------------------------- /client/admin/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/admin/img/favicon.ico -------------------------------------------------------------------------------- /client/admin/img/upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/admin/img/upgrade.png -------------------------------------------------------------------------------- /client/public/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/public/img/avatar.png -------------------------------------------------------------------------------- /client/public/img/bg_sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/public/img/bg_sky.jpg -------------------------------------------------------------------------------- /react-native/src/config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | apiRoot: 'http://api.zackyang.com/oData', 3 | }; 4 | -------------------------------------------------------------------------------- /client/admin/app/dialogs/dialogs.coffee: -------------------------------------------------------------------------------- 1 | angular.module("dialogs", 2 | [ 3 | "version-upgrade-dialog" 4 | ]) 5 | -------------------------------------------------------------------------------- /client/admin/img/social/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/admin/img/social/rss.png -------------------------------------------------------------------------------- /client/admin/img/works/318.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/admin/img/works/318.png -------------------------------------------------------------------------------- /client/admin/img/works/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/admin/img/works/api.png -------------------------------------------------------------------------------- /client/admin/img/works/dxyw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/admin/img/works/dxyw.png -------------------------------------------------------------------------------- /client/admin/img/works/xfj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/admin/img/works/xfj.png -------------------------------------------------------------------------------- /client/admin/robots.txt: -------------------------------------------------------------------------------- 1 | # robots.txt for http://admin.woshinidezhu.com 2 | 3 | User-agent: * 4 | Disallow: * 5 | -------------------------------------------------------------------------------- /client/public/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/public/img/favicon.png -------------------------------------------------------------------------------- /client/public/img/upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/public/img/upgrade.png -------------------------------------------------------------------------------- /client/public/img/works/318.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/public/img/works/318.png -------------------------------------------------------------------------------- /client/public/img/works/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/public/img/works/api.png -------------------------------------------------------------------------------- /client/public/img/works/xfj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/public/img/works/xfj.png -------------------------------------------------------------------------------- /client/admin/app/article/article.coffee: -------------------------------------------------------------------------------- 1 | angular.module('article' 2 | ['article-edit' 3 | 'article-list' 4 | ]) 5 | -------------------------------------------------------------------------------- /client/admin/app/gallery/gallery.coffee: -------------------------------------------------------------------------------- 1 | angular.module('gallery' 2 | ['gallery-edit' 3 | 'gallery-list' 4 | ]) 5 | -------------------------------------------------------------------------------- /client/public/img/social/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/public/img/social/rss.png -------------------------------------------------------------------------------- /client/public/img/works/dxyw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/public/img/works/dxyw.png -------------------------------------------------------------------------------- /client/admin/img/main_bg_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/admin/img/main_bg_image.jpg -------------------------------------------------------------------------------- /client/admin/img/social/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/admin/img/social/github.png -------------------------------------------------------------------------------- /client/public/img/main_bg_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/public/img/main_bg_image.jpg -------------------------------------------------------------------------------- /client/public/img/overlay-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/public/img/overlay-icon.png -------------------------------------------------------------------------------- /client/public/img/social/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackyang000/CMS/HEAD/client/public/img/social/github.png -------------------------------------------------------------------------------- /lite/views/index.html: -------------------------------------------------------------------------------- 1 | {{#each this}} 2 |
加载中...
11 || 标题 | 15 ||
| 正文 | 19 ||
| URL | 23 |
17 | {{gallery.description | i18n}}
26 |Type the text here
'},{title:"Strange Template",image:"template2.gif",description:"A template that defines two colums, each one with a title, and some text.", 6 | html:'Title 1 | Title 2 | |
| Text 1 | Text 2 |
More text goes here.
'},{title:"Text and Table",image:"template3.gif",description:"A title with some text and a table.",html:'Type the text here
| Hidden | 22 |Cover | 23 |Url | 24 |Name | 25 |Description | 26 |Order | 27 |
|---|---|---|---|---|---|
| 32 | | {{item.url}} | 34 |{{item.name}} | 35 |{{item.description}} | 36 |{{item.order}} | 37 |
17 |19 | 20 |{{gallery.description | i18n}}
18 |