├── server └── routes │ ├── top.js │ ├── tags.js │ ├── commenting.js │ ├── actions.js │ ├── logreg.js │ └── basic.js ├── .gitignore ├── views ├── partials │ ├── _generalscripts.hbs │ ├── _generalcss.hbs │ ├── _metadesc.hbs │ ├── _top.hbs │ ├── _footer.hbs │ ├── _comments.hbs │ └── _navbar.hbs ├── error.hbs ├── index_stories.hbs ├── about.hbs ├── FAQ.hbs ├── gif.hbs ├── stories.hbs ├── index.hbs ├── index_gifs.hbs ├── category.hbs ├── video.hbs ├── register.hbs ├── login.hbs ├── myaccount.hbs └── categories.hbs ├── public ├── images │ └── error.jpeg └── css │ └── style.css ├── package.json ├── server.js └── README.md /server/routes/top.js: -------------------------------------------------------------------------------- 1 | // Topping -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | views/ 3 | -------------------------------------------------------------------------------- /views/partials/_generalscripts.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/partials/_generalcss.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/error.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/car-mrazomor/streaming-website/HEAD/public/images/error.jpeg -------------------------------------------------------------------------------- /views/partials/_metadesc.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /views/partials/_top.hbs: -------------------------------------------------------------------------------- 1 |
{{this.comment}}
23 |
22 | 31 | Welcome 32 | 33 |
34 | 35 |36 | A: 37 |
38 | 39 |31 | {{story}} 32 |
33 |46 | {{desc}} 47 |
48 |{{tags}}
49 |{{user_id}}
50 |{{id}}
51 | {{> _comments}} 52 | 53 |