├── .gitignore ├── README.md ├── app.js ├── bin └── www ├── controller └── render.js ├── ffmpeg.exe ├── package.json ├── public ├── cache │ ├── sorry-c208aced3e7f9a28cffe2af47843e64d.gif │ └── sorry-c208aced3e7f9a28cffe2af47843e64d.gif.ass ├── favicon.ico ├── images │ ├── 404.png │ └── admire.png ├── javascripts │ ├── cookies.js │ └── main.js ├── stylesheets │ └── w3.css └── templates │ ├── dagong │ ├── example.png │ ├── template.ejs │ └── template.mp4 │ ├── diandongche │ ├── example.png │ ├── template.ejs │ └── template.mp4 │ ├── jinkela │ ├── example.png │ ├── template.ejs │ └── template.mp4 │ ├── marmot │ ├── example.png │ ├── template.ejs │ └── template.mp4 │ ├── sorry │ ├── example.png │ ├── template.ejs │ └── template.mp4 │ └── wangjingze │ ├── example.png │ ├── template.ejs │ └── template.mp4 ├── routes └── index.js └── views ├── 404.html ├── dagong └── index.html ├── diandongche └── index.html ├── jinkela └── index.html ├── marmot └── index.html ├── sorry └── index.html └── wangjingze └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/app.js -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/bin/www -------------------------------------------------------------------------------- /controller/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/controller/render.js -------------------------------------------------------------------------------- /ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/ffmpeg.exe -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/package.json -------------------------------------------------------------------------------- /public/cache/sorry-c208aced3e7f9a28cffe2af47843e64d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/cache/sorry-c208aced3e7f9a28cffe2af47843e64d.gif -------------------------------------------------------------------------------- /public/cache/sorry-c208aced3e7f9a28cffe2af47843e64d.gif.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/cache/sorry-c208aced3e7f9a28cffe2af47843e64d.gif.ass -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/images/404.png -------------------------------------------------------------------------------- /public/images/admire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/images/admire.png -------------------------------------------------------------------------------- /public/javascripts/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/javascripts/cookies.js -------------------------------------------------------------------------------- /public/javascripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/javascripts/main.js -------------------------------------------------------------------------------- /public/stylesheets/w3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/stylesheets/w3.css -------------------------------------------------------------------------------- /public/templates/dagong/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/dagong/example.png -------------------------------------------------------------------------------- /public/templates/dagong/template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/dagong/template.ejs -------------------------------------------------------------------------------- /public/templates/dagong/template.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/dagong/template.mp4 -------------------------------------------------------------------------------- /public/templates/diandongche/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/diandongche/example.png -------------------------------------------------------------------------------- /public/templates/diandongche/template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/diandongche/template.ejs -------------------------------------------------------------------------------- /public/templates/diandongche/template.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/diandongche/template.mp4 -------------------------------------------------------------------------------- /public/templates/jinkela/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/jinkela/example.png -------------------------------------------------------------------------------- /public/templates/jinkela/template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/jinkela/template.ejs -------------------------------------------------------------------------------- /public/templates/jinkela/template.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/jinkela/template.mp4 -------------------------------------------------------------------------------- /public/templates/marmot/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/marmot/example.png -------------------------------------------------------------------------------- /public/templates/marmot/template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/marmot/template.ejs -------------------------------------------------------------------------------- /public/templates/marmot/template.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/marmot/template.mp4 -------------------------------------------------------------------------------- /public/templates/sorry/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/sorry/example.png -------------------------------------------------------------------------------- /public/templates/sorry/template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/sorry/template.ejs -------------------------------------------------------------------------------- /public/templates/sorry/template.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/sorry/template.mp4 -------------------------------------------------------------------------------- /public/templates/wangjingze/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/wangjingze/example.png -------------------------------------------------------------------------------- /public/templates/wangjingze/template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/wangjingze/template.ejs -------------------------------------------------------------------------------- /public/templates/wangjingze/template.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/public/templates/wangjingze/template.mp4 -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/routes/index.js -------------------------------------------------------------------------------- /views/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/views/404.html -------------------------------------------------------------------------------- /views/dagong/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/views/dagong/index.html -------------------------------------------------------------------------------- /views/diandongche/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/views/diandongche/index.html -------------------------------------------------------------------------------- /views/jinkela/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/views/jinkela/index.html -------------------------------------------------------------------------------- /views/marmot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/views/marmot/index.html -------------------------------------------------------------------------------- /views/sorry/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/views/sorry/index.html -------------------------------------------------------------------------------- /views/wangjingze/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q809198545/node-sorry/HEAD/views/wangjingze/index.html --------------------------------------------------------------------------------