├── .gitignore ├── README.md ├── config.yaml ├── ddl ├── v1.0 │ └── Excel Schema-v1.0.xlsx ├── v2.0 │ ├── DDL-v2.0.sql │ ├── ER diagram-2.0.png │ ├── Excel Schema-v2.0.xlsx │ └── Insert.sql └── v3.0 │ └── Excel Schema-v3.0.xlsx ├── ecommerce ├── __init__.py ├── forms.py ├── models.py ├── routes.py ├── static │ ├── css │ │ ├── cart.css │ │ ├── checkout.css │ │ ├── home.css │ │ ├── main.css │ │ ├── main.min.css │ │ ├── order.css │ │ ├── productDescription.css │ │ ├── topStyle.css │ │ ├── util.css │ │ └── util.min.css │ ├── fonts │ │ ├── Linearicons-Free-v1.0.0 │ │ │ ├── WebFont │ │ │ │ ├── Linearicons-Free.eot │ │ │ │ ├── Linearicons-Free.svg │ │ │ │ ├── Linearicons-Free.ttf │ │ │ │ ├── Linearicons-Free.woff │ │ │ │ └── Linearicons-Free.woff2 │ │ │ └── icon-font.min.css │ │ ├── elegant-font │ │ │ ├── Licensing │ │ │ │ ├── gpl_license.txt │ │ │ │ └── mit_license.txt │ │ │ ├── html-css │ │ │ │ ├── fonts │ │ │ │ │ ├── ElegantIcons.eot │ │ │ │ │ ├── ElegantIcons.svg │ │ │ │ │ ├── ElegantIcons.ttf │ │ │ │ │ └── ElegantIcons.woff │ │ │ │ ├── index.html │ │ │ │ ├── lte-ie7.js │ │ │ │ └── style.css │ │ │ └── images │ │ │ │ ├── PNG │ │ │ │ ├── arrow-up-down.png │ │ │ │ ├── arrow_back.png │ │ │ │ ├── arrow_carrot-2down.png │ │ │ │ ├── arrow_carrot-2down_alt2.png │ │ │ │ ├── arrow_carrot-2dwnn_alt.png │ │ │ │ ├── arrow_carrot-2left.png │ │ │ │ ├── arrow_carrot-2left_alt.png │ │ │ │ ├── arrow_carrot-2left_alt2.png │ │ │ │ ├── arrow_carrot-2right.png │ │ │ │ ├── arrow_carrot-2right_alt.png │ │ │ │ ├── arrow_carrot-2right_alt2.png │ │ │ │ ├── arrow_carrot-2up.png │ │ │ │ ├── arrow_carrot-2up_alt.png │ │ │ │ ├── arrow_carrot-2up_alt2.png │ │ │ │ ├── arrow_carrot-down.png │ │ │ │ ├── arrow_carrot-down_alt.png │ │ │ │ ├── arrow_carrot-down_alt2.png │ │ │ │ ├── arrow_carrot-left.png │ │ │ │ ├── arrow_carrot-left_alt.png │ │ │ │ ├── arrow_carrot-left_alt2.png │ │ │ │ ├── arrow_carrot-right.png │ │ │ │ ├── arrow_carrot-right_alt.png │ │ │ │ ├── arrow_carrot-right_alt2.png │ │ │ │ ├── arrow_carrot-up.png │ │ │ │ ├── arrow_carrot-up_alt2.png │ │ │ │ ├── arrow_carrot_up_alt.png │ │ │ │ ├── arrow_condense.png │ │ │ │ ├── arrow_condense_alt.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_alt.png │ │ │ │ ├── arrow_expand.png │ │ │ │ ├── arrow_expand_alt.png │ │ │ │ ├── arrow_expand_alt2.png │ │ │ │ ├── arrow_expand_alt3.png │ │ │ │ ├── arrow_left-down.png │ │ │ │ ├── arrow_left-down_alt.png │ │ │ │ ├── arrow_left-right.png │ │ │ │ ├── arrow_left-right_alt.png │ │ │ │ ├── arrow_left-up.png │ │ │ │ ├── arrow_left-up_alt.png │ │ │ │ ├── arrow_left.png │ │ │ │ ├── arrow_left_alt.png │ │ │ │ ├── arrow_move.png │ │ │ │ ├── arrow_right-down.png │ │ │ │ ├── arrow_right-down_alt.png │ │ │ │ ├── arrow_right-up.png │ │ │ │ ├── arrow_right-up_alt.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_alt.png │ │ │ │ ├── arrow_triangle-down.png │ │ │ │ ├── arrow_triangle-down_alt.png │ │ │ │ ├── arrow_triangle-down_alt2.png │ │ │ │ ├── arrow_triangle-left.png │ │ │ │ ├── arrow_triangle-left_alt.png │ │ │ │ ├── arrow_triangle-left_alt2.png │ │ │ │ ├── arrow_triangle-right.png │ │ │ │ ├── arrow_triangle-right_alt.png │ │ │ │ ├── arrow_triangle-right_alt2.png │ │ │ │ ├── arrow_triangle-up.png │ │ │ │ ├── arrow_triangle-up_alt.png │ │ │ │ ├── arrow_triangle-up_alt2.png │ │ │ │ ├── arrow_up-down_alt.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── arrow_up_alt.png │ │ │ │ ├── icon_adjust-horiz.png │ │ │ │ ├── icon_adjust-vert.png │ │ │ │ ├── icon_archive.png │ │ │ │ ├── icon_archive_alt.png │ │ │ │ ├── icon_bag.png │ │ │ │ ├── icon_bag_alt.png │ │ │ │ ├── icon_balance.png │ │ │ │ ├── icon_blocked.png │ │ │ │ ├── icon_book.png │ │ │ │ ├── icon_book_alt.png │ │ │ │ ├── icon_box-checked.png │ │ │ │ ├── icon_box-empty.png │ │ │ │ ├── icon_box-selected.png │ │ │ │ ├── icon_briefcase.png │ │ │ │ ├── icon_briefcase_alt.png │ │ │ │ ├── icon_building.png │ │ │ │ ├── icon_building_alt.png │ │ │ │ ├── icon_calculator_alt.png │ │ │ │ ├── icon_calendar.png │ │ │ │ ├── icon_calulator.png │ │ │ │ ├── icon_camera.png │ │ │ │ ├── icon_camera_alt.png │ │ │ │ ├── icon_cart.png │ │ │ │ ├── icon_cart_alt.png │ │ │ │ ├── icon_chat.png │ │ │ │ ├── icon_chat_alt.png │ │ │ │ ├── icon_check.png │ │ │ │ ├── icon_check_alt.png │ │ │ │ ├── icon_check_alt2.png │ │ │ │ ├── icon_circle-empty.png │ │ │ │ ├── icon_circle-slelected.png │ │ │ │ ├── icon_clipboard.png │ │ │ │ ├── icon_clock.png │ │ │ │ ├── icon_clock_alt.png │ │ │ │ ├── icon_close.png │ │ │ │ ├── icon_close_alt.png │ │ │ │ ├── icon_close_alt2.png │ │ │ │ ├── icon_cloud-download.png │ │ │ │ ├── icon_cloud-download_alt.png │ │ │ │ ├── icon_cloud-upload.png │ │ │ │ ├── icon_cloud-upload_alt.png │ │ │ │ ├── icon_cloud.png │ │ │ │ ├── icon_cloud_alt.png │ │ │ │ ├── icon_cog.png │ │ │ │ ├── icon_cogs.png │ │ │ │ ├── icon_comment.png │ │ │ │ ├── icon_comment_alt.png │ │ │ │ ├── icon_compass.png │ │ │ │ ├── icon_compass_alt.png │ │ │ │ ├── icon_cone.png │ │ │ │ ├── icon_cone_alt.png │ │ │ │ ├── icon_contacts.png │ │ │ │ ├── icon_contacts_alt.png │ │ │ │ ├── icon_creditcard.png │ │ │ │ ├── icon_currency.png │ │ │ │ ├── icon_currency_alt.png │ │ │ │ ├── icon_cursor.png │ │ │ │ ├── icon_cursor_alt.png │ │ │ │ ├── icon_datareport.png │ │ │ │ ├── icon_datareport_alt.png │ │ │ │ ├── icon_desktop.png │ │ │ │ ├── icon_dislike.png │ │ │ │ ├── icon_dislike_alt.png │ │ │ │ ├── icon_document.png │ │ │ │ ├── icon_document_alt.png │ │ │ │ ├── icon_documents.png │ │ │ │ ├── icon_documents_alt.png │ │ │ │ ├── icon_download.png │ │ │ │ ├── icon_drawer.png │ │ │ │ ├── icon_drawer_alt.png │ │ │ │ ├── icon_drive.png │ │ │ │ ├── icon_drive_alt.png │ │ │ │ ├── icon_easel.png │ │ │ │ ├── icon_easel_alt.png │ │ │ │ ├── icon_error-circle.png │ │ │ │ ├── icon_error-circle_alt.png │ │ │ │ ├── icon_error-oct.png │ │ │ │ ├── icon_error-oct_alt.png │ │ │ │ ├── icon_error-triangle.png │ │ │ │ ├── icon_error-triangle_alt.png │ │ │ │ ├── icon_film.png │ │ │ │ ├── icon_floppy.png │ │ │ │ ├── icon_floppy_alt.png │ │ │ │ ├── icon_flowchart.png │ │ │ │ ├── icon_flowchart_alt.png │ │ │ │ ├── icon_folder-add.png │ │ │ │ ├── icon_folder-add_alt.png │ │ │ │ ├── icon_folder-alt.png │ │ │ │ ├── icon_folder-open.png │ │ │ │ ├── icon_folder-open_alt.png │ │ │ │ ├── icon_folder.png │ │ │ │ ├── icon_folder_download.png │ │ │ │ ├── icon_folder_upload.png │ │ │ │ ├── icon_genius.png │ │ │ │ ├── icon_gift.png │ │ │ │ ├── icon_gift_alt.png │ │ │ │ ├── icon_globe-2.png │ │ │ │ ├── icon_globe.png │ │ │ │ ├── icon_globe_alt.png │ │ │ │ ├── icon_grid-2x2.png │ │ │ │ ├── icon_grid-3x3.png │ │ │ │ ├── icon_group.png │ │ │ │ ├── icon_headphones.png │ │ │ │ ├── icon_heart.png │ │ │ │ ├── icon_heart_alt.png │ │ │ │ ├── icon_hourglass.png │ │ │ │ ├── icon_house.png │ │ │ │ ├── icon_house_alt.png │ │ │ │ ├── icon_id-2.png │ │ │ │ ├── icon_id-2_alt.png │ │ │ │ ├── icon_id.png │ │ │ │ ├── icon_id_alt.png │ │ │ │ ├── icon_image.png │ │ │ │ ├── icon_images.png │ │ │ │ ├── icon_info.png │ │ │ │ ├── icon_info_alt.png │ │ │ │ ├── icon_key.png │ │ │ │ ├── icon_key_alt.png │ │ │ │ ├── icon_laptop.png │ │ │ │ ├── icon_lifesaver.png │ │ │ │ ├── icon_lightbulb.png │ │ │ │ ├── icon_lightbulb_alt.png │ │ │ │ ├── icon_like.png │ │ │ │ ├── icon_like_alt.png │ │ │ │ ├── icon_link.png │ │ │ │ ├── icon_link_alt.png │ │ │ │ ├── icon_loading.png │ │ │ │ ├── icon_lock-open.png │ │ │ │ ├── icon_lock-open_alt.png │ │ │ │ ├── icon_lock.png │ │ │ │ ├── icon_lock_alt.png │ │ │ │ ├── icon_mail.png │ │ │ │ ├── icon_mail_alt.png │ │ │ │ ├── icon_map.png │ │ │ │ ├── icon_map_alt.png │ │ │ │ ├── icon_menu-circle_alt.png │ │ │ │ ├── icon_menu-circle_alt2.png │ │ │ │ ├── icon_menu-square_alt.png │ │ │ │ ├── icon_menu-square_alt2.png │ │ │ │ ├── icon_menu.png │ │ │ │ ├── icon_mic.png │ │ │ │ ├── icon_mic_alt.png │ │ │ │ ├── icon_minus-06.png │ │ │ │ ├── icon_minus-box.png │ │ │ │ ├── icon_minus_alt.png │ │ │ │ ├── icon_minus_alt2.png │ │ │ │ ├── icon_mobile.png │ │ │ │ ├── icon_mug.png │ │ │ │ ├── icon_mug_alt.png │ │ │ │ ├── icon_music.png │ │ │ │ ├── icon_ol.png │ │ │ │ ├── icon_paperclip.png │ │ │ │ ├── icon_pause.png │ │ │ │ ├── icon_pause_alt.png │ │ │ │ ├── icon_pause_alt2.png │ │ │ │ ├── icon_pencil-edit.png │ │ │ │ ├── icon_pencil-edit_alt.png │ │ │ │ ├── icon_pencil.png │ │ │ │ ├── icon_pencil_alt.png │ │ │ │ ├── icon_pens.png │ │ │ │ ├── icon_pens_alt.png │ │ │ │ ├── icon_percent.png │ │ │ │ ├── icon_percent_alt.png │ │ │ │ ├── icon_phone.png │ │ │ │ ├── icon_piechart.png │ │ │ │ ├── icon_pin.png │ │ │ │ ├── icon_pin_alt.png │ │ │ │ ├── icon_plus-box.png │ │ │ │ ├── icon_plus.png │ │ │ │ ├── icon_plus_alt.png │ │ │ │ ├── icon_plus_alt2.png │ │ │ │ ├── icon_printer-alt.png │ │ │ │ ├── icon_printer.png │ │ │ │ ├── icon_profile.png │ │ │ │ ├── icon_pushpin.png │ │ │ │ ├── icon_pushpin_alt.png │ │ │ │ ├── icon_puzzle.png │ │ │ │ ├── icon_puzzle_alt.png │ │ │ │ ├── icon_question.png │ │ │ │ ├── icon_question_alt.png │ │ │ │ ├── icon_question_alt2.png │ │ │ │ ├── icon_quotations.png │ │ │ │ ├── icon_quotations_alt.png │ │ │ │ ├── icon_quotations_alt2.png │ │ │ │ ├── icon_refresh.png │ │ │ │ ├── icon_ribbon.png │ │ │ │ ├── icon_ribbon_alt.png │ │ │ │ ├── icon_rook.png │ │ │ │ ├── icon_search.png │ │ │ │ ├── icon_search2.png │ │ │ │ ├── icon_search_alt.png │ │ │ │ ├── icon_shield.png │ │ │ │ ├── icon_shield_alt.png │ │ │ │ ├── icon_star-half.png │ │ │ │ ├── icon_star-half_alt.png │ │ │ │ ├── icon_star.png │ │ │ │ ├── icon_star_alt.png │ │ │ │ ├── icon_stop.png │ │ │ │ ├── icon_stop_alt.png │ │ │ │ ├── icon_stop_alt2.png │ │ │ │ ├── icon_table.png │ │ │ │ ├── icon_tablet.png │ │ │ │ ├── icon_tag.png │ │ │ │ ├── icon_tag_alt.png │ │ │ │ ├── icon_tags.png │ │ │ │ ├── icon_tags_alt.png │ │ │ │ ├── icon_target.png │ │ │ │ ├── icon_tool.png │ │ │ │ ├── icon_toolbox.png │ │ │ │ ├── icon_toolbox_alt.png │ │ │ │ ├── icon_tools.png │ │ │ │ ├── icon_trash.png │ │ │ │ ├── icon_trash_alt.png │ │ │ │ ├── icon_ul.png │ │ │ │ ├── icon_upload.png │ │ │ │ ├── icon_vol-mute.png │ │ │ │ ├── icon_vol-mute_alt.png │ │ │ │ ├── icon_volume-high.png │ │ │ │ ├── icon_volume-high_alt.png │ │ │ │ ├── icon_volume-low.png │ │ │ │ ├── icon_volume-low_alt.png │ │ │ │ ├── icon_wallet.png │ │ │ │ ├── icon_wallet_alt.png │ │ │ │ ├── icon_zoom-in.png │ │ │ │ ├── icon_zoom-in_alt.png │ │ │ │ ├── icon_zoom-out.png │ │ │ │ ├── icon_zoom-out_alt.png │ │ │ │ ├── social_blogger.png │ │ │ │ ├── social_blogger_circle.png │ │ │ │ ├── social_blogger_square.png │ │ │ │ ├── social_delicious.png │ │ │ │ ├── social_delicious_circle.png │ │ │ │ ├── social_delicious_square.png │ │ │ │ ├── social_deviantart.png │ │ │ │ ├── social_deviantart_circle.png │ │ │ │ ├── social_deviantart_square.png │ │ │ │ ├── social_dribbble.png │ │ │ │ ├── social_dribbble_circle.png │ │ │ │ ├── social_dribbble_square.png │ │ │ │ ├── social_facebook.png │ │ │ │ ├── social_facebook_circle.png │ │ │ │ ├── social_facebook_square.png │ │ │ │ ├── social_flickr.png │ │ │ │ ├── social_flickr_circle.png │ │ │ │ ├── social_flickr_square.png │ │ │ │ ├── social_googledrive.png │ │ │ │ ├── social_googledrive_alt2.png │ │ │ │ ├── social_googledrive_square.png │ │ │ │ ├── social_googleplus.png │ │ │ │ ├── social_googleplus_circle.png │ │ │ │ ├── social_googleplus_square.png │ │ │ │ ├── social_instagram.png │ │ │ │ ├── social_instagram_circle.png │ │ │ │ ├── social_instagram_square.png │ │ │ │ ├── social_linkedin.png │ │ │ │ ├── social_linkedin_circle.png │ │ │ │ ├── social_linkedin_square.png │ │ │ │ ├── social_myspace.png │ │ │ │ ├── social_myspace_circle.png │ │ │ │ ├── social_myspace_square.png │ │ │ │ ├── social_picassa.png │ │ │ │ ├── social_picassa_circle.png │ │ │ │ ├── social_picassa_square.png │ │ │ │ ├── social_pinterest.png │ │ │ │ ├── social_pinterest_circle.png │ │ │ │ ├── social_pinterest_square.png │ │ │ │ ├── social_rss.png │ │ │ │ ├── social_rss_circle.png │ │ │ │ ├── social_rss_square.png │ │ │ │ ├── social_share.png │ │ │ │ ├── social_share_circle.png │ │ │ │ ├── social_share_square.png │ │ │ │ ├── social_skype.png │ │ │ │ ├── social_skype_circle.png │ │ │ │ ├── social_skype_square.png │ │ │ │ ├── social_spotify.png │ │ │ │ ├── social_spotify_circle.png │ │ │ │ ├── social_spotify_square.png │ │ │ │ ├── social_stumbleupon_circle.png │ │ │ │ ├── social_stumbleupon_square.png │ │ │ │ ├── social_tumbleupon.png │ │ │ │ ├── social_tumblr.png │ │ │ │ ├── social_tumblr_circle.png │ │ │ │ ├── social_tumblr_square.png │ │ │ │ ├── social_twitter.png │ │ │ │ ├── social_twitter_circle.png │ │ │ │ ├── social_twitter_square.png │ │ │ │ ├── social_vimeo.png │ │ │ │ ├── social_vimeo_circle.png │ │ │ │ ├── social_vimeo_square.png │ │ │ │ ├── social_wordpress.png │ │ │ │ ├── social_wordpress_circle.png │ │ │ │ ├── social_wordpress_square.png │ │ │ │ ├── social_youtube.png │ │ │ │ ├── social_youtube_circle.png │ │ │ │ └── social_youtube_square.png │ │ │ │ └── SVG │ │ │ │ ├── arrow-up-down.svg │ │ │ │ ├── arrow_back.svg │ │ │ │ ├── arrow_carrot-2down.svg │ │ │ │ ├── arrow_carrot-2down_alt2.svg │ │ │ │ ├── arrow_carrot-2dwnn_alt.svg │ │ │ │ ├── arrow_carrot-2left.svg │ │ │ │ ├── arrow_carrot-2left_alt.svg │ │ │ │ ├── arrow_carrot-2left_alt2.svg │ │ │ │ ├── arrow_carrot-2right.svg │ │ │ │ ├── arrow_carrot-2right_alt.svg │ │ │ │ ├── arrow_carrot-2right_alt2.svg │ │ │ │ ├── arrow_carrot-2up.svg │ │ │ │ ├── arrow_carrot-2up_alt.svg │ │ │ │ ├── arrow_carrot-2up_alt2.svg │ │ │ │ ├── arrow_carrot-down.svg │ │ │ │ ├── arrow_carrot-down_alt.svg │ │ │ │ ├── arrow_carrot-down_alt2.svg │ │ │ │ ├── arrow_carrot-left.svg │ │ │ │ ├── arrow_carrot-left_alt.svg │ │ │ │ ├── arrow_carrot-left_alt2.svg │ │ │ │ ├── arrow_carrot-right.svg │ │ │ │ ├── arrow_carrot-right_alt.svg │ │ │ │ ├── arrow_carrot-right_alt2.svg │ │ │ │ ├── arrow_carrot-up.svg │ │ │ │ ├── arrow_carrot-up_alt2.svg │ │ │ │ ├── arrow_carrot_up_alt.svg │ │ │ │ ├── arrow_condense.svg │ │ │ │ ├── arrow_condense_alt.svg │ │ │ │ ├── arrow_down.svg │ │ │ │ ├── arrow_down_alt.svg │ │ │ │ ├── arrow_expand.svg │ │ │ │ ├── arrow_expand_alt.svg │ │ │ │ ├── arrow_expand_alt2.svg │ │ │ │ ├── arrow_expand_alt3.svg │ │ │ │ ├── arrow_left-down.svg │ │ │ │ ├── arrow_left-down_alt.svg │ │ │ │ ├── arrow_left-right.svg │ │ │ │ ├── arrow_left-right_alt.svg │ │ │ │ ├── arrow_left-up.svg │ │ │ │ ├── arrow_left-up_alt.svg │ │ │ │ ├── arrow_left.svg │ │ │ │ ├── arrow_left_alt.svg │ │ │ │ ├── arrow_move.svg │ │ │ │ ├── arrow_right-down.svg │ │ │ │ ├── arrow_right-down_alt.svg │ │ │ │ ├── arrow_right-up.svg │ │ │ │ ├── arrow_right-up_alt.svg │ │ │ │ ├── arrow_right.svg │ │ │ │ ├── arrow_right_alt.svg │ │ │ │ ├── arrow_triangle-down.svg │ │ │ │ ├── arrow_triangle-down_alt.svg │ │ │ │ ├── arrow_triangle-down_alt2.svg │ │ │ │ ├── arrow_triangle-left.svg │ │ │ │ ├── arrow_triangle-left_alt.svg │ │ │ │ ├── arrow_triangle-left_alt2.svg │ │ │ │ ├── arrow_triangle-right.svg │ │ │ │ ├── arrow_triangle-right_alt.svg │ │ │ │ ├── arrow_triangle-right_alt2.svg │ │ │ │ ├── arrow_triangle-up.svg │ │ │ │ ├── arrow_triangle-up_alt.svg │ │ │ │ ├── arrow_triangle-up_alt2.svg │ │ │ │ ├── arrow_up-down_alt.svg │ │ │ │ ├── arrow_up.svg │ │ │ │ ├── arrow_up_alt.svg │ │ │ │ ├── icon_adjust-horiz.svg │ │ │ │ ├── icon_adjust-vert.svg │ │ │ │ ├── icon_archive.svg │ │ │ │ ├── icon_archive_alt.svg │ │ │ │ ├── icon_bag.svg │ │ │ │ ├── icon_bag_alt.svg │ │ │ │ ├── icon_balance.svg │ │ │ │ ├── icon_blocked.svg │ │ │ │ ├── icon_book.svg │ │ │ │ ├── icon_book_alt.svg │ │ │ │ ├── icon_box-checked.svg │ │ │ │ ├── icon_box-empty.svg │ │ │ │ ├── icon_box-selected.svg │ │ │ │ ├── icon_briefcase.svg │ │ │ │ ├── icon_briefcase_alt.svg │ │ │ │ ├── icon_building.svg │ │ │ │ ├── icon_building_alt.svg │ │ │ │ ├── icon_calculator_alt.svg │ │ │ │ ├── icon_calendar.svg │ │ │ │ ├── icon_calulator.svg │ │ │ │ ├── icon_camera.svg │ │ │ │ ├── icon_camera_alt.svg │ │ │ │ ├── icon_cart.svg │ │ │ │ ├── icon_cart_alt.svg │ │ │ │ ├── icon_chat.svg │ │ │ │ ├── icon_chat_alt.svg │ │ │ │ ├── icon_check.svg │ │ │ │ ├── icon_check_alt.svg │ │ │ │ ├── icon_check_alt2.svg │ │ │ │ ├── icon_circle-empty.svg │ │ │ │ ├── icon_circle-slelected.svg │ │ │ │ ├── icon_clipboard.svg │ │ │ │ ├── icon_clock.svg │ │ │ │ ├── icon_clock_alt.svg │ │ │ │ ├── icon_close.svg │ │ │ │ ├── icon_close_alt.svg │ │ │ │ ├── icon_close_alt2.svg │ │ │ │ ├── icon_cloud-download.svg │ │ │ │ ├── icon_cloud-download_alt.svg │ │ │ │ ├── icon_cloud-upload.svg │ │ │ │ ├── icon_cloud-upload_alt.svg │ │ │ │ ├── icon_cloud.svg │ │ │ │ ├── icon_cloud_alt.svg │ │ │ │ ├── icon_cog.svg │ │ │ │ ├── icon_cogs.svg │ │ │ │ ├── icon_comment.svg │ │ │ │ ├── icon_comment_alt.svg │ │ │ │ ├── icon_compass.svg │ │ │ │ ├── icon_compass_alt.svg │ │ │ │ ├── icon_cone.svg │ │ │ │ ├── icon_cone_alt.svg │ │ │ │ ├── icon_contacts.svg │ │ │ │ ├── icon_contacts_alt.svg │ │ │ │ ├── icon_creditcard.svg │ │ │ │ ├── icon_currency.svg │ │ │ │ ├── icon_currency_alt.svg │ │ │ │ ├── icon_cursor.svg │ │ │ │ ├── icon_cursor_alt.svg │ │ │ │ ├── icon_datareport.svg │ │ │ │ ├── icon_datareport_alt.svg │ │ │ │ ├── icon_desktop.svg │ │ │ │ ├── icon_dislike.svg │ │ │ │ ├── icon_dislike_alt.svg │ │ │ │ ├── icon_document.svg │ │ │ │ ├── icon_document_alt.svg │ │ │ │ ├── icon_documents.svg │ │ │ │ ├── icon_documents_alt.svg │ │ │ │ ├── icon_download.svg │ │ │ │ ├── icon_drawer.svg │ │ │ │ ├── icon_drawer_alt.svg │ │ │ │ ├── icon_drive.svg │ │ │ │ ├── icon_drive_alt.svg │ │ │ │ ├── icon_easel.svg │ │ │ │ ├── icon_easel_alt.svg │ │ │ │ ├── icon_error-circle.svg │ │ │ │ ├── icon_error-circle_alt.svg │ │ │ │ ├── icon_error-oct.svg │ │ │ │ ├── icon_error-oct_alt.svg │ │ │ │ ├── icon_error-triangle.svg │ │ │ │ ├── icon_error-triangle_alt.svg │ │ │ │ ├── icon_film.svg │ │ │ │ ├── icon_floppy.svg │ │ │ │ ├── icon_floppy_alt.svg │ │ │ │ ├── icon_flowchart.svg │ │ │ │ ├── icon_flowchart_alt.svg │ │ │ │ ├── icon_folder-add.svg │ │ │ │ ├── icon_folder-add_alt.svg │ │ │ │ ├── icon_folder-alt.svg │ │ │ │ ├── icon_folder-open.svg │ │ │ │ ├── icon_folder-open_alt.svg │ │ │ │ ├── icon_folder.svg │ │ │ │ ├── icon_folder_download.svg │ │ │ │ ├── icon_folder_upload.svg │ │ │ │ ├── icon_genius.svg │ │ │ │ ├── icon_gift.svg │ │ │ │ ├── icon_gift_alt.svg │ │ │ │ ├── icon_globe-2.svg │ │ │ │ ├── icon_globe.svg │ │ │ │ ├── icon_globe_alt.svg │ │ │ │ ├── icon_grid-2x2.svg │ │ │ │ ├── icon_grid-3x3.svg │ │ │ │ ├── icon_group.svg │ │ │ │ ├── icon_headphones.svg │ │ │ │ ├── icon_heart.svg │ │ │ │ ├── icon_heart_alt.svg │ │ │ │ ├── icon_hourglass.svg │ │ │ │ ├── icon_house.svg │ │ │ │ ├── icon_house_alt.svg │ │ │ │ ├── icon_id-2.svg │ │ │ │ ├── icon_id-2_alt.svg │ │ │ │ ├── icon_id.svg │ │ │ │ ├── icon_id_alt.svg │ │ │ │ ├── icon_image.svg │ │ │ │ ├── icon_images.svg │ │ │ │ ├── icon_info.svg │ │ │ │ ├── icon_info_alt.svg │ │ │ │ ├── icon_key.svg │ │ │ │ ├── icon_key_alt.svg │ │ │ │ ├── icon_laptop.svg │ │ │ │ ├── icon_lifesaver.svg │ │ │ │ ├── icon_lightbulb.svg │ │ │ │ ├── icon_lightbulb_alt.svg │ │ │ │ ├── icon_like.svg │ │ │ │ ├── icon_like_alt.svg │ │ │ │ ├── icon_link.svg │ │ │ │ ├── icon_link_alt.svg │ │ │ │ ├── icon_loading.svg │ │ │ │ ├── icon_lock-open.svg │ │ │ │ ├── icon_lock-open_alt.svg │ │ │ │ ├── icon_lock.svg │ │ │ │ ├── icon_lock_alt.svg │ │ │ │ ├── icon_mail.svg │ │ │ │ ├── icon_mail_alt.svg │ │ │ │ ├── icon_map.svg │ │ │ │ ├── icon_map_alt.svg │ │ │ │ ├── icon_menu-circle_alt.svg │ │ │ │ ├── icon_menu-circle_alt2.svg │ │ │ │ ├── icon_menu-square_alt.svg │ │ │ │ ├── icon_menu-square_alt2.svg │ │ │ │ ├── icon_menu.svg │ │ │ │ ├── icon_mic.svg │ │ │ │ ├── icon_mic_alt.svg │ │ │ │ ├── icon_minus-06.svg │ │ │ │ ├── icon_minus-box.svg │ │ │ │ ├── icon_minus_alt.svg │ │ │ │ ├── icon_minus_alt2.svg │ │ │ │ ├── icon_mobile.svg │ │ │ │ ├── icon_mug.svg │ │ │ │ ├── icon_mug_alt.svg │ │ │ │ ├── icon_music.svg │ │ │ │ ├── icon_ol.svg │ │ │ │ ├── icon_paperclip.svg │ │ │ │ ├── icon_pause.svg │ │ │ │ ├── icon_pause_alt.svg │ │ │ │ ├── icon_pause_alt2.svg │ │ │ │ ├── icon_pencil-edit.svg │ │ │ │ ├── icon_pencil-edit_alt.svg │ │ │ │ ├── icon_pencil.svg │ │ │ │ ├── icon_pencil_alt.svg │ │ │ │ ├── icon_pens.svg │ │ │ │ ├── icon_pens_alt.svg │ │ │ │ ├── icon_percent.svg │ │ │ │ ├── icon_percent_alt.svg │ │ │ │ ├── icon_phone.svg │ │ │ │ ├── icon_piechart.svg │ │ │ │ ├── icon_pin.svg │ │ │ │ ├── icon_pin_alt.svg │ │ │ │ ├── icon_plus-box.svg │ │ │ │ ├── icon_plus.svg │ │ │ │ ├── icon_plus_alt.svg │ │ │ │ ├── icon_plus_alt2.svg │ │ │ │ ├── icon_printer-alt.svg │ │ │ │ ├── icon_printer.svg │ │ │ │ ├── icon_profile.svg │ │ │ │ ├── icon_pushpin.svg │ │ │ │ ├── icon_pushpin_alt.svg │ │ │ │ ├── icon_puzzle.svg │ │ │ │ ├── icon_puzzle_alt.svg │ │ │ │ ├── icon_question.svg │ │ │ │ ├── icon_question_alt.svg │ │ │ │ ├── icon_question_alt2.svg │ │ │ │ ├── icon_quotations.svg │ │ │ │ ├── icon_quotations_alt.svg │ │ │ │ ├── icon_quotations_alt2.svg │ │ │ │ ├── icon_refresh.svg │ │ │ │ ├── icon_ribbon.svg │ │ │ │ ├── icon_ribbon_alt.svg │ │ │ │ ├── icon_rook.svg │ │ │ │ ├── icon_search.svg │ │ │ │ ├── icon_search2.svg │ │ │ │ ├── icon_search_alt.svg │ │ │ │ ├── icon_shield.svg │ │ │ │ ├── icon_shield_alt.svg │ │ │ │ ├── icon_star-half.svg │ │ │ │ ├── icon_star-half_alt.svg │ │ │ │ ├── icon_star.svg │ │ │ │ ├── icon_star_alt.svg │ │ │ │ ├── icon_stop.svg │ │ │ │ ├── icon_stop_alt.svg │ │ │ │ ├── icon_stop_alt2.svg │ │ │ │ ├── icon_table.svg │ │ │ │ ├── icon_tablet.svg │ │ │ │ ├── icon_tag.svg │ │ │ │ ├── icon_tag_alt.svg │ │ │ │ ├── icon_tags.svg │ │ │ │ ├── icon_tags_alt.svg │ │ │ │ ├── icon_target.svg │ │ │ │ ├── icon_tool.svg │ │ │ │ ├── icon_toolbox.svg │ │ │ │ ├── icon_toolbox_alt.svg │ │ │ │ ├── icon_tools.svg │ │ │ │ ├── icon_trash.svg │ │ │ │ ├── icon_trash_alt.svg │ │ │ │ ├── icon_ul.svg │ │ │ │ ├── icon_upload.svg │ │ │ │ ├── icon_vol-mute.svg │ │ │ │ ├── icon_vol-mute_alt.svg │ │ │ │ ├── icon_volume-high.svg │ │ │ │ ├── icon_volume-high_alt.svg │ │ │ │ ├── icon_volume-low.svg │ │ │ │ ├── icon_volume-low_alt.svg │ │ │ │ ├── icon_wallet.svg │ │ │ │ ├── icon_wallet_alt.svg │ │ │ │ ├── icon_zoom-in.svg │ │ │ │ ├── icon_zoom-in_alt.svg │ │ │ │ ├── icon_zoom-out.svg │ │ │ │ ├── icon_zoom-out_alt.svg │ │ │ │ ├── social_blogger.svg │ │ │ │ ├── social_blogger_circle.svg │ │ │ │ ├── social_blogger_square.svg │ │ │ │ ├── social_delicious.svg │ │ │ │ ├── social_delicious_circle.svg │ │ │ │ ├── social_delicious_square.svg │ │ │ │ ├── social_deviantart.svg │ │ │ │ ├── social_deviantart_circle.svg │ │ │ │ ├── social_deviantart_square.svg │ │ │ │ ├── social_dribbble.svg │ │ │ │ ├── social_dribbble_circle.svg │ │ │ │ ├── social_dribbble_square.svg │ │ │ │ ├── social_facebook.svg │ │ │ │ ├── social_facebook_circle.svg │ │ │ │ ├── social_facebook_square.svg │ │ │ │ ├── social_flickr.svg │ │ │ │ ├── social_flickr_circle.svg │ │ │ │ ├── social_flickr_square.svg │ │ │ │ ├── social_googledrive.svg │ │ │ │ ├── social_googledrive_alt2.svg │ │ │ │ ├── social_googledrive_square.svg │ │ │ │ ├── social_googleplus.svg │ │ │ │ ├── social_googleplus_circle.svg │ │ │ │ ├── social_googleplus_square.svg │ │ │ │ ├── social_instagram.svg │ │ │ │ ├── social_instagram_circle.svg │ │ │ │ ├── social_instagram_square.svg │ │ │ │ ├── social_linkedin.svg │ │ │ │ ├── social_linkedin_circle.svg │ │ │ │ ├── social_linkedin_square.svg │ │ │ │ ├── social_myspace.svg │ │ │ │ ├── social_myspace_circle.svg │ │ │ │ ├── social_myspace_square.svg │ │ │ │ ├── social_picassa.svg │ │ │ │ ├── social_picassa_circle.svg │ │ │ │ ├── social_picassa_square.svg │ │ │ │ ├── social_pinterest.svg │ │ │ │ ├── social_pinterest_circle.svg │ │ │ │ ├── social_pinterest_square.svg │ │ │ │ ├── social_rss.svg │ │ │ │ ├── social_rss_circle.svg │ │ │ │ ├── social_rss_square.svg │ │ │ │ ├── social_share.svg │ │ │ │ ├── social_share_circle.svg │ │ │ │ ├── social_share_square.svg │ │ │ │ ├── social_skype.svg │ │ │ │ ├── social_skype_circle.svg │ │ │ │ ├── social_skype_square.svg │ │ │ │ ├── social_spotify.svg │ │ │ │ ├── social_spotify_circle.svg │ │ │ │ ├── social_spotify_square.svg │ │ │ │ ├── social_stumbleupon_circle.svg │ │ │ │ ├── social_stumbleupon_square.svg │ │ │ │ ├── social_tumbleupon.svg │ │ │ │ ├── social_tumblr.svg │ │ │ │ ├── social_tumblr_circle.svg │ │ │ │ ├── social_tumblr_square.svg │ │ │ │ ├── social_twitter.svg │ │ │ │ ├── social_twitter_circle.svg │ │ │ │ ├── social_twitter_square.svg │ │ │ │ ├── social_vimeo.svg │ │ │ │ ├── social_vimeo_circle.svg │ │ │ │ ├── social_vimeo_square.svg │ │ │ │ ├── social_wordpress.svg │ │ │ │ ├── social_wordpress_circle.svg │ │ │ │ ├── social_wordpress_square.svg │ │ │ │ ├── social_youtube.svg │ │ │ │ ├── social_youtube_circle.svg │ │ │ │ └── social_youtube_square.svg │ │ ├── font-awesome-4.7.0 │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ ├── ionicons-2.0.1 │ │ │ ├── builder │ │ │ │ ├── build_data.json │ │ │ │ ├── cheatsheet │ │ │ │ │ ├── icon-row.html │ │ │ │ │ └── template.html │ │ │ │ ├── generate.py │ │ │ │ ├── manifest.json │ │ │ │ └── scripts │ │ │ │ │ ├── eotlitetool.py │ │ │ │ │ ├── generate_font.py │ │ │ │ │ └── sfnt2woff │ │ │ ├── css │ │ │ │ ├── ionicons.css │ │ │ │ └── ionicons.min.css │ │ │ ├── fonts │ │ │ │ ├── ionicons.eot │ │ │ │ ├── ionicons.svg │ │ │ │ ├── ionicons.ttf │ │ │ │ └── ionicons.woff │ │ │ ├── less │ │ │ │ ├── _ionicons-font.less │ │ │ │ ├── _ionicons-icons.less │ │ │ │ ├── _ionicons-variables.less │ │ │ │ └── ionicons.less │ │ │ ├── png │ │ │ │ └── 512 │ │ │ │ │ ├── alert-circled.png │ │ │ │ │ ├── alert.png │ │ │ │ │ ├── android-add-contact.png │ │ │ │ │ ├── android-add.png │ │ │ │ │ ├── android-alarm.png │ │ │ │ │ ├── android-archive.png │ │ │ │ │ ├── android-arrow-back.png │ │ │ │ │ ├── android-arrow-down-left.png │ │ │ │ │ ├── android-arrow-down-right.png │ │ │ │ │ ├── android-arrow-forward.png │ │ │ │ │ ├── android-arrow-up-left.png │ │ │ │ │ ├── android-arrow-up-right.png │ │ │ │ │ ├── android-battery.png │ │ │ │ │ ├── android-book.png │ │ │ │ │ ├── android-calendar.png │ │ │ │ │ ├── android-call.png │ │ │ │ │ ├── android-camera.png │ │ │ │ │ ├── android-chat.png │ │ │ │ │ ├── android-checkmark.png │ │ │ │ │ ├── android-clock.png │ │ │ │ │ ├── android-close.png │ │ │ │ │ ├── android-contact.png │ │ │ │ │ ├── android-contacts.png │ │ │ │ │ ├── android-data.png │ │ │ │ │ ├── android-developer.png │ │ │ │ │ ├── android-display.png │ │ │ │ │ ├── android-download.png │ │ │ │ │ ├── android-drawer.png │ │ │ │ │ ├── android-dropdown.png │ │ │ │ │ ├── android-earth.png │ │ │ │ │ ├── android-folder.png │ │ │ │ │ ├── android-forums.png │ │ │ │ │ ├── android-friends.png │ │ │ │ │ ├── android-hand.png │ │ │ │ │ ├── android-image.png │ │ │ │ │ ├── android-inbox.png │ │ │ │ │ ├── android-information.png │ │ │ │ │ ├── android-keypad.png │ │ │ │ │ ├── android-lightbulb.png │ │ │ │ │ ├── android-locate.png │ │ │ │ │ ├── android-location.png │ │ │ │ │ ├── android-mail.png │ │ │ │ │ ├── android-microphone.png │ │ │ │ │ ├── android-mixer.png │ │ │ │ │ ├── android-more.png │ │ │ │ │ ├── android-note.png │ │ │ │ │ ├── android-playstore.png │ │ │ │ │ ├── android-printer.png │ │ │ │ │ ├── android-promotion.png │ │ │ │ │ ├── android-reminder.png │ │ │ │ │ ├── android-remove.png │ │ │ │ │ ├── android-search.png │ │ │ │ │ ├── android-send.png │ │ │ │ │ ├── android-settings.png │ │ │ │ │ ├── android-share.png │ │ │ │ │ ├── android-social-user.png │ │ │ │ │ ├── android-social.png │ │ │ │ │ ├── android-sort.png │ │ │ │ │ ├── android-stair-drawer.png │ │ │ │ │ ├── android-star.png │ │ │ │ │ ├── android-stopwatch.png │ │ │ │ │ ├── android-storage.png │ │ │ │ │ ├── android-system-back.png │ │ │ │ │ ├── android-system-home.png │ │ │ │ │ ├── android-system-windows.png │ │ │ │ │ ├── android-timer.png │ │ │ │ │ ├── android-trash.png │ │ │ │ │ ├── android-user-menu.png │ │ │ │ │ ├── android-volume.png │ │ │ │ │ ├── android-wifi.png │ │ │ │ │ ├── aperture.png │ │ │ │ │ ├── archive.png │ │ │ │ │ ├── arrow-down-a.png │ │ │ │ │ ├── arrow-down-b.png │ │ │ │ │ ├── arrow-down-c.png │ │ │ │ │ ├── arrow-expand.png │ │ │ │ │ ├── arrow-graph-down-left.png │ │ │ │ │ ├── arrow-graph-down-right.png │ │ │ │ │ ├── arrow-graph-up-left.png │ │ │ │ │ ├── arrow-graph-up-right.png │ │ │ │ │ ├── arrow-left-a.png │ │ │ │ │ ├── arrow-left-b.png │ │ │ │ │ ├── arrow-left-c.png │ │ │ │ │ ├── arrow-move.png │ │ │ │ │ ├── arrow-resize.png │ │ │ │ │ ├── arrow-return-left.png │ │ │ │ │ ├── arrow-return-right.png │ │ │ │ │ ├── arrow-right-a.png │ │ │ │ │ ├── arrow-right-b.png │ │ │ │ │ ├── arrow-right-c.png │ │ │ │ │ ├── arrow-shrink.png │ │ │ │ │ ├── arrow-swap.png │ │ │ │ │ ├── arrow-up-a.png │ │ │ │ │ ├── arrow-up-b.png │ │ │ │ │ ├── arrow-up-c.png │ │ │ │ │ ├── asterisk.png │ │ │ │ │ ├── at.png │ │ │ │ │ ├── bag.png │ │ │ │ │ ├── battery-charging.png │ │ │ │ │ ├── battery-empty.png │ │ │ │ │ ├── battery-full.png │ │ │ │ │ ├── battery-half.png │ │ │ │ │ ├── battery-low.png │ │ │ │ │ ├── beaker.png │ │ │ │ │ ├── beer.png │ │ │ │ │ ├── bluetooth.png │ │ │ │ │ ├── bonfire.png │ │ │ │ │ ├── bookmark.png │ │ │ │ │ ├── briefcase.png │ │ │ │ │ ├── bug.png │ │ │ │ │ ├── calculator.png │ │ │ │ │ ├── calendar.png │ │ │ │ │ ├── camera.png │ │ │ │ │ ├── card.png │ │ │ │ │ ├── cash.png │ │ │ │ │ ├── chatbox-working.png │ │ │ │ │ ├── chatbox.png │ │ │ │ │ ├── chatboxes.png │ │ │ │ │ ├── chatbubble-working.png │ │ │ │ │ ├── chatbubble.png │ │ │ │ │ ├── chatbubbles.png │ │ │ │ │ ├── checkmark-circled.png │ │ │ │ │ ├── checkmark-round.png │ │ │ │ │ ├── checkmark.png │ │ │ │ │ ├── chevron-down.png │ │ │ │ │ ├── chevron-left.png │ │ │ │ │ ├── chevron-right.png │ │ │ │ │ ├── chevron-up.png │ │ │ │ │ ├── clipboard.png │ │ │ │ │ ├── clock.png │ │ │ │ │ ├── close-circled.png │ │ │ │ │ ├── close-round.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── closed-captioning.png │ │ │ │ │ ├── cloud.png │ │ │ │ │ ├── code-download.png │ │ │ │ │ ├── code-working.png │ │ │ │ │ ├── code.png │ │ │ │ │ ├── coffee.png │ │ │ │ │ ├── compass.png │ │ │ │ │ ├── compose.png │ │ │ │ │ ├── connection-bars.png │ │ │ │ │ ├── contrast.png │ │ │ │ │ ├── cube.png │ │ │ │ │ ├── disc.png │ │ │ │ │ ├── document-text.png │ │ │ │ │ ├── document.png │ │ │ │ │ ├── drag.png │ │ │ │ │ ├── earth.png │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── egg.png │ │ │ │ │ ├── eject.png │ │ │ │ │ ├── email.png │ │ │ │ │ ├── eye-disabled.png │ │ │ │ │ ├── eye.png │ │ │ │ │ ├── female.png │ │ │ │ │ ├── filing.png │ │ │ │ │ ├── film-marker.png │ │ │ │ │ ├── fireball.png │ │ │ │ │ ├── flag.png │ │ │ │ │ ├── flame.png │ │ │ │ │ ├── flash-off.png │ │ │ │ │ ├── flash.png │ │ │ │ │ ├── flask.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── fork-repo.png │ │ │ │ │ ├── fork.png │ │ │ │ │ ├── forward.png │ │ │ │ │ ├── funnel.png │ │ │ │ │ ├── game-controller-a.png │ │ │ │ │ ├── game-controller-b.png │ │ │ │ │ ├── gear-a.png │ │ │ │ │ ├── gear-b.png │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── hammer.png │ │ │ │ │ ├── happy.png │ │ │ │ │ ├── headphone.png │ │ │ │ │ ├── heart-broken.png │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── help-buoy.png │ │ │ │ │ ├── help-circled.png │ │ │ │ │ ├── help.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── icecream.png │ │ │ │ │ ├── icon-social-google-plus-outline.png │ │ │ │ │ ├── icon-social-google-plus.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── images.png │ │ │ │ │ ├── information-circled.png │ │ │ │ │ ├── information.png │ │ │ │ │ ├── ionic.png │ │ │ │ │ ├── ios7-alarm-outline.png │ │ │ │ │ ├── ios7-alarm.png │ │ │ │ │ ├── ios7-albums-outline.png │ │ │ │ │ ├── ios7-albums.png │ │ │ │ │ ├── ios7-americanfootball-outline.png │ │ │ │ │ ├── ios7-americanfootball.png │ │ │ │ │ ├── ios7-analytics-outline.png │ │ │ │ │ ├── ios7-analytics.png │ │ │ │ │ ├── ios7-arrow-back.png │ │ │ │ │ ├── ios7-arrow-down.png │ │ │ │ │ ├── ios7-arrow-forward.png │ │ │ │ │ ├── ios7-arrow-left.png │ │ │ │ │ ├── ios7-arrow-right.png │ │ │ │ │ ├── ios7-arrow-thin-down.png │ │ │ │ │ ├── ios7-arrow-thin-left.png │ │ │ │ │ ├── ios7-arrow-thin-right.png │ │ │ │ │ ├── ios7-arrow-thin-up.png │ │ │ │ │ ├── ios7-arrow-up.png │ │ │ │ │ ├── ios7-at-outline.png │ │ │ │ │ ├── ios7-at.png │ │ │ │ │ ├── ios7-barcode-outline.png │ │ │ │ │ ├── ios7-barcode.png │ │ │ │ │ ├── ios7-baseball-outline.png │ │ │ │ │ ├── ios7-baseball.png │ │ │ │ │ ├── ios7-basketball-outline.png │ │ │ │ │ ├── ios7-basketball.png │ │ │ │ │ ├── ios7-bell-outline.png │ │ │ │ │ ├── ios7-bell.png │ │ │ │ │ ├── ios7-bolt-outline.png │ │ │ │ │ ├── ios7-bolt.png │ │ │ │ │ ├── ios7-bookmarks-outline.png │ │ │ │ │ ├── ios7-bookmarks.png │ │ │ │ │ ├── ios7-box-outline.png │ │ │ │ │ ├── ios7-box.png │ │ │ │ │ ├── ios7-briefcase-outline.png │ │ │ │ │ ├── ios7-briefcase.png │ │ │ │ │ ├── ios7-browsers-outline.png │ │ │ │ │ ├── ios7-browsers.png │ │ │ │ │ ├── ios7-calculator-outline.png │ │ │ │ │ ├── ios7-calculator.png │ │ │ │ │ ├── ios7-calendar-outline.png │ │ │ │ │ ├── ios7-calendar.png │ │ │ │ │ ├── ios7-camera-outline.png │ │ │ │ │ ├── ios7-camera.png │ │ │ │ │ ├── ios7-cart-outline.png │ │ │ │ │ ├── ios7-cart.png │ │ │ │ │ ├── ios7-chatboxes-outline.png │ │ │ │ │ ├── ios7-chatboxes.png │ │ │ │ │ ├── ios7-chatbubble-outline.png │ │ │ │ │ ├── ios7-chatbubble.png │ │ │ │ │ ├── ios7-checkmark-empty.png │ │ │ │ │ ├── ios7-checkmark-outline.png │ │ │ │ │ ├── ios7-checkmark.png │ │ │ │ │ ├── ios7-circle-filled.png │ │ │ │ │ ├── ios7-circle-outline.png │ │ │ │ │ ├── ios7-clock-outline.png │ │ │ │ │ ├── ios7-clock.png │ │ │ │ │ ├── ios7-close-empty.png │ │ │ │ │ ├── ios7-close-outline.png │ │ │ │ │ ├── ios7-close.png │ │ │ │ │ ├── ios7-cloud-download-outline.png │ │ │ │ │ ├── ios7-cloud-download.png │ │ │ │ │ ├── ios7-cloud-outline.png │ │ │ │ │ ├── ios7-cloud-upload-outline.png │ │ │ │ │ ├── ios7-cloud-upload.png │ │ │ │ │ ├── ios7-cloud.png │ │ │ │ │ ├── ios7-cloudy-night-outline.png │ │ │ │ │ ├── ios7-cloudy-night.png │ │ │ │ │ ├── ios7-cloudy-outline.png │ │ │ │ │ ├── ios7-cloudy.png │ │ │ │ │ ├── ios7-cog-outline.png │ │ │ │ │ ├── ios7-cog.png │ │ │ │ │ ├── ios7-compose-outline.png │ │ │ │ │ ├── ios7-compose.png │ │ │ │ │ ├── ios7-contact-outline.png │ │ │ │ │ ├── ios7-contact.png │ │ │ │ │ ├── ios7-copy-outline.png │ │ │ │ │ ├── ios7-copy.png │ │ │ │ │ ├── ios7-download-outline.png │ │ │ │ │ ├── ios7-download.png │ │ │ │ │ ├── ios7-drag.png │ │ │ │ │ ├── ios7-email-outline.png │ │ │ │ │ ├── ios7-email.png │ │ │ │ │ ├── ios7-expand.png │ │ │ │ │ ├── ios7-eye-outline.png │ │ │ │ │ ├── ios7-eye.png │ │ │ │ │ ├── ios7-fastforward-outline.png │ │ │ │ │ ├── ios7-fastforward.png │ │ │ │ │ ├── ios7-filing-outline.png │ │ │ │ │ ├── ios7-filing.png │ │ │ │ │ ├── ios7-film-outline.png │ │ │ │ │ ├── ios7-film.png │ │ │ │ │ ├── ios7-flag-outline.png │ │ │ │ │ ├── ios7-flag.png │ │ │ │ │ ├── ios7-folder-outline.png │ │ │ │ │ ├── ios7-folder.png │ │ │ │ │ ├── ios7-football-outline.png │ │ │ │ │ ├── ios7-football.png │ │ │ │ │ ├── ios7-gear-outline.png │ │ │ │ │ ├── ios7-gear.png │ │ │ │ │ ├── ios7-glasses-outline.png │ │ │ │ │ ├── ios7-glasses.png │ │ │ │ │ ├── ios7-heart-outline.png │ │ │ │ │ ├── ios7-heart.png │ │ │ │ │ ├── ios7-help-empty.png │ │ │ │ │ ├── ios7-help-outline.png │ │ │ │ │ ├── ios7-help.png │ │ │ │ │ ├── ios7-home-outline.png │ │ │ │ │ ├── ios7-home.png │ │ │ │ │ ├── ios7-infinite-outline.png │ │ │ │ │ ├── ios7-infinite.png │ │ │ │ │ ├── ios7-information-empty.png │ │ │ │ │ ├── ios7-information-outline.png │ │ │ │ │ ├── ios7-information.png │ │ │ │ │ ├── ios7-ionic-outline.png │ │ │ │ │ ├── ios7-keypad-outline.png │ │ │ │ │ ├── ios7-keypad.png │ │ │ │ │ ├── ios7-lightbulb-outline.png │ │ │ │ │ ├── ios7-lightbulb.png │ │ │ │ │ ├── ios7-location-outline.png │ │ │ │ │ ├── ios7-location.png │ │ │ │ │ ├── ios7-locked-outline.png │ │ │ │ │ ├── ios7-locked.png │ │ │ │ │ ├── ios7-loop-strong.png │ │ │ │ │ ├── ios7-loop.png │ │ │ │ │ ├── ios7-medkit-outline.png │ │ │ │ │ ├── ios7-medkit.png │ │ │ │ │ ├── ios7-mic-off.png │ │ │ │ │ ├── ios7-mic-outline.png │ │ │ │ │ ├── ios7-mic.png │ │ │ │ │ ├── ios7-minus-empty.png │ │ │ │ │ ├── ios7-minus-outline.png │ │ │ │ │ ├── ios7-minus.png │ │ │ │ │ ├── ios7-monitor-outline.png │ │ │ │ │ ├── ios7-monitor.png │ │ │ │ │ ├── ios7-moon-outline.png │ │ │ │ │ ├── ios7-moon.png │ │ │ │ │ ├── ios7-more-outline.png │ │ │ │ │ ├── ios7-more.png │ │ │ │ │ ├── ios7-musical-note.png │ │ │ │ │ ├── ios7-musical-notes.png │ │ │ │ │ ├── ios7-navigate-outline.png │ │ │ │ │ ├── ios7-navigate.png │ │ │ │ │ ├── ios7-paper-outline.png │ │ │ │ │ ├── ios7-paper.png │ │ │ │ │ ├── ios7-paperplane-outline.png │ │ │ │ │ ├── ios7-paperplane.png │ │ │ │ │ ├── ios7-partlysunny-outline.png │ │ │ │ │ ├── ios7-partlysunny.png │ │ │ │ │ ├── ios7-pause-outline.png │ │ │ │ │ ├── ios7-pause.png │ │ │ │ │ ├── ios7-paw-outline.png │ │ │ │ │ ├── ios7-paw.png │ │ │ │ │ ├── ios7-people-outline.png │ │ │ │ │ ├── ios7-people.png │ │ │ │ │ ├── ios7-person-outline.png │ │ │ │ │ ├── ios7-person.png │ │ │ │ │ ├── ios7-personadd-outline.png │ │ │ │ │ ├── ios7-personadd.png │ │ │ │ │ ├── ios7-photos-outline.png │ │ │ │ │ ├── ios7-photos.png │ │ │ │ │ ├── ios7-pie-outline.png │ │ │ │ │ ├── ios7-pie.png │ │ │ │ │ ├── ios7-play-outline.png │ │ │ │ │ ├── ios7-play.png │ │ │ │ │ ├── ios7-plus-empty.png │ │ │ │ │ ├── ios7-plus-outline.png │ │ │ │ │ ├── ios7-plus.png │ │ │ │ │ ├── ios7-pricetag-outline.png │ │ │ │ │ ├── ios7-pricetag.png │ │ │ │ │ ├── ios7-pricetags-outline.png │ │ │ │ │ ├── ios7-pricetags.png │ │ │ │ │ ├── ios7-printer-outline.png │ │ │ │ │ ├── ios7-printer.png │ │ │ │ │ ├── ios7-pulse-strong.png │ │ │ │ │ ├── ios7-pulse.png │ │ │ │ │ ├── ios7-rainy-outline.png │ │ │ │ │ ├── ios7-rainy.png │ │ │ │ │ ├── ios7-recording-outline.png │ │ │ │ │ ├── ios7-recording.png │ │ │ │ │ ├── ios7-redo-outline.png │ │ │ │ │ ├── ios7-redo.png │ │ │ │ │ ├── ios7-refresh-empty.png │ │ │ │ │ ├── ios7-refresh-outline.png │ │ │ │ │ ├── ios7-refresh.png │ │ │ │ │ ├── ios7-reload.png │ │ │ │ │ ├── ios7-reverse-camera-outline.png │ │ │ │ │ ├── ios7-reverse-camera.png │ │ │ │ │ ├── ios7-rewind-outline.png │ │ │ │ │ ├── ios7-rewind.png │ │ │ │ │ ├── ios7-search-strong.png │ │ │ │ │ ├── ios7-search.png │ │ │ │ │ ├── ios7-settings-strong.png │ │ │ │ │ ├── ios7-settings.png │ │ │ │ │ ├── ios7-shrink.png │ │ │ │ │ ├── ios7-skipbackward-outline.png │ │ │ │ │ ├── ios7-skipbackward.png │ │ │ │ │ ├── ios7-skipforward-outline.png │ │ │ │ │ ├── ios7-skipforward.png │ │ │ │ │ ├── ios7-snowy.png │ │ │ │ │ ├── ios7-speedometer-outline.png │ │ │ │ │ ├── ios7-speedometer.png │ │ │ │ │ ├── ios7-star-half.png │ │ │ │ │ ├── ios7-star-outline.png │ │ │ │ │ ├── ios7-star.png │ │ │ │ │ ├── ios7-stopwatch-outline.png │ │ │ │ │ ├── ios7-stopwatch.png │ │ │ │ │ ├── ios7-sunny-outline.png │ │ │ │ │ ├── ios7-sunny.png │ │ │ │ │ ├── ios7-telephone-outline.png │ │ │ │ │ ├── ios7-telephone.png │ │ │ │ │ ├── ios7-tennisball-outline.png │ │ │ │ │ ├── ios7-tennisball.png │ │ │ │ │ ├── ios7-thunderstorm-outline.png │ │ │ │ │ ├── ios7-thunderstorm.png │ │ │ │ │ ├── ios7-time-outline.png │ │ │ │ │ ├── ios7-time.png │ │ │ │ │ ├── ios7-timer-outline.png │ │ │ │ │ ├── ios7-timer.png │ │ │ │ │ ├── ios7-toggle-outline.png │ │ │ │ │ ├── ios7-toggle.png │ │ │ │ │ ├── ios7-trash-outline.png │ │ │ │ │ ├── ios7-trash.png │ │ │ │ │ ├── ios7-undo-outline.png │ │ │ │ │ ├── ios7-undo.png │ │ │ │ │ ├── ios7-unlocked-outline.png │ │ │ │ │ ├── ios7-unlocked.png │ │ │ │ │ ├── ios7-upload-outline.png │ │ │ │ │ ├── ios7-upload.png │ │ │ │ │ ├── ios7-videocam-outline.png │ │ │ │ │ ├── ios7-videocam.png │ │ │ │ │ ├── ios7-volume-high.png │ │ │ │ │ ├── ios7-volume-low.png │ │ │ │ │ ├── ios7-wineglass-outline.png │ │ │ │ │ ├── ios7-wineglass.png │ │ │ │ │ ├── ios7-world-outline.png │ │ │ │ │ ├── ios7-world.png │ │ │ │ │ ├── ipad.png │ │ │ │ │ ├── iphone.png │ │ │ │ │ ├── ipod.png │ │ │ │ │ ├── jet.png │ │ │ │ │ ├── key.png │ │ │ │ │ ├── knife.png │ │ │ │ │ ├── laptop.png │ │ │ │ │ ├── leaf.png │ │ │ │ │ ├── levels.png │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── load-a.png │ │ │ │ │ ├── load-b.png │ │ │ │ │ ├── load-c.png │ │ │ │ │ ├── load-d.png │ │ │ │ │ ├── location.png │ │ │ │ │ ├── locked.png │ │ │ │ │ ├── log-in.png │ │ │ │ │ ├── log-out.png │ │ │ │ │ ├── loop.png │ │ │ │ │ ├── magnet.png │ │ │ │ │ ├── male.png │ │ │ │ │ ├── man.png │ │ │ │ │ ├── map.png │ │ │ │ │ ├── medkit.png │ │ │ │ │ ├── merge.png │ │ │ │ │ ├── mic-a.png │ │ │ │ │ ├── mic-b.png │ │ │ │ │ ├── mic-c.png │ │ │ │ │ ├── minus-circled.png │ │ │ │ │ ├── minus-round.png │ │ │ │ │ ├── minus.png │ │ │ │ │ ├── model-s.png │ │ │ │ │ ├── monitor.png │ │ │ │ │ ├── more.png │ │ │ │ │ ├── mouse.png │ │ │ │ │ ├── music-note.png │ │ │ │ │ ├── navicon-round.png │ │ │ │ │ ├── navicon.png │ │ │ │ │ ├── navigate.png │ │ │ │ │ ├── network.png │ │ │ │ │ ├── no-smoking.png │ │ │ │ │ ├── nuclear.png │ │ │ │ │ ├── outlet.png │ │ │ │ │ ├── paper-airplane.png │ │ │ │ │ ├── paperclip.png │ │ │ │ │ ├── pause.png │ │ │ │ │ ├── person-add.png │ │ │ │ │ ├── person-stalker.png │ │ │ │ │ ├── person.png │ │ │ │ │ ├── pie-graph.png │ │ │ │ │ ├── pin.png │ │ │ │ │ ├── pinpoint.png │ │ │ │ │ ├── pizza.png │ │ │ │ │ ├── plane.png │ │ │ │ │ ├── planet.png │ │ │ │ │ ├── play.png │ │ │ │ │ ├── playstation.png │ │ │ │ │ ├── plus-circled.png │ │ │ │ │ ├── plus-round.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── podium.png │ │ │ │ │ ├── pound.png │ │ │ │ │ ├── power.png │ │ │ │ │ ├── pricetag.png │ │ │ │ │ ├── pricetags.png │ │ │ │ │ ├── printer.png │ │ │ │ │ ├── pull-request.png │ │ │ │ │ ├── qr-scanner.png │ │ │ │ │ ├── quote.png │ │ │ │ │ ├── radio-waves.png │ │ │ │ │ ├── record.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ ├── reply-all.png │ │ │ │ │ ├── reply.png │ │ │ │ │ ├── ribbon-a.png │ │ │ │ │ ├── ribbon-b.png │ │ │ │ │ ├── sad.png │ │ │ │ │ ├── scissors.png │ │ │ │ │ ├── search.png │ │ │ │ │ ├── settings.png │ │ │ │ │ ├── share.png │ │ │ │ │ ├── shuffle.png │ │ │ │ │ ├── skip-backward.png │ │ │ │ │ ├── skip-forward.png │ │ │ │ │ ├── social-android-outline.png │ │ │ │ │ ├── social-android.png │ │ │ │ │ ├── social-apple-outline.png │ │ │ │ │ ├── social-apple.png │ │ │ │ │ ├── social-bitcoin-outline.png │ │ │ │ │ ├── social-bitcoin.png │ │ │ │ │ ├── social-buffer-outline.png │ │ │ │ │ ├── social-buffer.png │ │ │ │ │ ├── social-designernews-outline.png │ │ │ │ │ ├── social-designernews.png │ │ │ │ │ ├── social-dribbble-outline.png │ │ │ │ │ ├── social-dribbble.png │ │ │ │ │ ├── social-dropbox-outline.png │ │ │ │ │ ├── social-dropbox.png │ │ │ │ │ ├── social-facebook-outline.png │ │ │ │ │ ├── social-facebook.png │ │ │ │ │ ├── social-foursquare-outline.png │ │ │ │ │ ├── social-foursquare.png │ │ │ │ │ ├── social-freebsd-devil.png │ │ │ │ │ ├── social-github-outline.png │ │ │ │ │ ├── social-github.png │ │ │ │ │ ├── social-google-outline.png │ │ │ │ │ ├── social-google.png │ │ │ │ │ ├── social-googleplus-outline.png │ │ │ │ │ ├── social-googleplus.png │ │ │ │ │ ├── social-hackernews-outline.png │ │ │ │ │ ├── social-hackernews.png │ │ │ │ │ ├── social-instagram-outline.png │ │ │ │ │ ├── social-instagram.png │ │ │ │ │ ├── social-linkedin-outline.png │ │ │ │ │ ├── social-linkedin.png │ │ │ │ │ ├── social-pinterest-outline.png │ │ │ │ │ ├── social-pinterest.png │ │ │ │ │ ├── social-reddit-outline.png │ │ │ │ │ ├── social-reddit.png │ │ │ │ │ ├── social-rss-outline.png │ │ │ │ │ ├── social-rss.png │ │ │ │ │ ├── social-skype-outline.png │ │ │ │ │ ├── social-skype.png │ │ │ │ │ ├── social-tumblr-outline.png │ │ │ │ │ ├── social-tumblr.png │ │ │ │ │ ├── social-tux.png │ │ │ │ │ ├── social-twitter-outline.png │ │ │ │ │ ├── social-twitter.png │ │ │ │ │ ├── social-usd-outline.png │ │ │ │ │ ├── social-usd.png │ │ │ │ │ ├── social-vimeo-outline.png │ │ │ │ │ ├── social-vimeo.png │ │ │ │ │ ├── social-windows-outline.png │ │ │ │ │ ├── social-windows.png │ │ │ │ │ ├── social-wordpress-outline.png │ │ │ │ │ ├── social-wordpress.png │ │ │ │ │ ├── social-yahoo-outline.png │ │ │ │ │ ├── social-yahoo.png │ │ │ │ │ ├── social-youtube-outline.png │ │ │ │ │ ├── social-youtube.png │ │ │ │ │ ├── speakerphone.png │ │ │ │ │ ├── speedometer.png │ │ │ │ │ ├── spoon.png │ │ │ │ │ ├── star.png │ │ │ │ │ ├── stats-bars.png │ │ │ │ │ ├── steam.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── thermometer.png │ │ │ │ │ ├── thumbsdown.png │ │ │ │ │ ├── thumbsup.png │ │ │ │ │ ├── toggle-filled.png │ │ │ │ │ ├── toggle.png │ │ │ │ │ ├── trash-a.png │ │ │ │ │ ├── trash-b.png │ │ │ │ │ ├── trophy.png │ │ │ │ │ ├── umbrella.png │ │ │ │ │ ├── university.png │ │ │ │ │ ├── unlocked.png │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── usb.png │ │ │ │ │ ├── videocamera.png │ │ │ │ │ ├── volume-high.png │ │ │ │ │ ├── volume-low.png │ │ │ │ │ ├── volume-medium.png │ │ │ │ │ ├── volume-mute.png │ │ │ │ │ ├── wand.png │ │ │ │ │ ├── waterdrop.png │ │ │ │ │ ├── wifi.png │ │ │ │ │ ├── wineglass.png │ │ │ │ │ ├── woman.png │ │ │ │ │ ├── wrench.png │ │ │ │ │ └── xbox.png │ │ │ ├── scss │ │ │ │ ├── _ionicons-font.scss │ │ │ │ ├── _ionicons-icons.scss │ │ │ │ ├── _ionicons-variables.scss │ │ │ │ └── ionicons.scss │ │ │ └── src │ │ │ │ ├── alert-circled.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── android-add-circle.svg │ │ │ │ ├── android-add.svg │ │ │ │ ├── android-alarm-clock.svg │ │ │ │ ├── android-alert.svg │ │ │ │ ├── android-apps.svg │ │ │ │ ├── android-archive.svg │ │ │ │ ├── android-arrow-back.svg │ │ │ │ ├── android-arrow-down.svg │ │ │ │ ├── android-arrow-dropdown-circle.svg │ │ │ │ ├── android-arrow-dropdown.svg │ │ │ │ ├── android-arrow-dropleft-circle.svg │ │ │ │ ├── android-arrow-dropleft.svg │ │ │ │ ├── android-arrow-dropright-circle.svg │ │ │ │ ├── android-arrow-dropright.svg │ │ │ │ ├── android-arrow-dropup-circle.svg │ │ │ │ ├── android-arrow-dropup.svg │ │ │ │ ├── android-arrow-forward.svg │ │ │ │ ├── android-arrow-up.svg │ │ │ │ ├── android-attach.svg │ │ │ │ ├── android-bar.svg │ │ │ │ ├── android-bicycle.svg │ │ │ │ ├── android-boat.svg │ │ │ │ ├── android-bookmark.svg │ │ │ │ ├── android-bulb.svg │ │ │ │ ├── android-bus.svg │ │ │ │ ├── android-calendar.svg │ │ │ │ ├── android-call.svg │ │ │ │ ├── android-camera.svg │ │ │ │ ├── android-cancel.svg │ │ │ │ ├── android-car.svg │ │ │ │ ├── android-cart.svg │ │ │ │ ├── android-chat.svg │ │ │ │ ├── android-checkbox-blank.svg │ │ │ │ ├── android-checkbox-outline-blank.svg │ │ │ │ ├── android-checkbox-outline.svg │ │ │ │ ├── android-checkbox.svg │ │ │ │ ├── android-checkmark-circle.svg │ │ │ │ ├── android-clipboard.svg │ │ │ │ ├── android-close.svg │ │ │ │ ├── android-cloud-circle.svg │ │ │ │ ├── android-cloud-done.svg │ │ │ │ ├── android-cloud-outline.svg │ │ │ │ ├── android-cloud.svg │ │ │ │ ├── android-color-palette.svg │ │ │ │ ├── android-compass.svg │ │ │ │ ├── android-contact.svg │ │ │ │ ├── android-contacts.svg │ │ │ │ ├── android-contract.svg │ │ │ │ ├── android-create.svg │ │ │ │ ├── android-delete.svg │ │ │ │ ├── android-desktop.svg │ │ │ │ ├── android-document.svg │ │ │ │ ├── android-done-all.svg │ │ │ │ ├── android-done.svg │ │ │ │ ├── android-download.svg │ │ │ │ ├── android-drafts.svg │ │ │ │ ├── android-exit.svg │ │ │ │ ├── android-expand.svg │ │ │ │ ├── android-favorite-outline.svg │ │ │ │ ├── android-favorite.svg │ │ │ │ ├── android-film.svg │ │ │ │ ├── android-folder-open.svg │ │ │ │ ├── android-folder.svg │ │ │ │ ├── android-funnel.svg │ │ │ │ ├── android-globe.svg │ │ │ │ ├── android-hand.svg │ │ │ │ ├── android-hangout.svg │ │ │ │ ├── android-happy.svg │ │ │ │ ├── android-home.svg │ │ │ │ ├── android-image.svg │ │ │ │ ├── android-laptop.svg │ │ │ │ ├── android-list.svg │ │ │ │ ├── android-locate.svg │ │ │ │ ├── android-lock.svg │ │ │ │ ├── android-mail.svg │ │ │ │ ├── android-map.svg │ │ │ │ ├── android-menu.svg │ │ │ │ ├── android-microphone-off.svg │ │ │ │ ├── android-microphone.svg │ │ │ │ ├── android-more-horizontal.svg │ │ │ │ ├── android-more-vertical.svg │ │ │ │ ├── android-navigate.svg │ │ │ │ ├── android-notifications-none.svg │ │ │ │ ├── android-notifications-off.svg │ │ │ │ ├── android-notifications.svg │ │ │ │ ├── android-open.svg │ │ │ │ ├── android-options.svg │ │ │ │ ├── android-people.svg │ │ │ │ ├── android-person-add.svg │ │ │ │ ├── android-person.svg │ │ │ │ ├── android-phone-landscape.svg │ │ │ │ ├── android-phone-portrait.svg │ │ │ │ ├── android-pin.svg │ │ │ │ ├── android-plane.svg │ │ │ │ ├── android-playstore.svg │ │ │ │ ├── android-print.svg │ │ │ │ ├── android-radio-button-off.svg │ │ │ │ ├── android-radio-button-on.svg │ │ │ │ ├── android-refresh.svg │ │ │ │ ├── android-remove-circle.svg │ │ │ │ ├── android-remove.svg │ │ │ │ ├── android-restaurant.svg │ │ │ │ ├── android-sad.svg │ │ │ │ ├── android-search.svg │ │ │ │ ├── android-send.svg │ │ │ │ ├── android-settings.svg │ │ │ │ ├── android-share-alt.svg │ │ │ │ ├── android-share.svg │ │ │ │ ├── android-star-half.svg │ │ │ │ ├── android-star-outline.svg │ │ │ │ ├── android-star.svg │ │ │ │ ├── android-stopwatch.svg │ │ │ │ ├── android-subway.svg │ │ │ │ ├── android-sunny.svg │ │ │ │ ├── android-sync.svg │ │ │ │ ├── android-textsms.svg │ │ │ │ ├── android-time.svg │ │ │ │ ├── android-train.svg │ │ │ │ ├── android-unlock.svg │ │ │ │ ├── android-upload.svg │ │ │ │ ├── android-volume-down.svg │ │ │ │ ├── android-volume-mute.svg │ │ │ │ ├── android-volume-off.svg │ │ │ │ ├── android-volume-up.svg │ │ │ │ ├── android-walk.svg │ │ │ │ ├── android-warning.svg │ │ │ │ ├── android-watch.svg │ │ │ │ ├── android-wifi.svg │ │ │ │ ├── aperture.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── arrow-down-a.svg │ │ │ │ ├── arrow-down-b.svg │ │ │ │ ├── arrow-down-c.svg │ │ │ │ ├── arrow-expand.svg │ │ │ │ ├── arrow-graph-down-left.svg │ │ │ │ ├── arrow-graph-down-right.svg │ │ │ │ ├── arrow-graph-up-left.svg │ │ │ │ ├── arrow-graph-up-right.svg │ │ │ │ ├── arrow-left-a.svg │ │ │ │ ├── arrow-left-b.svg │ │ │ │ ├── arrow-left-c.svg │ │ │ │ ├── arrow-move.svg │ │ │ │ ├── arrow-resize.svg │ │ │ │ ├── arrow-return-left.svg │ │ │ │ ├── arrow-return-right.svg │ │ │ │ ├── arrow-right-a.svg │ │ │ │ ├── arrow-right-b.svg │ │ │ │ ├── arrow-right-c.svg │ │ │ │ ├── arrow-shrink.svg │ │ │ │ ├── arrow-swap.svg │ │ │ │ ├── arrow-up-a.svg │ │ │ │ ├── arrow-up-b.svg │ │ │ │ ├── arrow-up-c.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── backspace-outline.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── bag.svg │ │ │ │ ├── battery-charging.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-low.svg │ │ │ │ ├── beaker.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bonfire.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── bowtie.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── card.svg │ │ │ │ ├── cash.svg │ │ │ │ ├── chatbox-working.svg │ │ │ │ ├── chatbox.svg │ │ │ │ ├── chatboxes.svg │ │ │ │ ├── chatbubble-working.svg │ │ │ │ ├── chatbubble.svg │ │ │ │ ├── chatbubbles.svg │ │ │ │ ├── checkmark-circled.svg │ │ │ │ ├── checkmark-round.svg │ │ │ │ ├── checkmark.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── close-circled.svg │ │ │ │ ├── close-round.svg │ │ │ │ ├── close.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── code-download.svg │ │ │ │ ├── code-working.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compose.svg │ │ │ │ ├── connection-bars.svg │ │ │ │ ├── contrast.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── disc.svg │ │ │ │ ├── document-text.svg │ │ │ │ ├── document.svg │ │ │ │ ├── drag.svg │ │ │ │ ├── earth.svg │ │ │ │ ├── easel.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── email-unread.svg │ │ │ │ ├── email.svg │ │ │ │ ├── erlenmeyer-flask-bubbles.svg │ │ │ │ ├── erlenmeyer-flask.svg │ │ │ │ ├── eye-disabled.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── female.svg │ │ │ │ ├── filing.svg │ │ │ │ ├── film-marker.svg │ │ │ │ ├── fireball.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flame.svg │ │ │ │ ├── flash-off.svg │ │ │ │ ├── flash.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── fork-repo.svg │ │ │ │ ├── fork.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── funnel.svg │ │ │ │ ├── gear-a.svg │ │ │ │ ├── gear-b.svg │ │ │ │ ├── grid.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── happy-outline.svg │ │ │ │ ├── happy.svg │ │ │ │ ├── headphone.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── help-buoy.svg │ │ │ │ ├── help-circled.svg │ │ │ │ ├── help.svg │ │ │ │ ├── home.svg │ │ │ │ ├── icecream.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── information-circled.svg │ │ │ │ ├── information.svg │ │ │ │ ├── ionic.svg │ │ │ │ ├── ios-alarm-outline.svg │ │ │ │ ├── ios-alarm.svg │ │ │ │ ├── ios-albums-outline.svg │ │ │ │ ├── ios-albums.svg │ │ │ │ ├── ios-americanfootball-outline.svg │ │ │ │ ├── ios-americanfootball.svg │ │ │ │ ├── ios-analytics-outline.svg │ │ │ │ ├── ios-analytics.svg │ │ │ │ ├── ios-arrow-back.svg │ │ │ │ ├── ios-arrow-down.svg │ │ │ │ ├── ios-arrow-forward.svg │ │ │ │ ├── ios-arrow-left.svg │ │ │ │ ├── ios-arrow-right.svg │ │ │ │ ├── ios-arrow-thin-down.svg │ │ │ │ ├── ios-arrow-thin-left.svg │ │ │ │ ├── ios-arrow-thin-right.svg │ │ │ │ ├── ios-arrow-thin-up.svg │ │ │ │ ├── ios-arrow-up.svg │ │ │ │ ├── ios-at-outline.svg │ │ │ │ ├── ios-at.svg │ │ │ │ ├── ios-barcode-outline.svg │ │ │ │ ├── ios-barcode.svg │ │ │ │ ├── ios-baseball-outline.svg │ │ │ │ ├── ios-baseball.svg │ │ │ │ ├── ios-basketball-outline.svg │ │ │ │ ├── ios-basketball.svg │ │ │ │ ├── ios-bell-outline.svg │ │ │ │ ├── ios-bell.svg │ │ │ │ ├── ios-body-outline.svg │ │ │ │ ├── ios-body.svg │ │ │ │ ├── ios-bolt-outline.svg │ │ │ │ ├── ios-bolt.svg │ │ │ │ ├── ios-book-outline.svg │ │ │ │ ├── ios-book.svg │ │ │ │ ├── ios-bookmarks-outline.svg │ │ │ │ ├── ios-bookmarks.svg │ │ │ │ ├── ios-box-outline.svg │ │ │ │ ├── ios-box.svg │ │ │ │ ├── ios-briefcase-outline.svg │ │ │ │ ├── ios-briefcase.svg │ │ │ │ ├── ios-browsers-outline.svg │ │ │ │ ├── ios-browsers.svg │ │ │ │ ├── ios-calculator-outline.svg │ │ │ │ ├── ios-calculator.svg │ │ │ │ ├── ios-calendar-outline.svg │ │ │ │ ├── ios-calendar.svg │ │ │ │ ├── ios-camera-outline.svg │ │ │ │ ├── ios-camera.svg │ │ │ │ ├── ios-cart-outline.svg │ │ │ │ ├── ios-cart.svg │ │ │ │ ├── ios-chatboxes-outline.svg │ │ │ │ ├── ios-chatboxes.svg │ │ │ │ ├── ios-chatbubble-outline.svg │ │ │ │ ├── ios-chatbubble.svg │ │ │ │ ├── ios-checkmark-empty.svg │ │ │ │ ├── ios-checkmark-outline.svg │ │ │ │ ├── ios-checkmark.svg │ │ │ │ ├── ios-circle-filled.svg │ │ │ │ ├── ios-circle-outline.svg │ │ │ │ ├── ios-clock-outline.svg │ │ │ │ ├── ios-clock.svg │ │ │ │ ├── ios-close-empty.svg │ │ │ │ ├── ios-close-outline.svg │ │ │ │ ├── ios-close.svg │ │ │ │ ├── ios-cloud-download-outline.svg │ │ │ │ ├── ios-cloud-download.svg │ │ │ │ ├── ios-cloud-outline.svg │ │ │ │ ├── ios-cloud-upload-outline.svg │ │ │ │ ├── ios-cloud-upload.svg │ │ │ │ ├── ios-cloud.svg │ │ │ │ ├── ios-cloudy-night-outline.svg │ │ │ │ ├── ios-cloudy-night.svg │ │ │ │ ├── ios-cloudy-outline.svg │ │ │ │ ├── ios-cloudy.svg │ │ │ │ ├── ios-cog-outline.svg │ │ │ │ ├── ios-cog.svg │ │ │ │ ├── ios-color-filter-outline.svg │ │ │ │ ├── ios-color-filter.svg │ │ │ │ ├── ios-color-wand-outline.svg │ │ │ │ ├── ios-color-wand.svg │ │ │ │ ├── ios-compose-outline.svg │ │ │ │ ├── ios-compose.svg │ │ │ │ ├── ios-contact-outline.svg │ │ │ │ ├── ios-contact.svg │ │ │ │ ├── ios-copy-outline.svg │ │ │ │ ├── ios-copy.svg │ │ │ │ ├── ios-crop-strong.svg │ │ │ │ ├── ios-crop.svg │ │ │ │ ├── ios-download-outline.svg │ │ │ │ ├── ios-download.svg │ │ │ │ ├── ios-drag.svg │ │ │ │ ├── ios-email-outline.svg │ │ │ │ ├── ios-email.svg │ │ │ │ ├── ios-eye-outline.svg │ │ │ │ ├── ios-eye.svg │ │ │ │ ├── ios-fastforward-outline.svg │ │ │ │ ├── ios-fastforward.svg │ │ │ │ ├── ios-filing-outline.svg │ │ │ │ ├── ios-filing.svg │ │ │ │ ├── ios-film-outline.svg │ │ │ │ ├── ios-film.svg │ │ │ │ ├── ios-flag-outline.svg │ │ │ │ ├── ios-flag.svg │ │ │ │ ├── ios-flame-outline.svg │ │ │ │ ├── ios-flame.svg │ │ │ │ ├── ios-flask-outline.svg │ │ │ │ ├── ios-flask.svg │ │ │ │ ├── ios-flower-outline.svg │ │ │ │ ├── ios-flower.svg │ │ │ │ ├── ios-folder-outline.svg │ │ │ │ ├── ios-folder.svg │ │ │ │ ├── ios-football-outline.svg │ │ │ │ ├── ios-football.svg │ │ │ │ ├── ios-game-controller-a-outline.svg │ │ │ │ ├── ios-game-controller-a.svg │ │ │ │ ├── ios-game-controller-b-outline.svg │ │ │ │ ├── ios-game-controller-b.svg │ │ │ │ ├── ios-gear-outline.svg │ │ │ │ ├── ios-gear.svg │ │ │ │ ├── ios-glasses-outline.svg │ │ │ │ ├── ios-glasses.svg │ │ │ │ ├── ios-grid-view-outline.svg │ │ │ │ ├── ios-grid-view.svg │ │ │ │ ├── ios-heart-outline.svg │ │ │ │ ├── ios-heart.svg │ │ │ │ ├── ios-help-empty.svg │ │ │ │ ├── ios-help-outline.svg │ │ │ │ ├── ios-help.svg │ │ │ │ ├── ios-home-outline.svg │ │ │ │ ├── ios-home.svg │ │ │ │ ├── ios-infinite-outline.svg │ │ │ │ ├── ios-infinite.svg │ │ │ │ ├── ios-information-empty.svg │ │ │ │ ├── ios-information-outline.svg │ │ │ │ ├── ios-information.svg │ │ │ │ ├── ios-ionic-outline.svg │ │ │ │ ├── ios-keypad-outline.svg │ │ │ │ ├── ios-keypad.svg │ │ │ │ ├── ios-lightbulb-outline.svg │ │ │ │ ├── ios-lightbulb.svg │ │ │ │ ├── ios-list-outline.svg │ │ │ │ ├── ios-list.svg │ │ │ │ ├── ios-location-outline.svg │ │ │ │ ├── ios-location.svg │ │ │ │ ├── ios-locked-outline.svg │ │ │ │ ├── ios-locked.svg │ │ │ │ ├── ios-loop-strong.svg │ │ │ │ ├── ios-loop.svg │ │ │ │ ├── ios-medical-outline.svg │ │ │ │ ├── ios-medical.svg │ │ │ │ ├── ios-medkit-outline.svg │ │ │ │ ├── ios-medkit.svg │ │ │ │ ├── ios-mic-off.svg │ │ │ │ ├── ios-mic-outline.svg │ │ │ │ ├── ios-mic.svg │ │ │ │ ├── ios-minus-empty.svg │ │ │ │ ├── ios-minus-outline.svg │ │ │ │ ├── ios-minus.svg │ │ │ │ ├── ios-monitor-outline.svg │ │ │ │ ├── ios-monitor.svg │ │ │ │ ├── ios-moon-outline.svg │ │ │ │ ├── ios-moon.svg │ │ │ │ ├── ios-more-outline.svg │ │ │ │ ├── ios-more.svg │ │ │ │ ├── ios-musical-note.svg │ │ │ │ ├── ios-musical-notes.svg │ │ │ │ ├── ios-navigate-outline.svg │ │ │ │ ├── ios-navigate.svg │ │ │ │ ├── ios-nutrition-outline.svg │ │ │ │ ├── ios-nutrition.svg │ │ │ │ ├── ios-paper-outline.svg │ │ │ │ ├── ios-paper.svg │ │ │ │ ├── ios-paperplane-outline.svg │ │ │ │ ├── ios-paperplane.svg │ │ │ │ ├── ios-partlysunny-outline.svg │ │ │ │ ├── ios-partlysunny.svg │ │ │ │ ├── ios-pause-outline.svg │ │ │ │ ├── ios-pause.svg │ │ │ │ ├── ios-paw-outline.svg │ │ │ │ ├── ios-paw.svg │ │ │ │ ├── ios-people-outline.svg │ │ │ │ ├── ios-people.svg │ │ │ │ ├── ios-person-outline.svg │ │ │ │ ├── ios-person.svg │ │ │ │ ├── ios-personadd-outline.svg │ │ │ │ ├── ios-personadd.svg │ │ │ │ ├── ios-photos-outline.svg │ │ │ │ ├── ios-photos.svg │ │ │ │ ├── ios-pie-outline.svg │ │ │ │ ├── ios-pie.svg │ │ │ │ ├── ios-pint-outline.svg │ │ │ │ ├── ios-pint.svg │ │ │ │ ├── ios-play-outline.svg │ │ │ │ ├── ios-play.svg │ │ │ │ ├── ios-plus-empty.svg │ │ │ │ ├── ios-plus-outline.svg │ │ │ │ ├── ios-plus.svg │ │ │ │ ├── ios-pricetag-outline.svg │ │ │ │ ├── ios-pricetag.svg │ │ │ │ ├── ios-pricetags-outline.svg │ │ │ │ ├── ios-pricetags.svg │ │ │ │ ├── ios-printer-outline.svg │ │ │ │ ├── ios-printer.svg │ │ │ │ ├── ios-pulse-strong.svg │ │ │ │ ├── ios-pulse.svg │ │ │ │ ├── ios-rainy-outline.svg │ │ │ │ ├── ios-rainy.svg │ │ │ │ ├── ios-recording-outline.svg │ │ │ │ ├── ios-recording.svg │ │ │ │ ├── ios-redo-outline.svg │ │ │ │ ├── ios-redo.svg │ │ │ │ ├── ios-refresh-empty.svg │ │ │ │ ├── ios-refresh-outline.svg │ │ │ │ ├── ios-refresh.svg │ │ │ │ ├── ios-reload.svg │ │ │ │ ├── ios-reverse-camera-outline.svg │ │ │ │ ├── ios-reverse-camera.svg │ │ │ │ ├── ios-rewind-outline.svg │ │ │ │ ├── ios-rewind.svg │ │ │ │ ├── ios-rose-outline.svg │ │ │ │ ├── ios-rose.svg │ │ │ │ ├── ios-search-strong.svg │ │ │ │ ├── ios-search.svg │ │ │ │ ├── ios-settings-strong.svg │ │ │ │ ├── ios-settings.svg │ │ │ │ ├── ios-shuffle-strong.svg │ │ │ │ ├── ios-shuffle.svg │ │ │ │ ├── ios-skipbackward-outline.svg │ │ │ │ ├── ios-skipbackward.svg │ │ │ │ ├── ios-skipforward-outline.svg │ │ │ │ ├── ios-skipforward.svg │ │ │ │ ├── ios-snowy.svg │ │ │ │ ├── ios-speedometer-outline.svg │ │ │ │ ├── ios-speedometer.svg │ │ │ │ ├── ios-star-half.svg │ │ │ │ ├── ios-star-outline.svg │ │ │ │ ├── ios-star.svg │ │ │ │ ├── ios-stopwatch-outline.svg │ │ │ │ ├── ios-stopwatch.svg │ │ │ │ ├── ios-sunny-outline.svg │ │ │ │ ├── ios-sunny.svg │ │ │ │ ├── ios-telephone-outline.svg │ │ │ │ ├── ios-telephone.svg │ │ │ │ ├── ios-tennisball-outline.svg │ │ │ │ ├── ios-tennisball.svg │ │ │ │ ├── ios-thunderstorm-outline.svg │ │ │ │ ├── ios-thunderstorm.svg │ │ │ │ ├── ios-time-outline.svg │ │ │ │ ├── ios-time.svg │ │ │ │ ├── ios-timer-outline.svg │ │ │ │ ├── ios-timer.svg │ │ │ │ ├── ios-toggle-outline.svg │ │ │ │ ├── ios-toggle.svg │ │ │ │ ├── ios-trash-outline.svg │ │ │ │ ├── ios-trash.svg │ │ │ │ ├── ios-undo-outline.svg │ │ │ │ ├── ios-undo.svg │ │ │ │ ├── ios-unlocked-outline.svg │ │ │ │ ├── ios-unlocked.svg │ │ │ │ ├── ios-upload-outline.svg │ │ │ │ ├── ios-upload.svg │ │ │ │ ├── ios-videocam-outline.svg │ │ │ │ ├── ios-videocam.svg │ │ │ │ ├── ios-volume-high.svg │ │ │ │ ├── ios-volume-low.svg │ │ │ │ ├── ios-wineglass-outline.svg │ │ │ │ ├── ios-wineglass.svg │ │ │ │ ├── ios-world-outline.svg │ │ │ │ ├── ios-world.svg │ │ │ │ ├── ipad.svg │ │ │ │ ├── iphone.svg │ │ │ │ ├── ipod.svg │ │ │ │ ├── jet.svg │ │ │ │ ├── key.svg │ │ │ │ ├── knife.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── levels.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── load-a.svg │ │ │ │ ├── load-b.svg │ │ │ │ ├── load-c.svg │ │ │ │ ├── load-d.svg │ │ │ │ ├── location.svg │ │ │ │ ├── lock-combination.svg │ │ │ │ ├── locked.svg │ │ │ │ ├── log-in.svg │ │ │ │ ├── log-out.svg │ │ │ │ ├── loop.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── male.svg │ │ │ │ ├── man.svg │ │ │ │ ├── map.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── merge.svg │ │ │ │ ├── mic-a.svg │ │ │ │ ├── mic-b.svg │ │ │ │ ├── mic-c.svg │ │ │ │ ├── minus-circled.svg │ │ │ │ ├── minus-round.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── model-s.svg │ │ │ │ ├── monitor.svg │ │ │ │ ├── more.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── music-note.svg │ │ │ │ ├── navicon-round.svg │ │ │ │ ├── navicon.svg │ │ │ │ ├── navigate.svg │ │ │ │ ├── network.svg │ │ │ │ ├── no-smoking.svg │ │ │ │ ├── nuclear.svg │ │ │ │ ├── outlet.svg │ │ │ │ ├── paintbrush.svg │ │ │ │ ├── paintbucket.svg │ │ │ │ ├── paper-airplane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── person-add.svg │ │ │ │ ├── person-stalker.svg │ │ │ │ ├── person.svg │ │ │ │ ├── pie-graph.svg │ │ │ │ ├── pin.svg │ │ │ │ ├── pinpoint.svg │ │ │ │ ├── pizza.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── planet.svg │ │ │ │ ├── play.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── plus-circled.svg │ │ │ │ ├── plus-round.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podium.svg │ │ │ │ ├── pound.svg │ │ │ │ ├── power.svg │ │ │ │ ├── pricetag.svg │ │ │ │ ├── pricetags.svg │ │ │ │ ├── printer.svg │ │ │ │ ├── pull-request.svg │ │ │ │ ├── qr-scanner.svg │ │ │ │ ├── quote.svg │ │ │ │ ├── radio-waves.svg │ │ │ │ ├── record.svg │ │ │ │ ├── refresh.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── ribbon-a.svg │ │ │ │ ├── ribbon-b.svg │ │ │ │ ├── sad-outline.svg │ │ │ │ ├── sad.svg │ │ │ │ ├── scissors.svg │ │ │ │ ├── search.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── skip-backward.svg │ │ │ │ ├── skip-forward.svg │ │ │ │ ├── social-android-outline.svg │ │ │ │ ├── social-android.svg │ │ │ │ ├── social-angular-outline.svg │ │ │ │ ├── social-angular.svg │ │ │ │ ├── social-apple-outline.svg │ │ │ │ ├── social-apple.svg │ │ │ │ ├── social-bitcoin-outline.svg │ │ │ │ ├── social-bitcoin.svg │ │ │ │ ├── social-buffer-outline.svg │ │ │ │ ├── social-buffer.svg │ │ │ │ ├── social-chrome-outline.svg │ │ │ │ ├── social-chrome.svg │ │ │ │ ├── social-codepen-outline.svg │ │ │ │ ├── social-codepen.svg │ │ │ │ ├── social-css3-outline.svg │ │ │ │ ├── social-css3.svg │ │ │ │ ├── social-designernews-outline.svg │ │ │ │ ├── social-designernews.svg │ │ │ │ ├── social-dribbble-outline.svg │ │ │ │ ├── social-dribbble.svg │ │ │ │ ├── social-dropbox-outline.svg │ │ │ │ ├── social-dropbox.svg │ │ │ │ ├── social-euro-outline.svg │ │ │ │ ├── social-euro.svg │ │ │ │ ├── social-facebook-outline.svg │ │ │ │ ├── social-facebook.svg │ │ │ │ ├── social-foursquare-outline.svg │ │ │ │ ├── social-foursquare.svg │ │ │ │ ├── social-freebsd-devil.svg │ │ │ │ ├── social-github-outline.svg │ │ │ │ ├── social-github.svg │ │ │ │ ├── social-google-outline.svg │ │ │ │ ├── social-google.svg │ │ │ │ ├── social-googleplus-outline.svg │ │ │ │ ├── social-googleplus.svg │ │ │ │ ├── social-hackernews-outline.svg │ │ │ │ ├── social-hackernews.svg │ │ │ │ ├── social-html5-outline.svg │ │ │ │ ├── social-html5.svg │ │ │ │ ├── social-instagram-outline.svg │ │ │ │ ├── social-instagram.svg │ │ │ │ ├── social-javascript-outline.svg │ │ │ │ ├── social-javascript.svg │ │ │ │ ├── social-linkedin-outline.svg │ │ │ │ ├── social-linkedin.svg │ │ │ │ ├── social-markdown.svg │ │ │ │ ├── social-nodejs.svg │ │ │ │ ├── social-octocat.svg │ │ │ │ ├── social-pinterest-outline.svg │ │ │ │ ├── social-pinterest.svg │ │ │ │ ├── social-python.svg │ │ │ │ ├── social-reddit-outline.svg │ │ │ │ ├── social-reddit.svg │ │ │ │ ├── social-rss-outline.svg │ │ │ │ ├── social-rss.svg │ │ │ │ ├── social-sass.svg │ │ │ │ ├── social-skype-outline.svg │ │ │ │ ├── social-skype.svg │ │ │ │ ├── social-snapchat-outline.svg │ │ │ │ ├── social-snapchat.svg │ │ │ │ ├── social-tumblr-outline.svg │ │ │ │ ├── social-tumblr.svg │ │ │ │ ├── social-tux.svg │ │ │ │ ├── social-twitch-outline.svg │ │ │ │ ├── social-twitch.svg │ │ │ │ ├── social-twitter-outline.svg │ │ │ │ ├── social-twitter.svg │ │ │ │ ├── social-usd-outline.svg │ │ │ │ ├── social-usd.svg │ │ │ │ ├── social-vimeo-outline.svg │ │ │ │ ├── social-vimeo.svg │ │ │ │ ├── social-whatsapp-outline.svg │ │ │ │ ├── social-whatsapp.svg │ │ │ │ ├── social-windows-outline.svg │ │ │ │ ├── social-windows.svg │ │ │ │ ├── social-wordpress-outline.svg │ │ │ │ ├── social-wordpress.svg │ │ │ │ ├── social-yahoo-outline.svg │ │ │ │ ├── social-yahoo.svg │ │ │ │ ├── social-yen-outline.svg │ │ │ │ ├── social-yen.svg │ │ │ │ ├── social-youtube-outline.svg │ │ │ │ ├── social-youtube.svg │ │ │ │ ├── soup-can-outline.svg │ │ │ │ ├── soup-can.svg │ │ │ │ ├── speakerphone.svg │ │ │ │ ├── speedometer.svg │ │ │ │ ├── spoon.svg │ │ │ │ ├── star.svg │ │ │ │ ├── stats-bars.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbsdown.svg │ │ │ │ ├── thumbsup.svg │ │ │ │ ├── toggle-filled.svg │ │ │ │ ├── toggle.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-a.svg │ │ │ │ ├── trash-b.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── tshirt-outline.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlocked.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── videocamera.svg │ │ │ │ ├── volume-high.svg │ │ │ │ ├── volume-low.svg │ │ │ │ ├── volume-medium.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── wand.svg │ │ │ │ ├── waterdrop.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wineglass.svg │ │ │ │ ├── woman.svg │ │ │ │ ├── wrench.svg │ │ │ │ └── xbox.svg │ │ ├── montserrat │ │ │ ├── Montserrat-Black.ttf │ │ │ ├── Montserrat-BlackItalic.ttf │ │ │ ├── Montserrat-Bold.ttf │ │ │ ├── Montserrat-BoldItalic.ttf │ │ │ ├── Montserrat-ExtraBold.ttf │ │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ │ ├── Montserrat-ExtraLight.ttf │ │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ │ ├── Montserrat-Italic.ttf │ │ │ ├── Montserrat-Light.ttf │ │ │ ├── Montserrat-LightItalic.ttf │ │ │ ├── Montserrat-Medium.ttf │ │ │ ├── Montserrat-MediumItalic.ttf │ │ │ ├── Montserrat-Regular.ttf │ │ │ ├── Montserrat-SemiBold.ttf │ │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ │ ├── Montserrat-Thin.ttf │ │ │ ├── Montserrat-ThinItalic.ttf │ │ │ └── OFL.txt │ │ ├── poppins │ │ │ ├── Poppins-Black.ttf │ │ │ ├── Poppins-BlackItalic.ttf │ │ │ ├── Poppins-Bold.ttf │ │ │ ├── Poppins-BoldItalic.ttf │ │ │ ├── Poppins-ExtraBold.ttf │ │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ │ ├── Poppins-ExtraLight.ttf │ │ │ ├── Poppins-ExtraLightItalic.ttf │ │ │ ├── Poppins-Italic.ttf │ │ │ ├── Poppins-Light.ttf │ │ │ ├── Poppins-LightItalic.ttf │ │ │ ├── Poppins-Medium.ttf │ │ │ ├── Poppins-MediumItalic.ttf │ │ │ ├── Poppins-Regular.ttf │ │ │ ├── Poppins-SemiBold.ttf │ │ │ ├── Poppins-SemiBoldItalic.ttf │ │ │ ├── Poppins-Thin.ttf │ │ │ └── Poppins-ThinItalic.ttf │ │ └── themify │ │ │ ├── SVG │ │ │ ├── Italic.svg │ │ │ ├── agenda.svg │ │ │ ├── alarm-clock.svg │ │ │ ├── alert.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── anchor.svg │ │ │ ├── android.svg │ │ │ ├── angle-double-down.svg │ │ │ ├── angle-double-left.svg │ │ │ ├── angle-double-right.svg │ │ │ ├── angle-double-up.svg │ │ │ ├── angle-down.svg │ │ │ ├── angle-left.svg │ │ │ ├── angle-right.svg │ │ │ ├── angle-up.svg │ │ │ ├── announcement.svg │ │ │ ├── apple.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-top-left.svg │ │ │ ├── arrow-top-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrow.svg │ │ │ ├── arrows-corner.svg │ │ │ ├── arrows-horizontal.svg │ │ │ ├── arrows-vertical.svg │ │ │ ├── back-left.svg │ │ │ ├── back-right.svg │ │ │ ├── bag.svg │ │ │ ├── bar-chart-alt.svg │ │ │ ├── bar-chart.svg │ │ │ ├── basketball.svg │ │ │ ├── bell.svg │ │ │ ├── blackboard.svg │ │ │ ├── bolt-alt.svg │ │ │ ├── bolt.svg │ │ │ ├── book.svg │ │ │ ├── bookmark-alt.svg │ │ │ ├── bookmark.svg │ │ │ ├── briefcase.svg │ │ │ ├── brush-alt.svg │ │ │ ├── brush.svg │ │ │ ├── calendar.svg │ │ │ ├── camera.svg │ │ │ ├── car.svg │ │ │ ├── check-box.svg │ │ │ ├── check.svg │ │ │ ├── clip.svg │ │ │ ├── clipboard.svg │ │ │ ├── close.svg │ │ │ ├── cloud-down.svg │ │ │ ├── cloud-up.svg │ │ │ ├── cloud.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment.svg │ │ │ ├── comments-smiley.svg │ │ │ ├── comments.svg │ │ │ ├── control-backward.svg │ │ │ ├── control-eject.svg │ │ │ ├── control-forward.svg │ │ │ ├── control-pause.svg │ │ │ ├── control-play.svg │ │ │ ├── control-record.svg │ │ │ ├── control-shuffle.svg │ │ │ ├── control-skip-backward.svg │ │ │ ├── control-skip-forward.svg │ │ │ ├── control-stop.svg │ │ │ ├── credit-card.svg │ │ │ ├── crown.svg │ │ │ ├── css3.svg │ │ │ ├── cup.svg │ │ │ ├── cut.svg │ │ │ ├── dashboard.svg │ │ │ ├── desktop.svg │ │ │ ├── direction-alt.svg │ │ │ ├── direction.svg │ │ │ ├── download.svg │ │ │ ├── dribbble.svg │ │ │ ├── dropbox-alt.svg │ │ │ ├── dropbox.svg │ │ │ ├── drupal.svg │ │ │ ├── email.svg │ │ │ ├── envelope.svg │ │ │ ├── eraser.svg │ │ │ ├── exchange-vertical.svg │ │ │ ├── export.svg │ │ │ ├── eye.svg │ │ │ ├── face-sad.svg │ │ │ ├── face-smile.svg │ │ │ ├── facebook.svg │ │ │ ├── file.svg │ │ │ ├── files.svg │ │ │ ├── filter.svg │ │ │ ├── flag-alt-2.svg │ │ │ ├── flag-alt.svg │ │ │ ├── flag.svg │ │ │ ├── flickr-alt.svg │ │ │ ├── flickr.svg │ │ │ ├── folder.svg │ │ │ ├── fullscreen.svg │ │ │ ├── gallery.svg │ │ │ ├── game.svg │ │ │ ├── gift.svg │ │ │ ├── github.svg │ │ │ ├── google.svg │ │ │ ├── hand-drag.svg │ │ │ ├── hand-open.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-stop.svg │ │ │ ├── harddrive.svg │ │ │ ├── harddrives.svg │ │ │ ├── headphone-alt.svg │ │ │ ├── headphone.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── help-alt.svg │ │ │ ├── help.svg │ │ │ ├── home.svg │ │ │ ├── html5.svg │ │ │ ├── hummer.svg │ │ │ ├── id-badge.svg │ │ │ ├── image.svg │ │ │ ├── import.svg │ │ │ ├── infinite.svg │ │ │ ├── info-alt.svg │ │ │ ├── info.svg │ │ │ ├── ink-pen.svg │ │ │ ├── instagram.svg │ │ │ ├── joomla.svg │ │ │ ├── jsfiddle.svg │ │ │ ├── key.svg │ │ │ ├── layers-alt.svg │ │ │ ├── layers.svg │ │ │ ├── layout-accordion-list.svg │ │ │ ├── layout-accordion-merged.svg │ │ │ ├── layout-accordion-separated.svg │ │ │ ├── layout-column2-alt.svg │ │ │ ├── layout-column2.svg │ │ │ ├── layout-column3-alt.svg │ │ │ ├── layout-column3.svg │ │ │ ├── layout-column4-alt.svg │ │ │ ├── layout-column4.svg │ │ │ ├── layout-cta-btn-left.svg │ │ │ ├── layout-cta-btn-right.svg │ │ │ ├── layout-cta-center.svg │ │ │ ├── layout-cta-left.svg │ │ │ ├── layout-cta-right.svg │ │ │ ├── layout-grid2-alt.svg │ │ │ ├── layout-grid2-thumb.svg │ │ │ ├── layout-grid2.svg │ │ │ ├── layout-grid3-alt.svg │ │ │ ├── layout-grid3.svg │ │ │ ├── layout-grid4-alt.svg │ │ │ ├── layout-grid4.svg │ │ │ ├── layout-line-solid.svg │ │ │ ├── layout-list-large-image.svg │ │ │ ├── layout-list-post.svg │ │ │ ├── layout-list-thumb-alt.svg │ │ │ ├── layout-list-thumb.svg │ │ │ ├── layout-media-center-alt.svg │ │ │ ├── layout-media-center.svg │ │ │ ├── layout-media-left-alt.svg │ │ │ ├── layout-media-left.svg │ │ │ ├── layout-media-overlay-alt-2.svg │ │ │ ├── layout-media-overlay-alt.svg │ │ │ ├── layout-media-overlay.svg │ │ │ ├── layout-media-right-alt.svg │ │ │ ├── layout-media-right.svg │ │ │ ├── layout-menu-full.svg │ │ │ ├── layout-menu-separated.svg │ │ │ ├── layout-menu-v.svg │ │ │ ├── layout-menu.svg │ │ │ ├── layout-placeholder.svg │ │ │ ├── layout-sidebar-2.svg │ │ │ ├── layout-sidebar-left.svg │ │ │ ├── layout-sidebar-none.svg │ │ │ ├── layout-sidebar-right.svg │ │ │ ├── layout-slider-alt.svg │ │ │ ├── layout-slider.svg │ │ │ ├── layout-tab-min.svg │ │ │ ├── layout-tab-v.svg │ │ │ ├── layout-tab-window.svg │ │ │ ├── layout-tab.svg │ │ │ ├── layout-width-default-alt.svg │ │ │ ├── layout-width-default.svg │ │ │ ├── layout-width-full.svg │ │ │ ├── layout.svg │ │ │ ├── light-bulb.svg │ │ │ ├── line-dashed.svg │ │ │ ├── line-dotted.svg │ │ │ ├── line-double.svg │ │ │ ├── link.svg │ │ │ ├── linkedin.svg │ │ │ ├── linux.svg │ │ │ ├── list-ol.svg │ │ │ ├── list.svg │ │ │ ├── location-arrow.svg │ │ │ ├── location-pin.svg │ │ │ ├── lock.svg │ │ │ ├── loop.svg │ │ │ ├── magnet.svg │ │ │ ├── map-alt.svg │ │ │ ├── map.svg │ │ │ ├── marker-alt.svg │ │ │ ├── marker.svg │ │ │ ├── medall-alt.svg │ │ │ ├── medall.svg │ │ │ ├── menu-alt.svg │ │ │ ├── menu.svg │ │ │ ├── microphone-alt.svg │ │ │ ├── microphone.svg │ │ │ ├── microsoft-alt.svg │ │ │ ├── microsoft.svg │ │ │ ├── minus.svg │ │ │ ├── mobile.svg │ │ │ ├── money.svg │ │ │ ├── more-alt.svg │ │ │ ├── more.svg │ │ │ ├── mouse-alt.svg │ │ │ ├── mouse.svg │ │ │ ├── music-alt.svg │ │ │ ├── music.svg │ │ │ ├── na.svg │ │ │ ├── new-window.svg │ │ │ ├── notepad.svg │ │ │ ├── package.svg │ │ │ ├── paint-bucket.svg │ │ │ ├── paint-roller.svg │ │ │ ├── palette.svg │ │ │ ├── panel.svg │ │ │ ├── paragraph.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil-alt2.svg │ │ │ ├── pencil.svg │ │ │ ├── pie-chart.svg │ │ │ ├── pin-alt.svg │ │ │ ├── pin.svg │ │ │ ├── pin2.svg │ │ │ ├── pinterest-alt.svg │ │ │ ├── pinterest.svg │ │ │ ├── plug.svg │ │ │ ├── plus.svg │ │ │ ├── power-off.svg │ │ │ ├── printer.svg │ │ │ ├── pulse.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── receipt.svg │ │ │ ├── reddit.svg │ │ │ ├── reload.svg │ │ │ ├── rocket.svg │ │ │ ├── rss-alt.svg │ │ │ ├── rss.svg │ │ │ ├── ruler-alt-2.svg │ │ │ ├── ruler-alt.svg │ │ │ ├── ruler-pencil.svg │ │ │ ├── ruler.svg │ │ │ ├── save-alt.svg │ │ │ ├── save.svg │ │ │ ├── search.svg │ │ │ ├── server.svg │ │ │ ├── settings.svg │ │ │ ├── share-alt.svg │ │ │ ├── share.svg │ │ │ ├── sharethis-alt.svg │ │ │ ├── sharethis.svg │ │ │ ├── shield.svg │ │ │ ├── shift-left-alt.svg │ │ │ ├── shift-left.svg │ │ │ ├── shift-right-alt.svg │ │ │ ├── shift-right.svg │ │ │ ├── shine.svg │ │ │ ├── shopping-cart-full.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shortcode.svg │ │ │ ├── signal.svg │ │ │ ├── skype.svg │ │ │ ├── slice.svg │ │ │ ├── smallcap.svg │ │ │ ├── soundcloud.svg │ │ │ ├── split-h.svg │ │ │ ├── split-v-alt.svg │ │ │ ├── split-v.svg │ │ │ ├── spray.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── stamp.svg │ │ │ ├── star.svg │ │ │ ├── stats-down.svg │ │ │ ├── stats-up.svg │ │ │ ├── support.svg │ │ │ ├── tablet.svg │ │ │ ├── tag.svg │ │ │ ├── target.svg │ │ │ ├── text.svg │ │ │ ├── themify-favicon-alt.svg │ │ │ ├── themify-favicon.svg │ │ │ ├── themify-logo.svg │ │ │ ├── thought.svg │ │ │ ├── thumb-down.svg │ │ │ ├── thumb-up.svg │ │ │ ├── ticket.svg │ │ │ ├── time.svg │ │ │ ├── timer.svg │ │ │ ├── trash.svg │ │ │ ├── trello.svg │ │ │ ├── truck.svg │ │ │ ├── tumblr-alt.svg │ │ │ ├── tumblr.svg │ │ │ ├── twitter-alt.svg │ │ │ ├── twitter.svg │ │ │ ├── underline.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock.svg │ │ │ ├── upload.svg │ │ │ ├── uppercase.svg │ │ │ ├── user.svg │ │ │ ├── vector.svg │ │ │ ├── video-camera.svg │ │ │ ├── video-clapper.svg │ │ │ ├── view-grid.svg │ │ │ ├── view-list-alt.svg │ │ │ ├── view-list.svg │ │ │ ├── vimeo-alt.svg │ │ │ ├── vimeo.svg │ │ │ ├── volume.svg │ │ │ ├── wallet.svg │ │ │ ├── wand.svg │ │ │ ├── wheelchair.svg │ │ │ ├── widget-alt.svg │ │ │ ├── widget.svg │ │ │ ├── widgetized.svg │ │ │ ├── window.svg │ │ │ ├── wordpress.svg │ │ │ ├── world.svg │ │ │ ├── write.svg │ │ │ ├── yahoo.svg │ │ │ ├── youtube.svg │ │ │ ├── zip.svg │ │ │ ├── zoom-in.svg │ │ │ └── zoom-out.svg │ │ │ ├── Themify IconFonts 5-23-2014.json │ │ │ ├── demo-files │ │ │ └── demo.css │ │ │ ├── fonts │ │ │ ├── themify.eot │ │ │ ├── themify.svg │ │ │ ├── themify.ttf │ │ │ └── themify.woff │ │ │ ├── ie7 │ │ │ ├── ie7.css │ │ │ └── ie7.js │ │ │ ├── index.html │ │ │ ├── readme.txt │ │ │ └── themify-icons.css │ ├── images │ │ ├── background.jpg │ │ ├── heading-pages-01.jpg │ │ ├── icons │ │ │ ├── bg-01.jpg │ │ │ ├── discover.png │ │ │ ├── express.png │ │ │ ├── favicon.png │ │ │ ├── icon-header-01.png │ │ │ ├── icon-header-02.png │ │ │ ├── icon-position-map.png │ │ │ ├── logo.png │ │ │ ├── mastercard.png │ │ │ ├── paypal.png │ │ │ ├── video-16-9.jpg │ │ │ └── visa.png │ │ ├── logo.png │ │ └── shoppingCart.png │ ├── js │ │ ├── changePassword.js │ │ ├── checkoutvalidate.js │ │ ├── main.js │ │ ├── main.min.js │ │ ├── map-custom.js │ │ ├── map-custom.min.js │ │ ├── slick-custom.js │ │ ├── slick-custom.min.js │ │ └── validateForm.js │ ├── uploads │ │ ├── DellInspiron.png │ │ ├── GooglePixel.png │ │ ├── Huawei.png │ │ ├── Iphone-10.png │ │ ├── Iphone-X.png │ │ ├── Macbook.jpg │ │ ├── SamsungCurved.jpg │ │ ├── SamsungS8.jpeg │ │ ├── SamsungS8.png │ │ ├── SamsungUHD.jpg │ │ ├── andriodWatch.png │ │ ├── applewatch.jpeg │ │ ├── c4544c76a438d876.jpg │ │ ├── default.jpg │ │ └── motorolaZ2-Force.png │ └── vendor │ │ ├── animate │ │ └── animate.css │ │ ├── animsition │ │ ├── css │ │ │ ├── animsition.css │ │ │ └── animsition.min.css │ │ └── js │ │ │ ├── animsition.js │ │ │ └── animsition.min.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── popper.js │ │ │ ├── popper.min.js │ │ │ └── tooltip.js │ │ ├── countdowntime │ │ └── countdowntime.js │ │ ├── css-hamburgers │ │ ├── hamburgers.css │ │ └── hamburgers.min.css │ │ ├── daterangepicker │ │ ├── daterangepicker.css │ │ ├── daterangepicker.js │ │ ├── moment.js │ │ └── moment.min.js │ │ ├── isotope │ │ └── isotope.pkgd.min.js │ │ ├── jquery │ │ └── jquery-3.2.1.min.js │ │ ├── jqueryui │ │ ├── external │ │ │ └── jquery │ │ │ │ └── jquery.js │ │ ├── images │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── index.html │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.css │ │ ├── jquery-ui.min.js │ │ ├── jquery-ui.structure.css │ │ ├── jquery-ui.structure.min.css │ │ ├── jquery-ui.theme.css │ │ └── jquery-ui.theme.min.css │ │ ├── lightbox2 │ │ ├── css │ │ │ ├── lightbox.css │ │ │ └── lightbox.min.css │ │ ├── images │ │ │ ├── close.png │ │ │ ├── loading.gif │ │ │ ├── next.png │ │ │ └── prev.png │ │ └── js │ │ │ ├── lightbox-plus-jquery.js │ │ │ ├── lightbox-plus-jquery.min.js │ │ │ ├── lightbox-plus-jquery.min.map │ │ │ ├── lightbox.js │ │ │ ├── lightbox.min.js │ │ │ └── lightbox.min.map │ │ ├── noui │ │ ├── nouislider.css │ │ ├── nouislider.js │ │ ├── nouislider.min.css │ │ └── nouislider.min.js │ │ ├── parallax100 │ │ └── parallax100.js │ │ ├── perfect-scrollbar │ │ ├── perfect-scrollbar.css │ │ └── perfect-scrollbar.min.js │ │ ├── select2 │ │ ├── select2.css │ │ ├── select2.js │ │ ├── select2.min.css │ │ └── select2.min.js │ │ ├── slick │ │ ├── ajax-loader.gif │ │ ├── config.rb │ │ ├── fonts │ │ │ ├── slick.eot │ │ │ ├── slick.svg │ │ │ ├── slick.ttf │ │ │ └── slick.woff │ │ ├── slick-theme.css │ │ ├── slick-theme.less │ │ ├── slick-theme.scss │ │ ├── slick.css │ │ ├── slick.js │ │ ├── slick.less │ │ ├── slick.min.js │ │ └── slick.scss │ │ └── sweetalert │ │ └── sweetalert.min.js └── templates │ ├── OrderPage.html │ ├── addCategory.html │ ├── addProduct.html │ ├── admin.html │ ├── adminCategories.html │ ├── adminCategory.html │ ├── adminProduct.html │ ├── adminProducts.html │ ├── adminUsers.html │ ├── cart.html │ ├── checkoutPage.html │ ├── displayCategory.html │ ├── home.html │ ├── layout.html │ ├── login.html │ ├── productDescription.html │ ├── profileHome.html │ ├── register.html │ └── trends.html ├── presentation ├── Star Gadgets.pdf └── dummy ├── requirements.txt ├── run.py ├── userRequirement ├── Final_Project_Technical_Specification.pdf └── dummy └── video └── dummy /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/config.yaml -------------------------------------------------------------------------------- /ddl/v1.0/Excel Schema-v1.0.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ddl/v1.0/Excel Schema-v1.0.xlsx -------------------------------------------------------------------------------- /ddl/v2.0/DDL-v2.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ddl/v2.0/DDL-v2.0.sql -------------------------------------------------------------------------------- /ddl/v2.0/ER diagram-2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ddl/v2.0/ER diagram-2.0.png -------------------------------------------------------------------------------- /ddl/v2.0/Excel Schema-v2.0.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ddl/v2.0/Excel Schema-v2.0.xlsx -------------------------------------------------------------------------------- /ddl/v2.0/Insert.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ddl/v2.0/Insert.sql -------------------------------------------------------------------------------- /ddl/v3.0/Excel Schema-v3.0.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ddl/v3.0/Excel Schema-v3.0.xlsx -------------------------------------------------------------------------------- /ecommerce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/__init__.py -------------------------------------------------------------------------------- /ecommerce/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/forms.py -------------------------------------------------------------------------------- /ecommerce/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/models.py -------------------------------------------------------------------------------- /ecommerce/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/routes.py -------------------------------------------------------------------------------- /ecommerce/static/css/cart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/css/cart.css -------------------------------------------------------------------------------- /ecommerce/static/css/checkout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/css/checkout.css -------------------------------------------------------------------------------- /ecommerce/static/css/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/css/home.css -------------------------------------------------------------------------------- /ecommerce/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/css/main.css -------------------------------------------------------------------------------- /ecommerce/static/css/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/css/main.min.css -------------------------------------------------------------------------------- /ecommerce/static/css/order.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/css/order.css -------------------------------------------------------------------------------- /ecommerce/static/css/productDescription.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/css/productDescription.css -------------------------------------------------------------------------------- /ecommerce/static/css/topStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/css/topStyle.css -------------------------------------------------------------------------------- /ecommerce/static/css/util.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/css/util.css -------------------------------------------------------------------------------- /ecommerce/static/css/util.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/css/util.min.css -------------------------------------------------------------------------------- /ecommerce/static/fonts/elegant-font/html-css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/elegant-font/html-css/index.html -------------------------------------------------------------------------------- /ecommerce/static/fonts/elegant-font/html-css/lte-ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/elegant-font/html-css/lte-ie7.js -------------------------------------------------------------------------------- /ecommerce/static/fonts/elegant-font/html-css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/elegant-font/html-css/style.css -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/css/ionicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/css/ionicons.css -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/alert.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/at.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/bag.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/beer.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/bug.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/card.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/cash.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/clock.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/close.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/cloud.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/code.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/cube.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/disc.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/drag.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/earth.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/edit.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/egg.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/eject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/eject.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/email.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/eye.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/flag.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/flame.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/flash.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/flask.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/fork.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/grid.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/happy.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/heart.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/help.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/home.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/image.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/ionic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/ionic.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/ipad.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/ipod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/ipod.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/jet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/jet.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/key.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/knife.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/leaf.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/link.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/loop.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/male.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/man.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/map.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/merge.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/mic-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/mic-a.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/mic-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/mic-b.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/mic-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/mic-c.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/minus.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/more.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/mouse.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/pause.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/pin.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/pizza.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/plane.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/play.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/plus.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/pound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/pound.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/power.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/quote.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/reply.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/sad.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/share.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/spoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/spoon.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/star.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/steam.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/stop.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/usb.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/wand.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/wifi.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/woman.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/png/512/xbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/png/512/xbox.png -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/alert.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/aperture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/aperture.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/archive.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/asterisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/asterisk.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/at.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/backspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/backspace.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/bag.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/beaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/beaker.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/beer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/beer.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/bluetooth.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/bonfire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/bonfire.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/bookmark.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/bowtie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/bowtie.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/briefcase.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/bug.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/calendar.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/camera.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/card.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/cash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/cash.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/chatbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/chatbox.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/chatboxes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/chatboxes.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/checkmark.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/clipboard.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/clock.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/close.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/cloud.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/code.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/coffee.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/compass.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/compose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/compose.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/contrast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/contrast.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/crop.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/cube.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/disc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/disc.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/document.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/drag.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/earth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/earth.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/easel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/easel.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/edit.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/egg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/egg.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/eject.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/email.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/eye.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/female.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/filing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/filing.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/fireball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/fireball.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/flag.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/flame.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/flash-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/flash-off.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/flash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/flash.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/folder.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/fork-repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/fork-repo.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/fork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/fork.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/forward.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/funnel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/funnel.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/gear-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/gear-a.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/gear-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/gear-b.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/grid.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/hammer.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/happy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/happy.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/headphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/headphone.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/heart.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/help-buoy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/help-buoy.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/help.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/home.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/icecream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/icecream.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/image.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/images.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ionic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ionic.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-alarm.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-at.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-bell.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-body.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-body.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-bolt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-book.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-box.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-cart.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-clock.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-close.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-cloud.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-cog.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-copy.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-crop.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-drag.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-email.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-eye.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-film.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-flag.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-flame.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-flask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-flask.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-gear.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-heart.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-help.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-home.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-list.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-loop.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-mic.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-minus.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-moon.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-more.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-paper.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-pause.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-paw.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-pie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-pie.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-pint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-pint.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-play.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-plus.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-pulse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-pulse.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-rainy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-rainy.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-redo.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-rose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-rose.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-snowy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-snowy.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-star.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-sunny.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-time.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-timer.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-trash.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-undo.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ios-world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ios-world.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ipad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ipad.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/iphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/iphone.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ipod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ipod.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/jet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/jet.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/key.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/knife.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/knife.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/laptop.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/leaf.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/levels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/levels.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/lightbulb.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/link.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/load-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/load-a.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/load-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/load-b.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/load-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/load-c.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/load-d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/load-d.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/location.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/locked.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/log-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/log-in.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/log-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/log-out.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/loop.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/magnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/magnet.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/male.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/man.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/map.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/medkit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/medkit.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/merge.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/mic-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/mic-a.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/mic-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/mic-b.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/mic-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/mic-c.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/minus.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/model-s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/model-s.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/monitor.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/more.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/mouse.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/navicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/navicon.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/navigate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/navigate.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/network.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/nuclear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/nuclear.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/outlet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/outlet.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/paperclip.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/pause.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/person.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/pie-graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/pie-graph.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/pin.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/pinpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/pinpoint.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/pizza.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/pizza.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/plane.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/planet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/planet.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/play.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/plus.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/podium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/podium.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/pound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/pound.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/power.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/pricetag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/pricetag.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/pricetags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/pricetags.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/printer.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/quote.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/record.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/refresh.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/reply-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/reply-all.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/reply.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ribbon-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ribbon-a.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/ribbon-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/ribbon-b.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/sad.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/scissors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/scissors.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/search.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/settings.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/share.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/shuffle.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/soup-can.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/soup-can.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/spoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/spoon.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/star.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/steam.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/stop.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/thumbsup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/thumbsup.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/toggle.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/trash-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/trash-a.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/trash-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/trash-b.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/trophy.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/tshirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/tshirt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/umbrella.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/umbrella.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/upload.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/usb.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/wand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/wand.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/wifi.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/woman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/woman.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/wrench.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/ionicons-2.0.1/src/xbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/ionicons-2.0.1/src/xbox.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/montserrat/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/montserrat/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/montserrat/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/montserrat/OFL.txt -------------------------------------------------------------------------------- /ecommerce/static/fonts/poppins/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/poppins/Poppins-Black.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/poppins/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/poppins/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/poppins/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/poppins/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/poppins/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/poppins/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/poppins/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/poppins/Poppins-Italic.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/poppins/Poppins-Light.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/poppins/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/poppins/Poppins-Thin.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/poppins/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/poppins/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/Italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/Italic.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/agenda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/agenda.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/alarm-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/alarm-clock.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/alert.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/align-center.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/align-justify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/align-justify.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/align-left.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/align-right.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/anchor.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/android.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/angle-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/angle-down.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/angle-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/angle-left.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/angle-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/angle-right.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/angle-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/angle-up.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/announcement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/announcement.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/apple.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/archive.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/arrow-down.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/arrow-left.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/arrow-right.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/arrow-top-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/arrow-top-left.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/arrow-up.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/arrow.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/arrows-corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/arrows-corner.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/back-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/back-left.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/back-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/back-right.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/bag.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/bar-chart-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/bar-chart-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/bar-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/bar-chart.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/basketball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/basketball.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/bell.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/blackboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/blackboard.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/bolt-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/bolt-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/bolt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/book.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/bookmark-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/bookmark-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/bookmark.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/briefcase.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/brush-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/brush-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/brush.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/calendar.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/camera.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/car.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/check-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/check-box.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/check.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/clip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/clip.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/clipboard.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/close.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/cloud-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/cloud-down.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/cloud-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/cloud-up.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/cloud.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/comment-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/comment-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/comment.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/comments.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/control-eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/control-eject.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/control-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/control-pause.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/control-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/control-play.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/control-record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/control-record.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/control-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/control-stop.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/credit-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/credit-card.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/crown.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/css3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/css3.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/cup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/cup.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/cut.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/dashboard.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/desktop.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/direction-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/direction-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/direction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/direction.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/download.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/dribbble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/dribbble.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/dropbox-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/dropbox-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/dropbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/dropbox.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/drupal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/drupal.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/email.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/envelope.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/eraser.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/export.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/eye.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/face-sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/face-sad.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/face-smile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/face-smile.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/facebook.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/file.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/files.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/files.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/filter.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/flag-alt-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/flag-alt-2.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/flag-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/flag-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/flag.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/flickr-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/flickr-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/flickr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/flickr.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/folder.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/fullscreen.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/gallery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/gallery.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/game.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/game.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/gift.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/github.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/google.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/hand-drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/hand-drag.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/hand-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/hand-open.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/hand-point-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/hand-point-up.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/hand-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/hand-stop.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/harddrive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/harddrive.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/harddrives.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/harddrives.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/headphone-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/headphone-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/headphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/headphone.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/heart-broken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/heart-broken.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/heart.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/help-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/help-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/help.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/home.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/html5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/html5.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/hummer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/hummer.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/id-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/id-badge.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/image.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/import.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/infinite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/infinite.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/info-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/info-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/info.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/ink-pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/ink-pen.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/instagram.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/joomla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/joomla.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/jsfiddle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/jsfiddle.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/key.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layers-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layers-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layers.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layout-column2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layout-column2.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layout-column3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layout-column3.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layout-column4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layout-column4.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layout-grid2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layout-grid2.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layout-grid3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layout-grid3.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layout-grid4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layout-grid4.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layout-menu-v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layout-menu-v.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layout-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layout-menu.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layout-slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layout-slider.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layout-tab-min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layout-tab-min.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layout-tab-v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layout-tab-v.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layout-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layout-tab.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/layout.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/light-bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/light-bulb.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/line-dashed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/line-dashed.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/line-dotted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/line-dotted.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/line-double.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/line-double.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/link.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/linkedin.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/linux.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/list-ol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/list-ol.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/list.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/location-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/location-arrow.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/location-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/location-pin.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/lock.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/loop.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/magnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/magnet.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/map-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/map-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/map.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/marker-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/marker-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/marker.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/medall-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/medall-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/medall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/medall.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/menu-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/menu-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/menu.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/microphone-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/microphone-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/microphone.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/microsoft-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/microsoft-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/microsoft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/microsoft.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/minus.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/mobile.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/money.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/more-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/more-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/more.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/mouse-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/mouse-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/mouse.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/music-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/music-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/music.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/na.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/na.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/new-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/new-window.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/notepad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/notepad.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/package.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/paint-bucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/paint-bucket.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/paint-roller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/paint-roller.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/palette.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/panel.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/paragraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/paragraph.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/pencil-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/pencil-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/pencil-alt2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/pencil-alt2.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/pencil.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/pie-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/pie-chart.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/pin-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/pin-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/pin.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/pin2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/pin2.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/pinterest-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/pinterest-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/pinterest.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/plug.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/plus.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/power-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/power-off.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/printer.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/pulse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/pulse.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/quote-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/quote-left.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/quote-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/quote-right.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/receipt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/receipt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/reddit.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/reload.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/rocket.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/rss-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/rss-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/rss.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/ruler-alt-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/ruler-alt-2.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/ruler-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/ruler-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/ruler-pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/ruler-pencil.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/ruler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/ruler.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/save-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/save-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/save.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/search.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/server.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/settings.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/share-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/share-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/share.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/sharethis-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/sharethis-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/sharethis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/sharethis.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/shield.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/shift-left-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/shift-left-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/shift-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/shift-left.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/shift-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/shift-right.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/shine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/shine.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/shopping-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/shopping-cart.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/shortcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/shortcode.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/signal.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/skype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/skype.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/slice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/slice.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/smallcap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/smallcap.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/soundcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/soundcloud.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/split-h.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/split-h.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/split-v-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/split-v-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/split-v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/split-v.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/spray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/spray.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/stack-overflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/stack-overflow.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/stamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/stamp.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/star.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/stats-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/stats-down.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/stats-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/stats-up.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/support.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/tablet.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/tag.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/target.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/text.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/themify-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/themify-logo.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/thought.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/thought.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/thumb-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/thumb-down.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/thumb-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/thumb-up.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/ticket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/ticket.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/time.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/timer.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/trash.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/trello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/trello.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/truck.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/tumblr-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/tumblr-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/tumblr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/tumblr.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/twitter-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/twitter-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/twitter.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/underline.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/unlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/unlink.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/unlock.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/upload.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/uppercase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/uppercase.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/user.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/vector.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/video-camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/video-camera.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/video-clapper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/video-clapper.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/view-grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/view-grid.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/view-list-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/view-list-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/view-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/view-list.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/vimeo-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/vimeo-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/vimeo.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/volume.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/wallet.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/wand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/wand.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/wheelchair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/wheelchair.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/widget-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/widget-alt.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/widget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/widget.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/widgetized.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/widgetized.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/window.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/wordpress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/wordpress.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/world.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/write.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/write.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/yahoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/yahoo.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/youtube.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/zip.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/zoom-in.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/SVG/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/SVG/zoom-out.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/demo-files/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/demo-files/demo.css -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/fonts/themify.eot -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/fonts/themify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/fonts/themify.svg -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/fonts/themify.ttf -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/fonts/themify.woff -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/ie7/ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/ie7/ie7.css -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/ie7/ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/ie7/ie7.js -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/index.html -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/readme.txt -------------------------------------------------------------------------------- /ecommerce/static/fonts/themify/themify-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/fonts/themify/themify-icons.css -------------------------------------------------------------------------------- /ecommerce/static/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/background.jpg -------------------------------------------------------------------------------- /ecommerce/static/images/heading-pages-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/heading-pages-01.jpg -------------------------------------------------------------------------------- /ecommerce/static/images/icons/bg-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/icons/bg-01.jpg -------------------------------------------------------------------------------- /ecommerce/static/images/icons/discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/icons/discover.png -------------------------------------------------------------------------------- /ecommerce/static/images/icons/express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/icons/express.png -------------------------------------------------------------------------------- /ecommerce/static/images/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/icons/favicon.png -------------------------------------------------------------------------------- /ecommerce/static/images/icons/icon-header-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/icons/icon-header-01.png -------------------------------------------------------------------------------- /ecommerce/static/images/icons/icon-header-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/icons/icon-header-02.png -------------------------------------------------------------------------------- /ecommerce/static/images/icons/icon-position-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/icons/icon-position-map.png -------------------------------------------------------------------------------- /ecommerce/static/images/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/icons/logo.png -------------------------------------------------------------------------------- /ecommerce/static/images/icons/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/icons/mastercard.png -------------------------------------------------------------------------------- /ecommerce/static/images/icons/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/icons/paypal.png -------------------------------------------------------------------------------- /ecommerce/static/images/icons/video-16-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/icons/video-16-9.jpg -------------------------------------------------------------------------------- /ecommerce/static/images/icons/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/icons/visa.png -------------------------------------------------------------------------------- /ecommerce/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/logo.png -------------------------------------------------------------------------------- /ecommerce/static/images/shoppingCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/images/shoppingCart.png -------------------------------------------------------------------------------- /ecommerce/static/js/changePassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/js/changePassword.js -------------------------------------------------------------------------------- /ecommerce/static/js/checkoutvalidate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/js/checkoutvalidate.js -------------------------------------------------------------------------------- /ecommerce/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/js/main.js -------------------------------------------------------------------------------- /ecommerce/static/js/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/js/main.min.js -------------------------------------------------------------------------------- /ecommerce/static/js/map-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/js/map-custom.js -------------------------------------------------------------------------------- /ecommerce/static/js/map-custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/js/map-custom.min.js -------------------------------------------------------------------------------- /ecommerce/static/js/slick-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/js/slick-custom.js -------------------------------------------------------------------------------- /ecommerce/static/js/slick-custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/js/slick-custom.min.js -------------------------------------------------------------------------------- /ecommerce/static/js/validateForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/js/validateForm.js -------------------------------------------------------------------------------- /ecommerce/static/uploads/DellInspiron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/DellInspiron.png -------------------------------------------------------------------------------- /ecommerce/static/uploads/GooglePixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/GooglePixel.png -------------------------------------------------------------------------------- /ecommerce/static/uploads/Huawei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/Huawei.png -------------------------------------------------------------------------------- /ecommerce/static/uploads/Iphone-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/Iphone-10.png -------------------------------------------------------------------------------- /ecommerce/static/uploads/Iphone-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/Iphone-X.png -------------------------------------------------------------------------------- /ecommerce/static/uploads/Macbook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/Macbook.jpg -------------------------------------------------------------------------------- /ecommerce/static/uploads/SamsungCurved.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/SamsungCurved.jpg -------------------------------------------------------------------------------- /ecommerce/static/uploads/SamsungS8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/SamsungS8.jpeg -------------------------------------------------------------------------------- /ecommerce/static/uploads/SamsungS8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/SamsungS8.png -------------------------------------------------------------------------------- /ecommerce/static/uploads/SamsungUHD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/SamsungUHD.jpg -------------------------------------------------------------------------------- /ecommerce/static/uploads/andriodWatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/andriodWatch.png -------------------------------------------------------------------------------- /ecommerce/static/uploads/applewatch.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/applewatch.jpeg -------------------------------------------------------------------------------- /ecommerce/static/uploads/c4544c76a438d876.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/c4544c76a438d876.jpg -------------------------------------------------------------------------------- /ecommerce/static/uploads/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/default.jpg -------------------------------------------------------------------------------- /ecommerce/static/uploads/motorolaZ2-Force.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/uploads/motorolaZ2-Force.png -------------------------------------------------------------------------------- /ecommerce/static/vendor/animate/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/animate/animate.css -------------------------------------------------------------------------------- /ecommerce/static/vendor/animsition/css/animsition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/animsition/css/animsition.css -------------------------------------------------------------------------------- /ecommerce/static/vendor/animsition/js/animsition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/animsition/js/animsition.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /ecommerce/static/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/bootstrap/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/bootstrap/js/popper.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/bootstrap/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/bootstrap/js/popper.min.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/css-hamburgers/hamburgers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/css-hamburgers/hamburgers.css -------------------------------------------------------------------------------- /ecommerce/static/vendor/daterangepicker/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/daterangepicker/moment.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/daterangepicker/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/daterangepicker/moment.min.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/isotope/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/isotope/isotope.pkgd.min.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/jquery/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/jquery/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/jqueryui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/jqueryui/index.html -------------------------------------------------------------------------------- /ecommerce/static/vendor/jqueryui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/jqueryui/jquery-ui.css -------------------------------------------------------------------------------- /ecommerce/static/vendor/jqueryui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/jqueryui/jquery-ui.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/jqueryui/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/jqueryui/jquery-ui.min.css -------------------------------------------------------------------------------- /ecommerce/static/vendor/jqueryui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/jqueryui/jquery-ui.min.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/jqueryui/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/jqueryui/jquery-ui.theme.css -------------------------------------------------------------------------------- /ecommerce/static/vendor/lightbox2/css/lightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/lightbox2/css/lightbox.css -------------------------------------------------------------------------------- /ecommerce/static/vendor/lightbox2/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/lightbox2/images/close.png -------------------------------------------------------------------------------- /ecommerce/static/vendor/lightbox2/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/lightbox2/images/loading.gif -------------------------------------------------------------------------------- /ecommerce/static/vendor/lightbox2/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/lightbox2/images/next.png -------------------------------------------------------------------------------- /ecommerce/static/vendor/lightbox2/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/lightbox2/images/prev.png -------------------------------------------------------------------------------- /ecommerce/static/vendor/lightbox2/js/lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/lightbox2/js/lightbox.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/lightbox2/js/lightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/lightbox2/js/lightbox.min.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/lightbox2/js/lightbox.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/lightbox2/js/lightbox.min.map -------------------------------------------------------------------------------- /ecommerce/static/vendor/noui/nouislider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/noui/nouislider.css -------------------------------------------------------------------------------- /ecommerce/static/vendor/noui/nouislider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/noui/nouislider.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/noui/nouislider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/noui/nouislider.min.css -------------------------------------------------------------------------------- /ecommerce/static/vendor/noui/nouislider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/noui/nouislider.min.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/parallax100/parallax100.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/parallax100/parallax100.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/select2/select2.css -------------------------------------------------------------------------------- /ecommerce/static/vendor/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/select2/select2.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/select2/select2.min.css -------------------------------------------------------------------------------- /ecommerce/static/vendor/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/select2/select2.min.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/slick/ajax-loader.gif -------------------------------------------------------------------------------- /ecommerce/static/vendor/slick/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/slick/config.rb -------------------------------------------------------------------------------- /ecommerce/static/vendor/slick/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/slick/fonts/slick.eot -------------------------------------------------------------------------------- /ecommerce/static/vendor/slick/fonts/slick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/slick/fonts/slick.svg -------------------------------------------------------------------------------- /ecommerce/static/vendor/slick/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/slick/fonts/slick.ttf -------------------------------------------------------------------------------- /ecommerce/static/vendor/slick/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/slick/fonts/slick.woff -------------------------------------------------------------------------------- /ecommerce/static/vendor/slick/slick-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/slick/slick-theme.css -------------------------------------------------------------------------------- /ecommerce/static/vendor/slick/slick-theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/slick/slick-theme.less -------------------------------------------------------------------------------- /ecommerce/static/vendor/slick/slick-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/slick/slick-theme.scss -------------------------------------------------------------------------------- /ecommerce/static/vendor/slick/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/slick/slick.css -------------------------------------------------------------------------------- /ecommerce/static/vendor/slick/slick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/slick/slick.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/slick/slick.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/slick/slick.less -------------------------------------------------------------------------------- /ecommerce/static/vendor/slick/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/slick/slick.min.js -------------------------------------------------------------------------------- /ecommerce/static/vendor/slick/slick.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/slick/slick.scss -------------------------------------------------------------------------------- /ecommerce/static/vendor/sweetalert/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/static/vendor/sweetalert/sweetalert.min.js -------------------------------------------------------------------------------- /ecommerce/templates/OrderPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/OrderPage.html -------------------------------------------------------------------------------- /ecommerce/templates/addCategory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/addCategory.html -------------------------------------------------------------------------------- /ecommerce/templates/addProduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/addProduct.html -------------------------------------------------------------------------------- /ecommerce/templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/admin.html -------------------------------------------------------------------------------- /ecommerce/templates/adminCategories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/adminCategories.html -------------------------------------------------------------------------------- /ecommerce/templates/adminCategory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/adminCategory.html -------------------------------------------------------------------------------- /ecommerce/templates/adminProduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/adminProduct.html -------------------------------------------------------------------------------- /ecommerce/templates/adminProducts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/adminProducts.html -------------------------------------------------------------------------------- /ecommerce/templates/adminUsers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/adminUsers.html -------------------------------------------------------------------------------- /ecommerce/templates/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/cart.html -------------------------------------------------------------------------------- /ecommerce/templates/checkoutPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/checkoutPage.html -------------------------------------------------------------------------------- /ecommerce/templates/displayCategory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/displayCategory.html -------------------------------------------------------------------------------- /ecommerce/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/home.html -------------------------------------------------------------------------------- /ecommerce/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/layout.html -------------------------------------------------------------------------------- /ecommerce/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/login.html -------------------------------------------------------------------------------- /ecommerce/templates/productDescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/productDescription.html -------------------------------------------------------------------------------- /ecommerce/templates/profileHome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/profileHome.html -------------------------------------------------------------------------------- /ecommerce/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/register.html -------------------------------------------------------------------------------- /ecommerce/templates/trends.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/ecommerce/templates/trends.html -------------------------------------------------------------------------------- /presentation/Star Gadgets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/presentation/Star Gadgets.pdf -------------------------------------------------------------------------------- /presentation/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilagrwl07/ecommerce-flask-python/HEAD/run.py -------------------------------------------------------------------------------- /userRequirement/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /video/dummy: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------