├── .gitignore ├── CNAME ├── README.md ├── index.html ├── static ├── css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ └── main.css ├── favicon.ico ├── index.html ├── js │ ├── bootstrap-transition.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.9.1.min.js │ └── swagify.js ├── res │ ├── 420.jpg │ ├── AIRHORN.mp3 │ ├── DAMN SON WHERED YOU FIND THIS.mp3 │ ├── HITMARKER.mp3 │ ├── NEVER DONE THAT.mp3 │ ├── SMOKE WEEK EVERYDAY.mp3 │ ├── SPOOKY.mp3 │ ├── WOMBO COMBO.mp3 │ ├── explosion.gif │ ├── frog.gif │ ├── hitmarker.png │ ├── illuminati.jpeg │ ├── rainbowfrog.gif │ ├── snoop.gif │ └── wow.mp3 └── robots.txt ├── swagify.py └── templates ├── 404.html ├── base.html ├── container.html └── main.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | swagify.net -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/index.html -------------------------------------------------------------------------------- /static/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /static/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/index.html -------------------------------------------------------------------------------- /static/js/bootstrap-transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/js/bootstrap-transition.js -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/js/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /static/js/swagify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/js/swagify.js -------------------------------------------------------------------------------- /static/res/420.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/420.jpg -------------------------------------------------------------------------------- /static/res/AIRHORN.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/AIRHORN.mp3 -------------------------------------------------------------------------------- /static/res/DAMN SON WHERED YOU FIND THIS.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/DAMN SON WHERED YOU FIND THIS.mp3 -------------------------------------------------------------------------------- /static/res/HITMARKER.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/HITMARKER.mp3 -------------------------------------------------------------------------------- /static/res/NEVER DONE THAT.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/NEVER DONE THAT.mp3 -------------------------------------------------------------------------------- /static/res/SMOKE WEEK EVERYDAY.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/SMOKE WEEK EVERYDAY.mp3 -------------------------------------------------------------------------------- /static/res/SPOOKY.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/SPOOKY.mp3 -------------------------------------------------------------------------------- /static/res/WOMBO COMBO.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/WOMBO COMBO.mp3 -------------------------------------------------------------------------------- /static/res/explosion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/explosion.gif -------------------------------------------------------------------------------- /static/res/frog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/frog.gif -------------------------------------------------------------------------------- /static/res/hitmarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/hitmarker.png -------------------------------------------------------------------------------- /static/res/illuminati.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/illuminati.jpeg -------------------------------------------------------------------------------- /static/res/rainbowfrog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/rainbowfrog.gif -------------------------------------------------------------------------------- /static/res/snoop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/snoop.gif -------------------------------------------------------------------------------- /static/res/wow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/static/res/wow.mp3 -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | lol 2 | -------------------------------------------------------------------------------- /swagify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/swagify.py -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/templates/container.html -------------------------------------------------------------------------------- /templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defaultnamehere/swagify/HEAD/templates/main.html --------------------------------------------------------------------------------