├── .env ├── runtime.txt ├── Procfile ├── app ├── templates │ └── includes │ │ └── sidebar.html └── static │ ├── favicon.ico │ └── assets │ ├── libs │ ├── animate.css │ │ └── source │ │ │ ├── _vars.css │ │ │ ├── fading_entrances │ │ │ ├── fadeIn.css │ │ │ ├── fadeInUp.css │ │ │ ├── fadeInDown.css │ │ │ ├── fadeInLeft.css │ │ │ ├── fadeInRight.css │ │ │ ├── fadeInUpBig.css │ │ │ ├── fadeInDownBig.css │ │ │ ├── fadeInLeftBig.css │ │ │ └── fadeInRightBig.css │ │ │ ├── fading_exits │ │ │ ├── fadeOut.css │ │ │ ├── fadeOutUp.css │ │ │ ├── fadeOutDown.css │ │ │ ├── fadeOutLeft.css │ │ │ ├── fadeOutRight.css │ │ │ ├── fadeOutUpBig.css │ │ │ ├── fadeOutDownBig.css │ │ │ ├── fadeOutLeftBig.css │ │ │ └── fadeOutRightBig.css │ │ │ ├── attention_seekers │ │ │ └── flash.css │ │ │ ├── zooming_entrances │ │ │ └── zoomIn.css │ │ │ ├── sliding_entrances │ │ │ ├── slideInUp.css │ │ │ ├── slideInDown.css │ │ │ ├── slideInLeft.css │ │ │ └── slideInRight.css │ │ │ ├── sliding_exits │ │ │ ├── slideOutUp.css │ │ │ ├── slideOutDown.css │ │ │ ├── slideOutLeft.css │ │ │ └── slideOutRight.css │ │ │ ├── zooming_exits │ │ │ └── zoomOut.css │ │ │ ├── bouncing_exits │ │ │ ├── bounceOutLeft.css │ │ │ └── bounceOutRight.css │ │ │ ├── lightspeed │ │ │ └── lightSpeedOut.css │ │ │ ├── rotating_exits │ │ │ ├── rotateOut.css │ │ │ └── rotateOutUpLeft.css │ │ │ └── specials │ │ │ └── rollOut.css │ ├── highlight.js │ │ ├── lib │ │ │ └── languages │ │ │ │ ├── plaintext.js │ │ │ │ ├── vbscript-html.js │ │ │ │ ├── clojure-repl.js │ │ │ │ ├── shell.js │ │ │ │ └── erb.js │ │ ├── scss │ │ │ ├── pojoaque.jpg │ │ │ ├── school-book.png │ │ │ └── brown-papersq.png │ │ └── styles │ │ │ ├── pojoaque.jpg │ │ │ ├── school-book.png │ │ │ ├── brown-papersq.png │ │ │ └── darkula.css │ ├── @fortawesome │ │ └── fontawesome-free │ │ │ ├── svgs │ │ │ ├── solid │ │ │ │ ├── square-full.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── play.svg │ │ │ │ ├── square.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── adjust.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── map-marker.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── file.svg │ │ │ │ ├── glass-whiskey.svg │ │ │ │ ├── step-backward.svg │ │ │ │ ├── step-forward.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── grip-lines.svg │ │ │ │ ├── table.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── burn.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── ellipsis-v.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── box.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── ellipsis-h.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── record-vinyl.svg │ │ │ │ ├── sign.svg │ │ │ │ ├── suitcase.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ ├── map.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── video.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── hard-hat.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ ├── music.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── tenge.svg │ │ │ │ ├── user-alt.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── map-marker-alt.svg │ │ │ │ ├── star.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── mountain.svg │ │ │ │ ├── shield-alt.svg │ │ │ │ └── archive.svg │ │ │ ├── brands │ │ │ │ ├── houzz.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── unsplash.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── adobe.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── tiktok.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── google.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── sourcetree.svg │ │ │ │ ├── fulcrum.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── rockrms.svg │ │ │ │ └── unity.svg │ │ │ └── regular │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── file.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── window-restore.svg │ │ │ │ └── stop-circle.svg │ │ │ └── webfonts │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-solid-900.woff │ │ │ ├── fa-solid-900.woff2 │ │ │ └── fa-regular-400.woff2 │ └── feather-icons │ │ └── dist │ │ └── icons │ │ ├── circle.svg │ │ ├── minus.svg │ │ ├── check.svg │ │ ├── play.svg │ │ ├── chevron-down.svg │ │ ├── chevron-up.svg │ │ ├── droplet.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right.svg │ │ ├── cloud.svg │ │ ├── framer.svg │ │ ├── moon.svg │ │ ├── shield.svg │ │ ├── square.svg │ │ ├── twitch.svg │ │ ├── volume.svg │ │ ├── zap.svg │ │ ├── activity.svg │ │ ├── navigation-2.svg │ │ ├── navigation.svg │ │ ├── bookmark.svg │ │ ├── filter.svg │ │ ├── disc.svg │ │ ├── edit-2.svg │ │ ├── umbrella.svg │ │ ├── x.svg │ │ ├── bluetooth.svg │ │ ├── clock.svg │ │ ├── code.svg │ │ ├── facebook.svg │ │ ├── plus.svg │ │ ├── thermometer.svg │ │ ├── crop.svg │ │ ├── power.svg │ │ ├── search.svg │ │ ├── arrow-up.svg │ │ ├── eye.svg │ │ ├── folder.svg │ │ ├── message-square.svg │ │ ├── minus-circle.svg │ │ ├── pause.svg │ │ ├── send.svg │ │ ├── slash.svg │ │ ├── stop-circle.svg │ │ ├── terminal.svg │ │ ├── user.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right.svg │ │ ├── arrow-up-left.svg │ │ ├── bell.svg │ │ ├── corner-left-up.svg │ │ ├── corner-up-left.svg │ │ ├── edit-3.svg │ │ ├── lock.svg │ │ ├── mouse-pointer.svg │ │ ├── octagon.svg │ │ ├── pie-chart.svg │ │ ├── play-circle.svg │ │ ├── rewind.svg │ │ ├── skip-back.svg │ │ ├── tv.svg │ │ ├── arrow-down-left.svg │ │ ├── arrow-up-right.svg │ │ ├── at-sign.svg │ │ ├── award.svg │ │ ├── bold.svg │ │ ├── chevrons-down.svg │ │ ├── chevrons-left.svg │ │ ├── chevrons-up.svg │ │ ├── corner-down-left.svg │ │ ├── corner-right-up.svg │ │ ├── corner-up-right.svg │ │ ├── map-pin.svg │ │ ├── rotate-ccw.svg │ │ ├── rotate-cw.svg │ │ ├── sidebar.svg │ │ ├── skip-forward.svg │ │ ├── underline.svg │ │ ├── unlock.svg │ │ ├── wind.svg │ │ ├── arrow-down-right.svg │ │ ├── battery.svg │ │ ├── chevrons-right.svg │ │ ├── columns.svg │ │ ├── corner-down-right.svg │ │ ├── corner-left-down.svg │ │ ├── corner-right-down.svg │ │ ├── fast-forward.svg │ │ ├── home.svg │ │ ├── music.svg │ │ ├── rss.svg │ │ ├── tablet.svg │ │ ├── toggle-left.svg │ │ ├── triangle.svg │ │ ├── video.svg │ │ ├── volume-1.svg │ │ ├── check-circle.svg │ │ ├── credit-card.svg │ │ ├── file.svg │ │ ├── flag.svg │ │ ├── maximize.svg │ │ ├── minimize.svg │ │ ├── toggle-right.svg │ │ ├── trending-up.svg │ │ ├── divide.svg │ │ ├── dollar-sign.svg │ │ ├── git-merge.svg │ │ ├── minus-square.svg │ │ ├── smartphone.svg │ │ ├── star.svg │ │ ├── target.svg │ │ ├── trending-down.svg │ │ ├── anchor.svg │ │ ├── book-open.svg │ │ ├── book.svg │ │ ├── compass.svg │ │ ├── info.svg │ │ ├── menu.svg │ │ ├── briefcase.svg │ │ ├── copy.svg │ │ ├── italic.svg │ │ ├── key.svg │ │ ├── more-vertical.svg │ │ ├── type.svg │ │ ├── x-circle.svg │ │ ├── check-square.svg │ │ ├── cloud-lightning.svg │ │ ├── link-2.svg │ │ ├── mail.svg │ │ ├── more-horizontal.svg │ │ ├── paperclip.svg │ │ ├── percent.svg │ │ ├── tag.svg │ │ ├── trash.svg │ │ ├── bar-chart-2.svg │ │ ├── bar-chart.svg │ │ ├── camera.svg │ │ ├── hexagon.svg │ │ ├── pause-circle.svg │ │ ├── plus-circle.svg │ │ ├── pocket.svg │ │ ├── thumbs-up.svg │ │ └── zoom-out.svg │ └── img │ ├── brand │ └── favicon.png │ ├── backgrounds │ ├── img-1.jpg │ ├── img-2.jpg │ ├── img-3.jpg │ ├── img-4.jpg │ ├── img-5.jpg │ └── pattern-1.png │ ├── svg │ ├── objects │ │ └── .DS_Store │ ├── characters │ │ └── .DS_Store │ └── separators │ │ ├── curve.svg │ │ ├── line.svg │ │ └── curve-2.svg │ ├── theme │ └── light │ │ ├── img-1.jpg │ │ ├── img-v-1.jpg │ │ ├── img-v-2.jpg │ │ ├── img-v-3.jpg │ │ ├── img-v-4.jpg │ │ ├── img-v-5.jpg │ │ ├── person-1.jpg │ │ ├── person-2.jpg │ │ ├── person-3.jpg │ │ ├── person-4.jpg │ │ ├── person-5.jpg │ │ ├── person-6.jpg │ │ ├── person-7.jpg │ │ ├── person-8.jpg │ │ ├── img-case-1.jpg │ │ ├── img-1-440x350.jpg │ │ ├── img-1-440x660.jpg │ │ ├── img-v-error.jpg │ │ ├── img-1-1000x1000.jpg │ │ ├── img-1-1000x800.jpg │ │ ├── img-1-1000x900.jpg │ │ ├── img-2-1000x1000.jpg │ │ ├── img-2-1000x800.jpg │ │ ├── img-3-1000x1000.jpg │ │ ├── img-3-1000x800.jpg │ │ ├── img-4-1000x1000.jpg │ │ ├── img-4-1000x800.jpg │ │ ├── img-5-1000x800.jpg │ │ ├── laptop-screen-1.jpg │ │ ├── laptop-screen-2.jpg │ │ ├── laptop-screen-3.jpg │ │ ├── screen-1-1000x800.jpg │ │ └── screen-2-1000x800.jpg │ └── clients │ └── 160x160 │ ├── img-1.png │ ├── img-2.png │ ├── img-3.png │ ├── img-4.png │ ├── img-5.png │ ├── img-6.png │ └── img-7.png ├── run.py ├── media ├── flask-illustrations-iradesign-card.jpg ├── flask-illustrations-iradesign-card.png ├── flask-illustrations-iradesign-intro.gif ├── flask-illustrations-iradesign-screen.png ├── flask-illustrations-iradesign-card-low.jpg ├── flask-illustrations-iradesign-card-low.png ├── flask-illustrations-iradesign-screen-1.png ├── flask-illustrations-iradesign-screen-2.png ├── flask-illustrations-iradesign-screen-3.png ├── flask-illustrations-iradesign-screen-low.png ├── flask-illustrations-iradesign-content-image.png ├── flask-illustrations-iradesign-screen-1-low.png ├── flask-illustrations-iradesign-screen-2-low.png ├── flask-illustrations-iradesign-screen-3-low.png ├── flask-illustrations-iradesign-screen-login.png ├── flask-illustrations-iradesign-screen-login-low.png ├── flask-illustrations-iradesign-screen-register.png ├── flask-illustrations-iradesign-content-image-low.png └── flask-illustrations-iradesign-screen-register-low.png ├── requirements.txt ├── .gitignore ├── gunicorn-cfg.py ├── nginx └── appseed-app.conf ├── CHANGELOG.md └── Dockerfile /.env: -------------------------------------------------------------------------------- 1 | SECRET_KEY=S3cr3t_K#Key 2 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.10 2 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn run:app --log-file=- 2 | -------------------------------------------------------------------------------- /app/templates/includes/sidebar.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/favicon.ico -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/_vars.css: -------------------------------------------------------------------------------- 1 | .animated { 2 | --animate-duration: 1s; 3 | --animate-delay: 1s; 4 | } 5 | -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- 1 | # -*- encoding: utf-8 -*- 2 | """ 3 | Copyright (c) 2019 - present AppSeed.us 4 | """ 5 | 6 | from app import app, db 7 | -------------------------------------------------------------------------------- /app/static/assets/img/brand/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/brand/favicon.png -------------------------------------------------------------------------------- /app/static/assets/img/backgrounds/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/backgrounds/img-1.jpg -------------------------------------------------------------------------------- /app/static/assets/img/backgrounds/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/backgrounds/img-2.jpg -------------------------------------------------------------------------------- /app/static/assets/img/backgrounds/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/backgrounds/img-3.jpg -------------------------------------------------------------------------------- /app/static/assets/img/backgrounds/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/backgrounds/img-4.jpg -------------------------------------------------------------------------------- /app/static/assets/img/backgrounds/img-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/backgrounds/img-5.jpg -------------------------------------------------------------------------------- /app/static/assets/img/svg/objects/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/svg/objects/.DS_Store -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-1.jpg -------------------------------------------------------------------------------- /app/static/assets/img/svg/characters/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/svg/characters/.DS_Store -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-v-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-v-1.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-v-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-v-2.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-v-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-v-3.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-v-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-v-4.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-v-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-v-5.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/person-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/person-1.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/person-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/person-2.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/person-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/person-3.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/person-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/person-4.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/person-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/person-5.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/person-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/person-6.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/person-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/person-7.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/person-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/person-8.jpg -------------------------------------------------------------------------------- /app/static/assets/libs/highlight.js/lib/languages/plaintext.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | disableAutodetect: true 4 | }; 5 | }; -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-card.jpg -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-card.png -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-intro.gif -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-screen.png -------------------------------------------------------------------------------- /app/static/assets/img/backgrounds/pattern-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/backgrounds/pattern-1.png -------------------------------------------------------------------------------- /app/static/assets/img/clients/160x160/img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/clients/160x160/img-1.png -------------------------------------------------------------------------------- /app/static/assets/img/clients/160x160/img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/clients/160x160/img-2.png -------------------------------------------------------------------------------- /app/static/assets/img/clients/160x160/img-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/clients/160x160/img-3.png -------------------------------------------------------------------------------- /app/static/assets/img/clients/160x160/img-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/clients/160x160/img-4.png -------------------------------------------------------------------------------- /app/static/assets/img/clients/160x160/img-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/clients/160x160/img-5.png -------------------------------------------------------------------------------- /app/static/assets/img/clients/160x160/img-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/clients/160x160/img-6.png -------------------------------------------------------------------------------- /app/static/assets/img/clients/160x160/img-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/clients/160x160/img-7.png -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-case-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-case-1.jpg -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-card-low.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-card-low.jpg -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-card-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-card-low.png -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-screen-1.png -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-screen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-screen-2.png -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-screen-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-screen-3.png -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-1-440x350.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-1-440x350.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-1-440x660.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-1-440x660.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-v-error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-v-error.jpg -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-screen-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-screen-low.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | flask_login 3 | flask_migrate 4 | flask_wtf 5 | flask_sqlalchemy 6 | flask_bcrypt 7 | email_validator 8 | python-decouple 9 | gunicorn 10 | -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-1-1000x1000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-1-1000x1000.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-1-1000x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-1-1000x800.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-1-1000x900.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-1-1000x900.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-2-1000x1000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-2-1000x1000.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-2-1000x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-2-1000x800.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-3-1000x1000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-3-1000x1000.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-3-1000x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-3-1000x800.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-4-1000x1000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-4-1000x1000.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-4-1000x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-4-1000x800.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/img-5-1000x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/img-5-1000x800.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/laptop-screen-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/laptop-screen-1.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/laptop-screen-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/laptop-screen-2.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/laptop-screen-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/laptop-screen-3.jpg -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/highlight.js/scss/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/highlight.js/scss/pojoaque.jpg -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-content-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-content-image.png -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-screen-1-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-screen-1-low.png -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-screen-2-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-screen-2-low.png -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-screen-3-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-screen-3-low.png -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-screen-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-screen-login.png -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/screen-1-1000x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/screen-1-1000x800.jpg -------------------------------------------------------------------------------- /app/static/assets/img/theme/light/screen-2-1000x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/img/theme/light/screen-2-1000x800.jpg -------------------------------------------------------------------------------- /app/static/assets/libs/highlight.js/scss/school-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/highlight.js/scss/school-book.png -------------------------------------------------------------------------------- /app/static/assets/libs/highlight.js/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/highlight.js/styles/pojoaque.jpg -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-screen-login-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-screen-login-low.png -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-screen-register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-screen-register.png -------------------------------------------------------------------------------- /app/static/assets/libs/highlight.js/scss/brown-papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/highlight.js/scss/brown-papersq.png -------------------------------------------------------------------------------- /app/static/assets/libs/highlight.js/styles/school-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/highlight.js/styles/school-book.png -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-content-image-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-content-image-low.png -------------------------------------------------------------------------------- /app/static/assets/libs/highlight.js/styles/brown-papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/highlight.js/styles/brown-papersq.png -------------------------------------------------------------------------------- /media/flask-illustrations-iradesign-screen-register-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/media/flask-illustrations-iradesign-screen-register-low.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | flask/ 2 | *.pyc 3 | dev 4 | node_modules 5 | app/database.db 6 | app/build 7 | yarn.lock 8 | yarn-error.log 9 | *.psd 10 | env/ 11 | env__/ 12 | .vscode/symbols.json 13 | app/db.sqlite3 14 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /app/static/assets/libs/highlight.js/styles/darkula.css: -------------------------------------------------------------------------------- 1 | /* 2 | Deprecated due to a typo in the name and left here for compatibility purpose only. 3 | Please use darcula.css instead. 4 | */ 5 | 6 | @import url('darcula.css'); 7 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/unsplash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/flask-illustrations-iradesign/master/app/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /app/static/assets/img/svg/separators/curve.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_entrances/fadeIn.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeIn { 2 | from { 3 | opacity: 0; 4 | } 5 | 6 | to { 7 | opacity: 1; 8 | } 9 | } 10 | 11 | .fadeIn { 12 | animation-name: fadeIn; 13 | } 14 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_exits/fadeOut.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOut { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | } 9 | } 10 | 11 | .fadeOut { 12 | animation-name: fadeOut; 13 | } 14 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/adobe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gunicorn-cfg.py: -------------------------------------------------------------------------------- 1 | # -*- encoding: utf-8 -*- 2 | """ 3 | Copyright (c) 2019 - present AppSeed.us 4 | """ 5 | 6 | bind = '0.0.0.0:5005' 7 | workers = 1 8 | accesslog = '-' 9 | loglevel = 'debug' 10 | capture_output = True 11 | enable_stdio_inheritance = True 12 | -------------------------------------------------------------------------------- /nginx/appseed-app.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen 85; 3 | 4 | location / { 5 | proxy_pass http://localhost:5005/; 6 | proxy_set_header Host $host; 7 | proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | ## [1.0.0] 2020-06-29 4 | ### Initial Release 5 | 6 | - UI Kit: Quick UI Kit by WebPixels 7 | - Illustrations by IraDesign (Creative-Tim) 8 | - Codebase - [Boilerplate Code Flask](https://github.com/app-generator/boilerplate-code-flask) v1.0.2 9 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM python:3.6 2 | 3 | ENV FLASK_APP run.py 4 | 5 | COPY run.py gunicorn-cfg.py requirements.txt .env ./ 6 | COPY app app 7 | 8 | RUN pip install -r requirements.txt 9 | 10 | EXPOSE 5005 11 | CMD ["gunicorn", "--config", "gunicorn-cfg.py", "run:app"] 12 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ice-cream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/attention_seekers/flash.css: -------------------------------------------------------------------------------- 1 | @keyframes flash { 2 | from, 3 | 50%, 4 | to { 5 | opacity: 1; 6 | } 7 | 8 | 25%, 9 | 75% { 10 | opacity: 0; 11 | } 12 | } 13 | 14 | .flash { 15 | animation-name: flash; 16 | } 17 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/highlight.js/lib/languages/vbscript-html.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | subLanguage: 'xml', 4 | contains: [ 5 | { 6 | begin: '<%', end: '%>', 7 | subLanguage: 'vbscript' 8 | } 9 | ] 10 | }; 11 | }; -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/zooming_entrances/zoomIn.css: -------------------------------------------------------------------------------- 1 | @keyframes zoomIn { 2 | from { 3 | opacity: 0; 4 | transform: scale3d(0.3, 0.3, 0.3); 5 | } 6 | 7 | 50% { 8 | opacity: 1; 9 | } 10 | } 11 | 12 | .zoomIn { 13 | animation-name: zoomIn; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sd-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_exits/fadeOutUp.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutUp { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, -100%, 0); 9 | } 10 | } 11 | 12 | .fadeOutUp { 13 | animation-name: fadeOutUp; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/adjust.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/genderless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hockey-puck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_exits/fadeOutDown.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutDown { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, 100%, 0); 9 | } 10 | } 11 | 12 | .fadeOutDown { 13 | animation-name: fadeOutDown; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_exits/fadeOutLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutLeft { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(-100%, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutLeft { 13 | animation-name: fadeOutLeft; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_exits/fadeOutRight.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutRight { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(100%, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutRight { 13 | animation-name: fadeOutRight; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bread-slice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map-marker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_exits/fadeOutUpBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutUpBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, -2000px, 0); 9 | } 10 | } 11 | 12 | .fadeOutUpBig { 13 | animation-name: fadeOutUpBig; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/check.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/border-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_exits/fadeOutDownBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutDownBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, 2000px, 0); 9 | } 10 | } 11 | 12 | .fadeOutDownBig { 13 | animation-name: fadeOutDownBig; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/servicestack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dot-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/minus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/voicemail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_exits/fadeOutLeftBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutLeftBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(-2000px, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutLeftBig { 13 | animation-name: fadeOutLeftBig; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_exits/fadeOutRightBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutRightBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(2000px, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutRightBig { 13 | animation-name: fadeOutRightBig; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/chevron-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/chevron-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/droplet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dyalog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/figma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paragraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/play-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/chevron-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/cloud.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/framer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/moon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/shield.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/twitch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/volume.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/zap.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/adn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dochub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hacker-news.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/glass-whiskey.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/step-backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/step-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/sliding_entrances/slideInUp.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInUp { 2 | from { 3 | transform: translate3d(0, 100%, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInUp { 13 | animation-name: slideInUp; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/sliding_exits/slideOutUp.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutUp { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(0, -100%, 0); 9 | } 10 | } 11 | 12 | .slideOutUp { 13 | animation-name: slideOutUp; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/activity.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/navigation-2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/navigation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/firstdraft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sticky-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toggle-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_entrances/fadeInUp.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInUp { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, 100%, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInUp { 14 | animation-name: fadeInUp; 15 | } 16 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/sliding_exits/slideOutDown.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutDown { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(0, 100%, 0); 9 | } 10 | } 11 | 12 | .slideOutDown { 13 | animation-name: slideOutDown; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/zooming_exits/zoomOut.css: -------------------------------------------------------------------------------- 1 | @keyframes zoomOut { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | 50% { 7 | opacity: 0; 8 | transform: scale3d(0.3, 0.3, 0.3); 9 | } 10 | 11 | to { 12 | opacity: 0; 13 | } 14 | } 15 | 16 | .zoomOut { 17 | animation-name: zoomOut; 18 | } 19 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/artstation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sort.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/sliding_entrances/slideInDown.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInDown { 2 | from { 3 | transform: translate3d(0, -100%, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInDown { 13 | animation-name: slideInDown; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/sliding_entrances/slideInLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInLeft { 2 | from { 3 | transform: translate3d(-100%, 0, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInLeft { 13 | animation-name: slideInLeft; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/sliding_entrances/slideInRight.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInRight { 2 | from { 3 | transform: translate3d(100%, 0, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInRight { 13 | animation-name: slideInRight; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/sliding_exits/slideOutLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutLeft { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(-100%, 0, 0); 9 | } 10 | } 11 | 12 | .slideOutLeft { 13 | animation-name: slideOutLeft; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/sliding_exits/slideOutRight.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutRight { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(100%, 0, 0); 9 | } 10 | } 11 | 12 | .slideOutRight { 13 | animation-name: slideOutRight; 14 | } 15 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/disc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/edit-2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/umbrella.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/x.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/magento.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yahoo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yandex.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/grip-lines.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_entrances/fadeInDown.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInDown { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, -100%, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInDown { 14 | animation-name: fadeInDown; 15 | } 16 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_entrances/fadeInLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInLeft { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(-100%, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInLeft { 14 | animation-name: fadeInLeft; 15 | } 16 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/twitch.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bolt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/burn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chalkboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/grip-lines-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/italic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_entrances/fadeInRight.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInRight { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(100%, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInRight { 14 | animation-name: fadeInRight; 15 | } 16 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_entrances/fadeInUpBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInUpBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, 2000px, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInUpBig { 14 | animation-name: fadeInUpBig; 15 | } 16 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/bluetooth.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/thermometer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/glass-martini.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/minus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/seedling.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/crop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/power.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/search.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/highlight.js/lib/languages/clojure-repl.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | contains: [ 4 | { 5 | className: 'meta', 6 | begin: /^([\w.-]+|\s*#_)?=>/, 7 | starts: { 8 | end: /$/, 9 | subLanguage: 'clojure' 10 | } 11 | } 12 | ] 13 | } 14 | }; -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cloudsmith.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/jira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/monero.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ellipsis-v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/meh-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paper-plane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/qrcode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/bouncing_exits/bounceOutLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes bounceOutLeft { 2 | 20% { 3 | opacity: 1; 4 | transform: translate3d(20px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 0; 9 | transform: translate3d(-2000px, 0, 0); 10 | } 11 | } 12 | 13 | .bounceOutLeft { 14 | animation-name: bounceOutLeft; 15 | } 16 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_entrances/fadeInDownBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInDownBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, -2000px, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInDownBig { 14 | animation-name: fadeInDownBig; 15 | } 16 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_entrances/fadeInLeftBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInLeftBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(-2000px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInLeftBig { 14 | animation-name: fadeInLeftBig; 15 | } 16 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/eye.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/message-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/minus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/send.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/terminal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/img/svg/separators/line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/buysellads.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/maxcdn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/tiktok.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/box.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ellipsis-h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/record-vinyl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/suitcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/utensil-spoon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/bouncing_exits/bounceOutRight.css: -------------------------------------------------------------------------------- 1 | @keyframes bounceOutRight { 2 | 20% { 3 | opacity: 1; 4 | transform: translate3d(-20px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 0; 9 | transform: translate3d(2000px, 0, 0); 10 | } 11 | } 12 | 13 | .bounceOutRight { 14 | animation-name: bounceOutRight; 15 | } 16 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/fading_entrances/fadeInRightBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInRightBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(2000px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInRightBig { 14 | animation-name: fadeInRightBig; 15 | } 16 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/lightspeed/lightSpeedOut.css: -------------------------------------------------------------------------------- 1 | @keyframes lightSpeedOut { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | transform: translate3d(100%, 0, 0) skewX(30deg); 8 | opacity: 0; 9 | } 10 | } 11 | 12 | .lightSpeedOut { 13 | animation-name: lightSpeedOut; 14 | animation-timing-function: ease-in; 15 | } 16 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/arrow-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/arrow-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/arrow-up-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/bell.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/corner-left-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/corner-up-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/edit-3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/mouse-pointer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/octagon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/pie-chart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/play-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/rewind.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/skip-back.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/tv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stack-exchange.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stack-overflow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-square-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/neuter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/rotating_exits/rotateOut.css: -------------------------------------------------------------------------------- 1 | @keyframes rotateOut { 2 | from { 3 | transform-origin: center; 4 | opacity: 1; 5 | } 6 | 7 | to { 8 | transform-origin: center; 9 | transform: rotate3d(0, 0, 1, 200deg); 10 | opacity: 0; 11 | } 12 | } 13 | 14 | .rotateOut { 15 | animation-name: rotateOut; 16 | } 17 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/arrow-down-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/arrow-up-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/at-sign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/award.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/bold.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/chevrons-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/chevrons-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/chevrons-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/corner-down-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/corner-right-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/corner-up-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/map-pin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/rotate-ccw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/rotate-cw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/sidebar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/skip-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/underline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/unlock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/wind.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bitbucket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dropbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/equals.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/arrow-down-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/battery.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/chevrons-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/corner-down-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/corner-left-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/corner-right-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/fast-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/home.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/music.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/rss.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/toggle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/triangle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/video.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/volume-1.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/highlight.js/lib/languages/shell.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | aliases: ['console'], 4 | contains: [ 5 | { 6 | className: 'meta', 7 | begin: '^\\s{0,3}[/\\w\\d\\[\\]()@-]*[>%$#]', 8 | starts: { 9 | end: '$', subLanguage: 'bash' 10 | } 11 | } 12 | ] 13 | } 14 | }; -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/kaggle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/coffee.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cross.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/video.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/check-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/credit-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/flag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/toggle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/trending-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/css3-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dashcube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-area.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hard-hat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-broken.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/icicles.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/music.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/divide.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/dollar-sign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/git-merge.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/minus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/smartphone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/target.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/trending-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/highlight.js/lib/languages/erb.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | subLanguage: 'xml', 4 | contains: [ 5 | hljs.COMMENT('<%#', '%>'), 6 | { 7 | begin: '<%[%=-]?', end: '[%-]?%>', 8 | subLanguage: 'ruby', 9 | excludeBegin: true, 10 | excludeEnd: true 11 | } 12 | ] 13 | }; 14 | }; -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/telegram-plane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/window-restore.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-quarter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/industry.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tenge.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/anchor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/book-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/book.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/compass.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/menu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/elementor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/korvue.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-three-quarters.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/glass-martini-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map-marker-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wave-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/briefcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/copy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/italic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/key.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/more-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/type.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/x-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/img/svg/separators/curve-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cuttlefish.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gratipay.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/openid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/product-hunt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sourcetree.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/specials/rollOut.css: -------------------------------------------------------------------------------- 1 | /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ 2 | 3 | @keyframes rollOut { 4 | from { 5 | opacity: 1; 6 | } 7 | 8 | to { 9 | opacity: 0; 10 | transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); 11 | } 12 | } 13 | 14 | .rollOut { 15 | animation-name: rollOut; 16 | } 17 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/check-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/cloud-lightning.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/link-2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/mail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/more-horizontal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/paperclip.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/percent.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/tag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/trash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fulcrum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ethernet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/laptop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mountain.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/animate.css/source/rotating_exits/rotateOutUpLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes rotateOutUpLeft { 2 | from { 3 | transform-origin: left bottom; 4 | opacity: 1; 5 | } 6 | 7 | to { 8 | transform-origin: left bottom; 9 | transform: rotate3d(0, 0, 1, -45deg); 10 | opacity: 0; 11 | } 12 | } 13 | 14 | .rotateOutUpLeft { 15 | animation-name: rotateOutUpLeft; 16 | } 17 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/bar-chart-2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/bar-chart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/camera.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/hexagon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/pause-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/plus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/pocket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/thumbs-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/feather-icons/dist/icons/zoom-out.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/discourse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/facebook-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rockrms.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/unity.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/archive.svg: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------