├── .gitignore ├── README.md ├── res ├── style │ ├── style.scss │ ├── base │ │ ├── _color.scss │ │ ├── _base.scss │ │ ├── _reset.scss │ │ └── _mixin.scss │ ├── scss │ │ ├── _content.scss │ │ └── _home.scss │ └── style.css └── js │ ├── common │ ├── common.js │ └── method.js │ ├── plugins │ ├── laypage │ │ ├── skin │ │ │ └── laypage.css │ │ └── laypage.js │ └── urljs │ │ └── url.min.js │ ├── vue │ └── vue.min.js │ └── jquery │ └── jquery-2.2.3.min.js ├── inc ├── footer.html ├── head.html ├── header.html └── bar.html ├── aboutme.shtml ├── url.shtml ├── index.shtml ├── content.shtml └── test.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | *.7z 3 | *.rar 4 | .D* 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengcms/vue-cNodeJsOrgTest/HEAD/README.md -------------------------------------------------------------------------------- /res/style/style.scss: -------------------------------------------------------------------------------- 1 | // base 2 | @import "base/color"; 3 | @import "base/base"; 4 | @import "base/mixin"; 5 | @import "base/reset"; 6 | // style 7 | @import "scss/home"; 8 | @import "scss/content"; -------------------------------------------------------------------------------- /inc/footer.html: -------------------------------------------------------------------------------- 1 | 5 |
-------------------------------------------------------------------------------- /inc/head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/style/base/_color.scss: -------------------------------------------------------------------------------- 1 | // gray 2 | $c55:#555; 3 | $c22:#222; 4 | $c33:#333; 5 | $c99:#999; 6 | $c77:#777; 7 | $c00:#000; 8 | $cff:#fff; 9 | $caa:#aaa; 10 | $ccc:#ccc; 11 | $cf0:#f0f0f0; 12 | $cdd:#ddd; 13 | $cee:#eee; 14 | $cf9:#f9f9f9; 15 | $cf7:#F7F7F7; 16 | $cfa:#fafafa; 17 | $cf60:#FF8225; 18 | // colour 19 | $red:#ee4442; 20 | $blue:#09c; 21 | $sblue:#2c4a67; 22 | $green:#46c100; 23 | $cyan:#36bc99; 24 | $gold:#A49D86; 25 | $pink:#F85D92; 26 | $pink2:#F13E7A; 27 | $yellow:#f69800; 28 | $qblue:#81dae8; -------------------------------------------------------------------------------- /inc/header.html: -------------------------------------------------------------------------------- 1 |