├── README.md └── src ├── .gitignore ├── Dockerfile ├── entrypoint.sh ├── index.py ├── migrations ├── README ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ └── a11283937150_modelo_inicial.py ├── models ├── base.py ├── order.py └── product.py ├── requirements.txt ├── static ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.min.css │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── style.css │ └── style.min.css ├── img │ ├── carousel-1.jpg │ ├── carousel-2.jpg │ ├── carousel-3.jpg │ ├── cat-1.jpg │ ├── cat-2.jpg │ ├── cat-3.jpg │ ├── cat-4.jpg │ ├── offer-1.jpg │ ├── offer-2.jpg │ ├── payments.png │ ├── product-1.jpg │ ├── product-10.jpg │ ├── product-2.jpg │ ├── product-3.jpg │ ├── product-4.jpg │ ├── product-5.jpg │ ├── product-6.jpg │ ├── product-7.jpg │ ├── product-8.jpg │ ├── product-9.jpg │ ├── user.jpg │ ├── vendor-1.jpg │ ├── vendor-2.jpg │ ├── vendor-3.jpg │ ├── vendor-4.jpg │ ├── vendor-5.jpg │ ├── vendor-6.jpg │ ├── vendor-7.jpg │ └── vendor-8.jpg ├── js │ └── main.js ├── mail │ ├── contact.js │ ├── contact.php │ └── jqBootstrapValidation.min.js └── scss │ ├── bootstrap │ └── scss │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ ├── _alert.scss │ │ ├── _background-variant.scss │ │ ├── _badge.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _deprecate.scss │ │ ├── _float.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hover.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _nav-divider.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _screen-reader.scss │ │ ├── _size.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-hide.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ └── _visibility.scss │ │ ├── utilities │ │ ├── _align.scss │ │ ├── _background.scss │ │ ├── _borders.scss │ │ ├── _clearfix.scss │ │ ├── _display.scss │ │ ├── _embed.scss │ │ ├── _flex.scss │ │ ├── _float.scss │ │ ├── _interactions.scss │ │ ├── _overflow.scss │ │ ├── _position.scss │ │ ├── _screenreaders.scss │ │ ├── _shadows.scss │ │ ├── _sizing.scss │ │ ├── _spacing.scss │ │ ├── _stretched-link.scss │ │ ├── _text.scss │ │ └── _visibility.scss │ │ └── vendor │ │ └── _rfs.scss │ └── style.scss └── templates ├── cart.html ├── checkout.html ├── contact.html ├── detail.html ├── index.html ├── order_confirmation.html ├── shared ├── base.html ├── footer.html └── nav-bar.html └── shop.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/README.md -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/Dockerfile -------------------------------------------------------------------------------- /src/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/entrypoint.sh -------------------------------------------------------------------------------- /src/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/index.py -------------------------------------------------------------------------------- /src/migrations/README: -------------------------------------------------------------------------------- 1 | Single-database configuration for Flask. 2 | -------------------------------------------------------------------------------- /src/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/migrations/alembic.ini -------------------------------------------------------------------------------- /src/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/migrations/env.py -------------------------------------------------------------------------------- /src/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/migrations/script.py.mako -------------------------------------------------------------------------------- /src/migrations/versions/a11283937150_modelo_inicial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/migrations/versions/a11283937150_modelo_inicial.py -------------------------------------------------------------------------------- /src/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/models/base.py -------------------------------------------------------------------------------- /src/models/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/models/order.py -------------------------------------------------------------------------------- /src/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/models/product.py -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /src/static/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/static/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/static/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/static/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/css/bootstrap.css -------------------------------------------------------------------------------- /src/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/css/style.css -------------------------------------------------------------------------------- /src/static/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/css/style.min.css -------------------------------------------------------------------------------- /src/static/img/carousel-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/carousel-1.jpg -------------------------------------------------------------------------------- /src/static/img/carousel-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/carousel-2.jpg -------------------------------------------------------------------------------- /src/static/img/carousel-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/carousel-3.jpg -------------------------------------------------------------------------------- /src/static/img/cat-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/cat-1.jpg -------------------------------------------------------------------------------- /src/static/img/cat-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/cat-2.jpg -------------------------------------------------------------------------------- /src/static/img/cat-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/cat-3.jpg -------------------------------------------------------------------------------- /src/static/img/cat-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/cat-4.jpg -------------------------------------------------------------------------------- /src/static/img/offer-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/offer-1.jpg -------------------------------------------------------------------------------- /src/static/img/offer-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/offer-2.jpg -------------------------------------------------------------------------------- /src/static/img/payments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/payments.png -------------------------------------------------------------------------------- /src/static/img/product-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/product-1.jpg -------------------------------------------------------------------------------- /src/static/img/product-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/product-10.jpg -------------------------------------------------------------------------------- /src/static/img/product-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/product-2.jpg -------------------------------------------------------------------------------- /src/static/img/product-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/product-3.jpg -------------------------------------------------------------------------------- /src/static/img/product-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/product-4.jpg -------------------------------------------------------------------------------- /src/static/img/product-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/product-5.jpg -------------------------------------------------------------------------------- /src/static/img/product-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/product-6.jpg -------------------------------------------------------------------------------- /src/static/img/product-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/product-7.jpg -------------------------------------------------------------------------------- /src/static/img/product-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/product-8.jpg -------------------------------------------------------------------------------- /src/static/img/product-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/product-9.jpg -------------------------------------------------------------------------------- /src/static/img/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/user.jpg -------------------------------------------------------------------------------- /src/static/img/vendor-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/vendor-1.jpg -------------------------------------------------------------------------------- /src/static/img/vendor-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/vendor-2.jpg -------------------------------------------------------------------------------- /src/static/img/vendor-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/vendor-3.jpg -------------------------------------------------------------------------------- /src/static/img/vendor-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/vendor-4.jpg -------------------------------------------------------------------------------- /src/static/img/vendor-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/vendor-5.jpg -------------------------------------------------------------------------------- /src/static/img/vendor-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/vendor-6.jpg -------------------------------------------------------------------------------- /src/static/img/vendor-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/vendor-7.jpg -------------------------------------------------------------------------------- /src/static/img/vendor-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/img/vendor-8.jpg -------------------------------------------------------------------------------- /src/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/js/main.js -------------------------------------------------------------------------------- /src/static/mail/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/mail/contact.js -------------------------------------------------------------------------------- /src/static/mail/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/mail/contact.php -------------------------------------------------------------------------------- /src/static/mail/jqBootstrapValidation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/mail/jqBootstrapValidation.min.js -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_custom-forms.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_input-group.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_jumbotron.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_background-variant.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_badge.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_border-radius.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_deprecate.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_float.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_hover.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_list-group.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_pagination.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_reset-text.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_screen-reader.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_size.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_table-row.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_text-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_text-hide.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_transition.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/mixins/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/mixins/_visibility.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_align.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_background.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_borders.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_clearfix.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_display.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_embed.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_flex.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_float.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_interactions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_interactions.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_overflow.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_position.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_screenreaders.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_shadows.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_sizing.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_spacing.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_stretched-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_stretched-link.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_text.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/utilities/_visibility.scss -------------------------------------------------------------------------------- /src/static/scss/bootstrap/scss/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/bootstrap/scss/vendor/_rfs.scss -------------------------------------------------------------------------------- /src/static/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/static/scss/style.scss -------------------------------------------------------------------------------- /src/templates/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/templates/cart.html -------------------------------------------------------------------------------- /src/templates/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/templates/checkout.html -------------------------------------------------------------------------------- /src/templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/templates/contact.html -------------------------------------------------------------------------------- /src/templates/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/templates/detail.html -------------------------------------------------------------------------------- /src/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/templates/index.html -------------------------------------------------------------------------------- /src/templates/order_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/templates/order_confirmation.html -------------------------------------------------------------------------------- /src/templates/shared/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/templates/shared/base.html -------------------------------------------------------------------------------- /src/templates/shared/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/templates/shared/footer.html -------------------------------------------------------------------------------- /src/templates/shared/nav-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/templates/shared/nav-bar.html -------------------------------------------------------------------------------- /src/templates/shop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KubeDev/fake-shop/HEAD/src/templates/shop.html --------------------------------------------------------------------------------