├── .env ├── .gitignore ├── LEARN.md ├── README.md ├── models └── Blog.js ├── package.json ├── public ├── css │ └── style.css ├── images │ ├── AB.png │ ├── favicon.ico │ └── favicon_io │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest ├── js │ ├── index.js │ └── main.js ├── uploads │ └── images │ │ ├── 1653316435633184998.jpg │ │ ├── 1653324164764184993.jpg │ │ ├── 1653327328420cover.jpg │ │ ├── 1653391747403184968.jpg │ │ ├── 1653405805216cover.jpg │ │ └── 1653406351177185007.jpg └── vendor │ ├── aos │ ├── aos.css │ └── aos.js │ ├── bootstrap-icons │ ├── bootstrap-icons.css │ ├── bootstrap-icons.json │ ├── fonts │ │ ├── bootstrap-icons.woff │ │ └── bootstrap-icons.woff2 │ └── index.html │ ├── bootstrap │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── boxicons │ ├── css │ │ ├── animations.css │ │ ├── boxicons.css │ │ ├── boxicons.min.css │ │ └── transformations.css │ └── fonts │ │ ├── boxicons.eot │ │ ├── boxicons.svg │ │ ├── boxicons.ttf │ │ ├── boxicons.woff │ │ └── boxicons.woff2 │ ├── glightbox │ ├── css │ │ ├── glightbox.css │ │ └── glightbox.min.css │ └── js │ │ ├── glightbox.js │ │ └── glightbox.min.js │ ├── isotope-layout │ ├── isotope.pkgd.js │ └── isotope.pkgd.min.js │ ├── php-email-form │ └── validate.js │ ├── remixicon │ ├── remixicon.css │ ├── remixicon.eot │ ├── remixicon.less │ ├── remixicon.svg │ ├── remixicon.symbol.svg │ ├── remixicon.ttf │ ├── remixicon.woff │ └── remixicon.woff2 │ └── swiper │ ├── swiper-bundle.min.css │ └── swiper-bundle.min.js ├── routes └── blogs.js ├── server.js └── views ├── edit.ejs ├── google34a9707bfa429d39.html ├── index.ejs ├── new.ejs ├── partials ├── footer.ejs └── header.ejs └── show.ejs /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/.gitignore -------------------------------------------------------------------------------- /LEARN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/LEARN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/README.md -------------------------------------------------------------------------------- /models/Blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/models/Blog.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/package.json -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/css/style.css -------------------------------------------------------------------------------- /public/images/AB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/images/AB.png -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /public/images/favicon_io/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/images/favicon_io/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/images/favicon_io/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/images/favicon_io/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/images/favicon_io/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/images/favicon_io/apple-touch-icon.png -------------------------------------------------------------------------------- /public/images/favicon_io/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/images/favicon_io/favicon-16x16.png -------------------------------------------------------------------------------- /public/images/favicon_io/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/images/favicon_io/favicon-32x32.png -------------------------------------------------------------------------------- /public/images/favicon_io/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/images/favicon_io/favicon.ico -------------------------------------------------------------------------------- /public/images/favicon_io/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/images/favicon_io/site.webmanifest -------------------------------------------------------------------------------- /public/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/js/index.js -------------------------------------------------------------------------------- /public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/js/main.js -------------------------------------------------------------------------------- /public/uploads/images/1653316435633184998.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/uploads/images/1653316435633184998.jpg -------------------------------------------------------------------------------- /public/uploads/images/1653324164764184993.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/uploads/images/1653324164764184993.jpg -------------------------------------------------------------------------------- /public/uploads/images/1653327328420cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/uploads/images/1653327328420cover.jpg -------------------------------------------------------------------------------- /public/uploads/images/1653391747403184968.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/uploads/images/1653391747403184968.jpg -------------------------------------------------------------------------------- /public/uploads/images/1653405805216cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/uploads/images/1653405805216cover.jpg -------------------------------------------------------------------------------- /public/uploads/images/1653406351177185007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/uploads/images/1653406351177185007.jpg -------------------------------------------------------------------------------- /public/vendor/aos/aos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/aos/aos.css -------------------------------------------------------------------------------- /public/vendor/aos/aos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/aos/aos.js -------------------------------------------------------------------------------- /public/vendor/bootstrap-icons/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap-icons/bootstrap-icons.css -------------------------------------------------------------------------------- /public/vendor/bootstrap-icons/bootstrap-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap-icons/bootstrap-icons.json -------------------------------------------------------------------------------- /public/vendor/bootstrap-icons/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap-icons/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /public/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /public/vendor/bootstrap-icons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap-icons/index.html -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /public/vendor/bootstrap/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /public/vendor/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /public/vendor/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/js/bootstrap.esm.js -------------------------------------------------------------------------------- /public/vendor/bootstrap/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /public/vendor/bootstrap/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /public/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /public/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /public/vendor/boxicons/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/boxicons/css/animations.css -------------------------------------------------------------------------------- /public/vendor/boxicons/css/boxicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/boxicons/css/boxicons.css -------------------------------------------------------------------------------- /public/vendor/boxicons/css/boxicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/boxicons/css/boxicons.min.css -------------------------------------------------------------------------------- /public/vendor/boxicons/css/transformations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/boxicons/css/transformations.css -------------------------------------------------------------------------------- /public/vendor/boxicons/fonts/boxicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/boxicons/fonts/boxicons.eot -------------------------------------------------------------------------------- /public/vendor/boxicons/fonts/boxicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/boxicons/fonts/boxicons.svg -------------------------------------------------------------------------------- /public/vendor/boxicons/fonts/boxicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/boxicons/fonts/boxicons.ttf -------------------------------------------------------------------------------- /public/vendor/boxicons/fonts/boxicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/boxicons/fonts/boxicons.woff -------------------------------------------------------------------------------- /public/vendor/boxicons/fonts/boxicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/boxicons/fonts/boxicons.woff2 -------------------------------------------------------------------------------- /public/vendor/glightbox/css/glightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/glightbox/css/glightbox.css -------------------------------------------------------------------------------- /public/vendor/glightbox/css/glightbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/glightbox/css/glightbox.min.css -------------------------------------------------------------------------------- /public/vendor/glightbox/js/glightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/glightbox/js/glightbox.js -------------------------------------------------------------------------------- /public/vendor/glightbox/js/glightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/glightbox/js/glightbox.min.js -------------------------------------------------------------------------------- /public/vendor/isotope-layout/isotope.pkgd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/isotope-layout/isotope.pkgd.js -------------------------------------------------------------------------------- /public/vendor/isotope-layout/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/isotope-layout/isotope.pkgd.min.js -------------------------------------------------------------------------------- /public/vendor/php-email-form/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/php-email-form/validate.js -------------------------------------------------------------------------------- /public/vendor/remixicon/remixicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/remixicon/remixicon.css -------------------------------------------------------------------------------- /public/vendor/remixicon/remixicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/remixicon/remixicon.eot -------------------------------------------------------------------------------- /public/vendor/remixicon/remixicon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/remixicon/remixicon.less -------------------------------------------------------------------------------- /public/vendor/remixicon/remixicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/remixicon/remixicon.svg -------------------------------------------------------------------------------- /public/vendor/remixicon/remixicon.symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/remixicon/remixicon.symbol.svg -------------------------------------------------------------------------------- /public/vendor/remixicon/remixicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/remixicon/remixicon.ttf -------------------------------------------------------------------------------- /public/vendor/remixicon/remixicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/remixicon/remixicon.woff -------------------------------------------------------------------------------- /public/vendor/remixicon/remixicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/remixicon/remixicon.woff2 -------------------------------------------------------------------------------- /public/vendor/swiper/swiper-bundle.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/swiper/swiper-bundle.min.css -------------------------------------------------------------------------------- /public/vendor/swiper/swiper-bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/public/vendor/swiper/swiper-bundle.min.js -------------------------------------------------------------------------------- /routes/blogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/routes/blogs.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/server.js -------------------------------------------------------------------------------- /views/edit.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/views/edit.ejs -------------------------------------------------------------------------------- /views/google34a9707bfa429d39.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/views/google34a9707bfa429d39.html -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/views/index.ejs -------------------------------------------------------------------------------- /views/new.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/views/new.ejs -------------------------------------------------------------------------------- /views/partials/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/views/partials/footer.ejs -------------------------------------------------------------------------------- /views/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/views/partials/header.ejs -------------------------------------------------------------------------------- /views/show.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yashkapure06/Blogging-Website/HEAD/views/show.ejs --------------------------------------------------------------------------------