├── .gitattributes ├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── Procfile ├── README.md ├── app.py ├── posts.db ├── projects └── keras_mnist.h5 ├── requirements.txt ├── static ├── css │ ├── card.css │ ├── post.css │ ├── present.css │ ├── projects │ │ └── times.css │ ├── slider.css │ └── styles.css ├── img │ ├── error.jpg │ ├── favicons.png │ ├── games │ │ ├── atari.png │ │ ├── mine.png │ │ ├── pong.png │ │ └── snake.png │ ├── logo.png │ ├── post │ │ ├── apoc.jfif │ │ ├── ava.jfif │ │ ├── blank.jfif │ │ ├── cesar.jfif │ │ ├── check.jfif │ │ ├── cube.jpg │ │ ├── echo.png │ │ ├── end.png │ │ ├── feel.jfif │ │ ├── fine.jfif │ │ ├── fire.png │ │ ├── hero.png │ │ ├── iron.jpg │ │ ├── liam.jfif │ │ ├── light.jfif │ │ ├── lion.jfif │ │ ├── main.jpg │ │ ├── pic.jpg │ │ ├── pose.jfif │ │ ├── real.jfif │ │ └── viva.jfif │ ├── prof.jpg │ ├── projects │ │ ├── digit.png │ │ └── times.png │ └── sketch.jpg └── js │ ├── clocktime.js │ ├── games │ ├── atari.js │ ├── mine.js │ ├── pong.js │ └── snake.js │ ├── projects │ ├── draw.js │ └── times.js │ ├── quote.js │ └── quotes.txt └── templates ├── 404.html ├── about.html ├── addvideo.html ├── admin.html ├── base.html ├── config.json ├── delete.html ├── deletegame.html ├── deletevideo.html ├── edit.html ├── editblog.html ├── editgame.html ├── editor.html ├── editvideo.html ├── games ├── fullsc.html └── playgame.html ├── index.html ├── play.html ├── postblog.html ├── projects.html ├── projects ├── digit.html └── times.html ├── upload.html └── video.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/app.py -------------------------------------------------------------------------------- /posts.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/posts.db -------------------------------------------------------------------------------- /projects/keras_mnist.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/projects/keras_mnist.h5 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/css/card.css -------------------------------------------------------------------------------- /static/css/post.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/css/post.css -------------------------------------------------------------------------------- /static/css/present.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/css/present.css -------------------------------------------------------------------------------- /static/css/projects/times.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/css/projects/times.css -------------------------------------------------------------------------------- /static/css/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/css/slider.css -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /static/img/error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/error.jpg -------------------------------------------------------------------------------- /static/img/favicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/favicons.png -------------------------------------------------------------------------------- /static/img/games/atari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/games/atari.png -------------------------------------------------------------------------------- /static/img/games/mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/games/mine.png -------------------------------------------------------------------------------- /static/img/games/pong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/games/pong.png -------------------------------------------------------------------------------- /static/img/games/snake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/games/snake.png -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/img/post/apoc.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/apoc.jfif -------------------------------------------------------------------------------- /static/img/post/ava.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/ava.jfif -------------------------------------------------------------------------------- /static/img/post/blank.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/blank.jfif -------------------------------------------------------------------------------- /static/img/post/cesar.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/cesar.jfif -------------------------------------------------------------------------------- /static/img/post/check.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/check.jfif -------------------------------------------------------------------------------- /static/img/post/cube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/cube.jpg -------------------------------------------------------------------------------- /static/img/post/echo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/echo.png -------------------------------------------------------------------------------- /static/img/post/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/end.png -------------------------------------------------------------------------------- /static/img/post/feel.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/feel.jfif -------------------------------------------------------------------------------- /static/img/post/fine.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/fine.jfif -------------------------------------------------------------------------------- /static/img/post/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/fire.png -------------------------------------------------------------------------------- /static/img/post/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/hero.png -------------------------------------------------------------------------------- /static/img/post/iron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/iron.jpg -------------------------------------------------------------------------------- /static/img/post/liam.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/liam.jfif -------------------------------------------------------------------------------- /static/img/post/light.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/light.jfif -------------------------------------------------------------------------------- /static/img/post/lion.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/lion.jfif -------------------------------------------------------------------------------- /static/img/post/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/main.jpg -------------------------------------------------------------------------------- /static/img/post/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/pic.jpg -------------------------------------------------------------------------------- /static/img/post/pose.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/pose.jfif -------------------------------------------------------------------------------- /static/img/post/real.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/real.jfif -------------------------------------------------------------------------------- /static/img/post/viva.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/post/viva.jfif -------------------------------------------------------------------------------- /static/img/prof.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/prof.jpg -------------------------------------------------------------------------------- /static/img/projects/digit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/projects/digit.png -------------------------------------------------------------------------------- /static/img/projects/times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/projects/times.png -------------------------------------------------------------------------------- /static/img/sketch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/img/sketch.jpg -------------------------------------------------------------------------------- /static/js/clocktime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/js/clocktime.js -------------------------------------------------------------------------------- /static/js/games/atari.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/js/games/atari.js -------------------------------------------------------------------------------- /static/js/games/mine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/js/games/mine.js -------------------------------------------------------------------------------- /static/js/games/pong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/js/games/pong.js -------------------------------------------------------------------------------- /static/js/games/snake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/js/games/snake.js -------------------------------------------------------------------------------- /static/js/projects/draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/js/projects/draw.js -------------------------------------------------------------------------------- /static/js/projects/times.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/js/projects/times.js -------------------------------------------------------------------------------- /static/js/quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/js/quote.js -------------------------------------------------------------------------------- /static/js/quotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/static/js/quotes.txt -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/addvideo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/addvideo.html -------------------------------------------------------------------------------- /templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/admin.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/config.json -------------------------------------------------------------------------------- /templates/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/delete.html -------------------------------------------------------------------------------- /templates/deletegame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/deletegame.html -------------------------------------------------------------------------------- /templates/deletevideo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/deletevideo.html -------------------------------------------------------------------------------- /templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/edit.html -------------------------------------------------------------------------------- /templates/editblog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/editblog.html -------------------------------------------------------------------------------- /templates/editgame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/editgame.html -------------------------------------------------------------------------------- /templates/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/editor.html -------------------------------------------------------------------------------- /templates/editvideo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/editvideo.html -------------------------------------------------------------------------------- /templates/games/fullsc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/games/fullsc.html -------------------------------------------------------------------------------- /templates/games/playgame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/games/playgame.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/play.html -------------------------------------------------------------------------------- /templates/postblog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/postblog.html -------------------------------------------------------------------------------- /templates/projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/projects.html -------------------------------------------------------------------------------- /templates/projects/digit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/projects/digit.html -------------------------------------------------------------------------------- /templates/projects/times.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/projects/times.html -------------------------------------------------------------------------------- /templates/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/upload.html -------------------------------------------------------------------------------- /templates/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueedgetechno/BlueBlog/HEAD/templates/video.html --------------------------------------------------------------------------------