├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── collection ├── __init__.py ├── admin.py ├── apps.py ├── backends.py ├── forms.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── email_reminder.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_thing_user.py │ ├── 0003_auto_20160317_2207.py │ ├── 0004_social.py │ ├── 0005_auto_20160317_2237.py │ ├── 0006_upload.py │ ├── 0007_auto_20160322_0400.py │ └── __init__.py ├── models.py ├── serializers.py ├── sitemap.py ├── static │ ├── css │ │ ├── bootstrap-flex.css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap.css │ │ └── style.css │ ├── js │ │ ├── alert.js │ │ ├── all.js │ │ ├── button.js │ │ ├── carousel.js │ │ ├── collapse.js │ │ ├── dropdown.js │ │ ├── modal.js │ │ ├── popover.js │ │ ├── scrollspy.js │ │ ├── tab.js │ │ ├── tooltip.js │ │ └── util.js │ └── scss │ │ ├── _alert.scss │ │ ├── _animation.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _labels.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _normalize.scss │ │ ├── _pager.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _responsive-embed.scss │ │ ├── _tables.scss │ │ ├── _tooltip.scss │ │ ├── _type.scss │ │ ├── _utilities-background.scss │ │ ├── _utilities-responsive.scss │ │ ├── _utilities-spacing.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-flex.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ ├── _alert.scss │ │ ├── _background-variant.scss │ │ ├── _border-radius.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _cards.scss │ │ ├── _center-block.scss │ │ ├── _clearfix.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hover.scss │ │ ├── _image.scss │ │ ├── _label.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _nav-divider.scss │ │ ├── _navbar-align.scss │ │ ├── _pagination.scss │ │ ├── _progress.scss │ │ ├── _pulls.scss │ │ ├── _reset-filter.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _screen-reader.scss │ │ ├── _size.scss │ │ ├── _tab-focus.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-hide.scss │ │ └── _text-truncate.scss │ │ └── style.scss ├── templates │ ├── 404.html │ ├── 500.html │ ├── about.html │ ├── base.html │ ├── contact.html │ ├── contact_template.txt │ ├── index.html │ ├── layouts │ │ └── base.html │ ├── login_reminder.txt │ ├── registration │ │ ├── login.html │ │ ├── logout.html │ │ ├── password_change_done.html │ │ ├── password_change_form.html │ │ ├── password_reset_complete.html │ │ ├── password_reset_confirm.html │ │ ├── password_reset_done.html │ │ ├── password_reset_email.txt │ │ ├── password_reset_form.html │ │ ├── registration_complete.html │ │ └── registration_form.html │ ├── search │ │ └── search.html │ └── things │ │ ├── create_thing.html │ │ ├── edit_email.html │ │ ├── edit_thing.html │ │ ├── edit_thing_uploads.html │ │ └── thing_detail.html ├── tests.py └── views.py ├── gulpfile.js ├── hellowebapp ├── __init__.py ├── settings.py ├── settings_production.py ├── urls.py └── wsgi.py ├── manage.py ├── package.json ├── requirements.txt └── static └── robots.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: waitress-serve --port=$PORT hellowebapp.wsgi:application 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/README.md -------------------------------------------------------------------------------- /collection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collection/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/admin.py -------------------------------------------------------------------------------- /collection/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/apps.py -------------------------------------------------------------------------------- /collection/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/backends.py -------------------------------------------------------------------------------- /collection/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/forms.py -------------------------------------------------------------------------------- /collection/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collection/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collection/management/commands/email_reminder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/management/commands/email_reminder.py -------------------------------------------------------------------------------- /collection/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/migrations/0001_initial.py -------------------------------------------------------------------------------- /collection/migrations/0002_thing_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/migrations/0002_thing_user.py -------------------------------------------------------------------------------- /collection/migrations/0003_auto_20160317_2207.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/migrations/0003_auto_20160317_2207.py -------------------------------------------------------------------------------- /collection/migrations/0004_social.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/migrations/0004_social.py -------------------------------------------------------------------------------- /collection/migrations/0005_auto_20160317_2237.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/migrations/0005_auto_20160317_2237.py -------------------------------------------------------------------------------- /collection/migrations/0006_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/migrations/0006_upload.py -------------------------------------------------------------------------------- /collection/migrations/0007_auto_20160322_0400.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/migrations/0007_auto_20160322_0400.py -------------------------------------------------------------------------------- /collection/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collection/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/models.py -------------------------------------------------------------------------------- /collection/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/serializers.py -------------------------------------------------------------------------------- /collection/sitemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/sitemap.py -------------------------------------------------------------------------------- /collection/static/css/bootstrap-flex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/css/bootstrap-flex.css -------------------------------------------------------------------------------- /collection/static/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/css/bootstrap-grid.css -------------------------------------------------------------------------------- /collection/static/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /collection/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/css/bootstrap.css -------------------------------------------------------------------------------- /collection/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/css/style.css -------------------------------------------------------------------------------- /collection/static/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/js/alert.js -------------------------------------------------------------------------------- /collection/static/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/js/all.js -------------------------------------------------------------------------------- /collection/static/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/js/button.js -------------------------------------------------------------------------------- /collection/static/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/js/carousel.js -------------------------------------------------------------------------------- /collection/static/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/js/collapse.js -------------------------------------------------------------------------------- /collection/static/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/js/dropdown.js -------------------------------------------------------------------------------- /collection/static/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/js/modal.js -------------------------------------------------------------------------------- /collection/static/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/js/popover.js -------------------------------------------------------------------------------- /collection/static/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/js/scrollspy.js -------------------------------------------------------------------------------- /collection/static/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/js/tab.js -------------------------------------------------------------------------------- /collection/static/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/js/tooltip.js -------------------------------------------------------------------------------- /collection/static/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/js/util.js -------------------------------------------------------------------------------- /collection/static/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_alert.scss -------------------------------------------------------------------------------- /collection/static/scss/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_animation.scss -------------------------------------------------------------------------------- /collection/static/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /collection/static/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_button-group.scss -------------------------------------------------------------------------------- /collection/static/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_buttons.scss -------------------------------------------------------------------------------- /collection/static/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_card.scss -------------------------------------------------------------------------------- /collection/static/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_carousel.scss -------------------------------------------------------------------------------- /collection/static/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_close.scss -------------------------------------------------------------------------------- /collection/static/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_code.scss -------------------------------------------------------------------------------- /collection/static/scss/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_custom-forms.scss -------------------------------------------------------------------------------- /collection/static/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_dropdown.scss -------------------------------------------------------------------------------- /collection/static/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_forms.scss -------------------------------------------------------------------------------- /collection/static/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_grid.scss -------------------------------------------------------------------------------- /collection/static/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_images.scss -------------------------------------------------------------------------------- /collection/static/scss/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_input-group.scss -------------------------------------------------------------------------------- /collection/static/scss/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_jumbotron.scss -------------------------------------------------------------------------------- /collection/static/scss/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_labels.scss -------------------------------------------------------------------------------- /collection/static/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_list-group.scss -------------------------------------------------------------------------------- /collection/static/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_media.scss -------------------------------------------------------------------------------- /collection/static/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_mixins.scss -------------------------------------------------------------------------------- /collection/static/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_modal.scss -------------------------------------------------------------------------------- /collection/static/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_nav.scss -------------------------------------------------------------------------------- /collection/static/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_navbar.scss -------------------------------------------------------------------------------- /collection/static/scss/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_normalize.scss -------------------------------------------------------------------------------- /collection/static/scss/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_pager.scss -------------------------------------------------------------------------------- /collection/static/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_pagination.scss -------------------------------------------------------------------------------- /collection/static/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_popover.scss -------------------------------------------------------------------------------- /collection/static/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_print.scss -------------------------------------------------------------------------------- /collection/static/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_progress.scss -------------------------------------------------------------------------------- /collection/static/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_reboot.scss -------------------------------------------------------------------------------- /collection/static/scss/_responsive-embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_responsive-embed.scss -------------------------------------------------------------------------------- /collection/static/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_tables.scss -------------------------------------------------------------------------------- /collection/static/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_tooltip.scss -------------------------------------------------------------------------------- /collection/static/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_type.scss -------------------------------------------------------------------------------- /collection/static/scss/_utilities-background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_utilities-background.scss -------------------------------------------------------------------------------- /collection/static/scss/_utilities-responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_utilities-responsive.scss -------------------------------------------------------------------------------- /collection/static/scss/_utilities-spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_utilities-spacing.scss -------------------------------------------------------------------------------- /collection/static/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_utilities.scss -------------------------------------------------------------------------------- /collection/static/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/_variables.scss -------------------------------------------------------------------------------- /collection/static/scss/bootstrap-flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/bootstrap-flex.scss -------------------------------------------------------------------------------- /collection/static/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /collection/static/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /collection/static/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/bootstrap.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_background-variant.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_border-radius.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_cards.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_center-block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_center-block.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_hover.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_image.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_label.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_list-group.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_navbar-align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_navbar-align.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_pagination.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_progress.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_pulls.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_pulls.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_reset-filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_reset-filter.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_reset-text.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_screen-reader.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_size.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_tab-focus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_tab-focus.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_table-row.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_text-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_text-hide.scss -------------------------------------------------------------------------------- /collection/static/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/static/scss/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /collection/static/scss/style.scss: -------------------------------------------------------------------------------- 1 | @import "bootstrap"; 2 | 3 | body { 4 | } 5 | -------------------------------------------------------------------------------- /collection/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/404.html -------------------------------------------------------------------------------- /collection/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/500.html -------------------------------------------------------------------------------- /collection/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/about.html -------------------------------------------------------------------------------- /collection/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/base.html -------------------------------------------------------------------------------- /collection/templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/contact.html -------------------------------------------------------------------------------- /collection/templates/contact_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/contact_template.txt -------------------------------------------------------------------------------- /collection/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/index.html -------------------------------------------------------------------------------- /collection/templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/layouts/base.html -------------------------------------------------------------------------------- /collection/templates/login_reminder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/login_reminder.txt -------------------------------------------------------------------------------- /collection/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/registration/login.html -------------------------------------------------------------------------------- /collection/templates/registration/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/registration/logout.html -------------------------------------------------------------------------------- /collection/templates/registration/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/registration/password_change_done.html -------------------------------------------------------------------------------- /collection/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/registration/password_change_form.html -------------------------------------------------------------------------------- /collection/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /collection/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /collection/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /collection/templates/registration/password_reset_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/registration/password_reset_email.txt -------------------------------------------------------------------------------- /collection/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /collection/templates/registration/registration_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/registration/registration_complete.html -------------------------------------------------------------------------------- /collection/templates/registration/registration_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/registration/registration_form.html -------------------------------------------------------------------------------- /collection/templates/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/search/search.html -------------------------------------------------------------------------------- /collection/templates/things/create_thing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/things/create_thing.html -------------------------------------------------------------------------------- /collection/templates/things/edit_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/things/edit_email.html -------------------------------------------------------------------------------- /collection/templates/things/edit_thing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/things/edit_thing.html -------------------------------------------------------------------------------- /collection/templates/things/edit_thing_uploads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/things/edit_thing_uploads.html -------------------------------------------------------------------------------- /collection/templates/things/thing_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/templates/things/thing_detail.html -------------------------------------------------------------------------------- /collection/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/tests.py -------------------------------------------------------------------------------- /collection/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/collection/views.py -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/gulpfile.js -------------------------------------------------------------------------------- /hellowebapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hellowebapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/hellowebapp/settings.py -------------------------------------------------------------------------------- /hellowebapp/settings_production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/hellowebapp/settings_production.py -------------------------------------------------------------------------------- /hellowebapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/hellowebapp/urls.py -------------------------------------------------------------------------------- /hellowebapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/hellowebapp/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/manage.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowebbooks/hellowebapp-ic-code/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------