├── .idea ├── chouti.iml ├── inspectionProfiles │ └── profiles_settings.xml └── modules.xml ├── README.md ├── bootstrap-3.3.7 ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js ├── css └── index.css ├── images ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── Back-to-the-top_38_78.png ├── chouti.ico ├── homepage_download.png ├── icon.png ├── icon_18_118.png ├── img-footer.jpg ├── logo.png ├── move_top.png ├── report.png ├── report_children.png ├── res-1.png ├── res-2.png ├── res-3.png ├── res-4.png ├── share_icon.png ├── small-img.jpg └── view.png ├── index.html ├── jquery ├── jquery-3.2.1.js ├── jquery-3.2.1.min.js └── jquery.min.js └── js └── index.js /.idea/chouti.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/.idea/chouti.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap-3.3.7/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/css/bootstrap-theme.css -------------------------------------------------------------------------------- /bootstrap-3.3.7/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /bootstrap-3.3.7/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /bootstrap-3.3.7/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /bootstrap-3.3.7/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/css/bootstrap.css -------------------------------------------------------------------------------- /bootstrap-3.3.7/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/css/bootstrap.css.map -------------------------------------------------------------------------------- /bootstrap-3.3.7/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/css/bootstrap.min.css -------------------------------------------------------------------------------- /bootstrap-3.3.7/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /bootstrap-3.3.7/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bootstrap-3.3.7/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /bootstrap-3.3.7/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /bootstrap-3.3.7/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/js/bootstrap.js -------------------------------------------------------------------------------- /bootstrap-3.3.7/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/js/bootstrap.min.js -------------------------------------------------------------------------------- /bootstrap-3.3.7/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/bootstrap-3.3.7/js/npm.js -------------------------------------------------------------------------------- /css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/css/index.css -------------------------------------------------------------------------------- /images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/1.jpg -------------------------------------------------------------------------------- /images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/2.jpg -------------------------------------------------------------------------------- /images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/3.jpg -------------------------------------------------------------------------------- /images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/4.jpg -------------------------------------------------------------------------------- /images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/5.jpg -------------------------------------------------------------------------------- /images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/6.jpg -------------------------------------------------------------------------------- /images/Back-to-the-top_38_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/Back-to-the-top_38_78.png -------------------------------------------------------------------------------- /images/chouti.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/chouti.ico -------------------------------------------------------------------------------- /images/homepage_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/homepage_download.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/icon_18_118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/icon_18_118.png -------------------------------------------------------------------------------- /images/img-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/img-footer.jpg -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/move_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/move_top.png -------------------------------------------------------------------------------- /images/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/report.png -------------------------------------------------------------------------------- /images/report_children.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/report_children.png -------------------------------------------------------------------------------- /images/res-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/res-1.png -------------------------------------------------------------------------------- /images/res-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/res-2.png -------------------------------------------------------------------------------- /images/res-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/res-3.png -------------------------------------------------------------------------------- /images/res-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/res-4.png -------------------------------------------------------------------------------- /images/share_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/share_icon.png -------------------------------------------------------------------------------- /images/small-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/small-img.jpg -------------------------------------------------------------------------------- /images/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/images/view.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/index.html -------------------------------------------------------------------------------- /jquery/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/jquery/jquery-3.2.1.js -------------------------------------------------------------------------------- /jquery/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/jquery/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/jquery/jquery.min.js -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alice-bj/chouti/HEAD/js/index.js --------------------------------------------------------------------------------