├── .gitignore ├── README.md ├── alize ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── requirements.txt ├── screen_shots ├── 0.png ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── demo.gif ├── logo.png └── wordcloud.png ├── static ├── css │ ├── 404.css │ ├── animate.css │ ├── app.css │ ├── helper.css │ ├── less │ │ ├── advance-widget.less │ │ ├── amchart.less │ │ ├── badge.less │ │ ├── booking-system.less │ │ ├── breadcrumb.less │ │ ├── button.less │ │ ├── calendar.less │ │ ├── card.less │ │ ├── carousel.less │ │ ├── chart.less │ │ ├── chartist.less │ │ ├── chat.less │ │ ├── compose-email.less │ │ ├── data-table.less │ │ ├── datamap.less │ │ ├── error.less │ │ ├── favourite_menu.less │ │ ├── flot-chart.less │ │ ├── font.less │ │ ├── fonts.less │ │ ├── footer.less │ │ ├── form-validation.less │ │ ├── forms.less │ │ ├── global.less │ │ ├── gmap.less │ │ ├── header.less │ │ ├── invoice-edit.less │ │ ├── invoice.less │ │ ├── knob.less │ │ ├── login.less │ │ ├── menu-upload.less │ │ ├── mixins.less │ │ ├── modal.less │ │ ├── morris-chart.less │ │ ├── nestable.less │ │ ├── order-list.less │ │ ├── order-progress.less │ │ ├── pagination.less │ │ ├── panel.less │ │ ├── preloader.less │ │ ├── products_1.less │ │ ├── products_2.less │ │ ├── products_3.less │ │ ├── profile-widget.less │ │ ├── profile.less │ │ ├── progress-bar.less │ │ ├── recent-comments.less │ │ ├── recent-message.less │ │ ├── responsive.less │ │ ├── scrollable.less │ │ ├── search.less │ │ ├── sidebar.less │ │ ├── social-media-stats.less │ │ ├── style.less │ │ ├── tab.less │ │ ├── table-export.less │ │ ├── table.less │ │ ├── timeline.less │ │ ├── todo-list.less │ │ ├── ui-block-quote.less │ │ ├── ui-element-basic.less │ │ ├── ui-user-card.less │ │ ├── variable.less │ │ ├── vector-map.less │ │ ├── vertical-carousel.less │ │ ├── weather.less │ │ └── widget-stat.less │ ├── lib │ │ ├── amchart │ │ │ └── export.css │ │ ├── barRating │ │ │ └── barRating.css │ │ ├── bootstrap │ │ │ └── bootstrap.min.css │ │ ├── c3 │ │ │ └── c3.min.css │ │ ├── calendar │ │ │ └── fullcalendar.css │ │ ├── calendar2 │ │ │ ├── pignose.calendar.min.css │ │ │ └── semantic.ui.min.css │ │ ├── chartist │ │ │ └── chartist.min.css │ │ ├── data-table │ │ │ ├── buttons.bootstrap.min.css │ │ │ ├── buttons.dataTables.min.css │ │ │ └── dataTables.bootstrap.min.css │ │ ├── datepicker │ │ │ └── bootstrap-datepicker3.min.css │ │ ├── dropzone │ │ │ └── dropzone.css │ │ ├── html5-editor │ │ │ └── bootstrap-wysihtml5.css │ │ ├── jsgrid │ │ │ ├── jsgrid-theme.min.css │ │ │ └── jsgrid.min.css │ │ ├── line-progress │ │ │ └── jquery.lineProgressbar.css │ │ ├── lobi-panel │ │ │ └── lobipanel.min.css │ │ ├── menubar │ │ │ └── sidebar.css │ │ ├── metismenu │ │ │ └── menu.css │ │ ├── nestable │ │ │ └── nestable.css │ │ ├── owl.carousel.min.css │ │ ├── owl.theme.default.min.css │ │ ├── preloader │ │ │ └── pace.css │ │ ├── rangSlider │ │ │ ├── ion.rangeSlider.css │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ ├── ion.rangeSlider.skinHTML5.css │ │ │ ├── ion.rangeSlider.skinModern.css │ │ │ ├── ion.rangeSlider.skinNice.css │ │ │ ├── ion.rangeSlider.skinSimple.css │ │ │ └── normalize.css │ │ ├── rickshaw-chart │ │ │ └── rickshaw.min.css │ │ ├── scrollable │ │ │ └── scrollable.min.css │ │ ├── select2 │ │ │ └── select2.min.css │ │ ├── sweetalert │ │ │ └── sweetalert.css │ │ ├── toastr │ │ │ └── toastr.min.css │ │ └── vector-map │ │ │ └── jqvmap.min.css │ ├── search.css │ ├── spinners.css │ └── style.css ├── fonts │ ├── CabinSketch-Bold.ttf │ ├── roboto.thin-italic.ttf │ └── roboto.thin.ttf ├── icons │ ├── flag-icon-css │ │ ├── flag-icon.min.css │ │ └── flags │ │ │ ├── ad.svg │ │ │ ├── ae.svg │ │ │ ├── af.svg │ │ │ ├── ag.svg │ │ │ ├── ai.svg │ │ │ ├── al.svg │ │ │ ├── am.svg │ │ │ ├── ao.svg │ │ │ ├── aq.svg │ │ │ ├── ar.svg │ │ │ ├── as.svg │ │ │ ├── at.svg │ │ │ ├── au.svg │ │ │ ├── aw.svg │ │ │ ├── ax.svg │ │ │ ├── az.svg │ │ │ ├── ba.svg │ │ │ ├── bb.svg │ │ │ ├── bd.svg │ │ │ ├── be.svg │ │ │ ├── bf.svg │ │ │ ├── bg.svg │ │ │ ├── bh.svg │ │ │ ├── bi.svg │ │ │ ├── bj.svg │ │ │ ├── bl.svg │ │ │ ├── bm.svg │ │ │ ├── bn.svg │ │ │ ├── bo.svg │ │ │ ├── bq.svg │ │ │ ├── br.svg │ │ │ ├── bs.svg │ │ │ ├── bt.svg │ │ │ ├── bv.svg │ │ │ ├── bw.svg │ │ │ ├── by.svg │ │ │ ├── bz.svg │ │ │ ├── ca.svg │ │ │ ├── cc.svg │ │ │ ├── cd.svg │ │ │ ├── cf.svg │ │ │ ├── cg.svg │ │ │ ├── ch.svg │ │ │ ├── ci.svg │ │ │ ├── ck.svg │ │ │ ├── cl.svg │ │ │ ├── cm.svg │ │ │ ├── cn.svg │ │ │ ├── co.svg │ │ │ ├── cr.svg │ │ │ ├── cu.svg │ │ │ ├── cv.svg │ │ │ ├── cw.svg │ │ │ ├── cx.svg │ │ │ ├── cy.svg │ │ │ ├── cz.svg │ │ │ ├── de.svg │ │ │ ├── dj.svg │ │ │ ├── dk.svg │ │ │ ├── dm.svg │ │ │ ├── do.svg │ │ │ ├── dz.svg │ │ │ ├── ec.svg │ │ │ ├── ee.svg │ │ │ ├── eg.svg │ │ │ ├── eh.svg │ │ │ ├── er.svg │ │ │ ├── es.svg │ │ │ ├── et.svg │ │ │ ├── fi.svg │ │ │ ├── fj.svg │ │ │ ├── fk.svg │ │ │ ├── fm.svg │ │ │ ├── fo.svg │ │ │ ├── fr.svg │ │ │ ├── ga.svg │ │ │ ├── gb.svg │ │ │ ├── gd.svg │ │ │ ├── ge.svg │ │ │ ├── gf.svg │ │ │ ├── gg.svg │ │ │ ├── gh.svg │ │ │ ├── gi.svg │ │ │ ├── gl.svg │ │ │ ├── gm.svg │ │ │ ├── gn.svg │ │ │ ├── gp.svg │ │ │ ├── gq.svg │ │ │ ├── gr.svg │ │ │ ├── gs.svg │ │ │ ├── gt.svg │ │ │ ├── gu.svg │ │ │ ├── gw.svg │ │ │ ├── gy.svg │ │ │ ├── hk.svg │ │ │ ├── hm.svg │ │ │ ├── hn.svg │ │ │ ├── hr.svg │ │ │ ├── ht.svg │ │ │ ├── hu.svg │ │ │ ├── id.svg │ │ │ ├── ie.svg │ │ │ ├── il.svg │ │ │ ├── im.svg │ │ │ ├── in.svg │ │ │ ├── io.svg │ │ │ ├── iq.svg │ │ │ ├── ir.svg │ │ │ ├── is.svg │ │ │ ├── it.svg │ │ │ ├── je.svg │ │ │ ├── jm.svg │ │ │ ├── jo.svg │ │ │ ├── jp.svg │ │ │ ├── ke.svg │ │ │ ├── kg.svg │ │ │ ├── kh.svg │ │ │ ├── ki.svg │ │ │ ├── km.svg │ │ │ ├── kn.svg │ │ │ ├── kp.svg │ │ │ ├── kr.svg │ │ │ ├── kw.svg │ │ │ ├── ky.svg │ │ │ ├── kz.svg │ │ │ ├── la.svg │ │ │ ├── lb.svg │ │ │ ├── lc.svg │ │ │ ├── li.svg │ │ │ ├── lk.svg │ │ │ ├── lr.svg │ │ │ ├── ls.svg │ │ │ ├── lt.svg │ │ │ ├── lu.svg │ │ │ ├── lv.svg │ │ │ ├── ly.svg │ │ │ ├── ma.svg │ │ │ ├── mc.svg │ │ │ ├── md.svg │ │ │ ├── me.svg │ │ │ ├── mf.svg │ │ │ ├── mg.svg │ │ │ ├── mh.svg │ │ │ ├── mk.svg │ │ │ ├── ml.svg │ │ │ ├── mm.svg │ │ │ ├── mn.svg │ │ │ ├── mo.svg │ │ │ ├── mp.svg │ │ │ ├── mq.svg │ │ │ ├── mr.svg │ │ │ ├── ms.svg │ │ │ ├── mt.svg │ │ │ ├── mu.svg │ │ │ ├── mv.svg │ │ │ ├── mw.svg │ │ │ ├── mx.svg │ │ │ ├── my.svg │ │ │ ├── mz.svg │ │ │ ├── na.svg │ │ │ ├── nc.svg │ │ │ ├── ne.svg │ │ │ ├── nf.svg │ │ │ ├── ng.svg │ │ │ ├── ni.svg │ │ │ ├── nl.svg │ │ │ ├── no.svg │ │ │ ├── np.svg │ │ │ ├── nr.svg │ │ │ ├── nu.svg │ │ │ ├── nz.svg │ │ │ ├── om.svg │ │ │ ├── pa.svg │ │ │ ├── pe.svg │ │ │ ├── pf.svg │ │ │ ├── pg.svg │ │ │ ├── ph.svg │ │ │ ├── pk.svg │ │ │ ├── pl.svg │ │ │ ├── pm.svg │ │ │ ├── pn.svg │ │ │ ├── pr.svg │ │ │ ├── ps.svg │ │ │ ├── pt.svg │ │ │ ├── pw.svg │ │ │ ├── py.svg │ │ │ ├── qa.svg │ │ │ ├── re.svg │ │ │ ├── ro.svg │ │ │ ├── rs.svg │ │ │ ├── ru.svg │ │ │ ├── rw.svg │ │ │ ├── sa.svg │ │ │ ├── sb.svg │ │ │ ├── sc.svg │ │ │ ├── sd.svg │ │ │ ├── se.svg │ │ │ ├── sg.svg │ │ │ ├── sh.svg │ │ │ ├── si.svg │ │ │ ├── sj.svg │ │ │ ├── sk.svg │ │ │ ├── sl.svg │ │ │ ├── sm.svg │ │ │ ├── sn.svg │ │ │ ├── so.svg │ │ │ ├── sr.svg │ │ │ ├── ss.svg │ │ │ ├── st.svg │ │ │ ├── sv.svg │ │ │ ├── sx.svg │ │ │ ├── sy.svg │ │ │ ├── sz.svg │ │ │ ├── tc.svg │ │ │ ├── td.svg │ │ │ ├── tf.svg │ │ │ ├── tg.svg │ │ │ ├── th.svg │ │ │ ├── tj.svg │ │ │ ├── tk.svg │ │ │ ├── tl.svg │ │ │ ├── tm.svg │ │ │ ├── tn.svg │ │ │ ├── to.svg │ │ │ ├── tr.svg │ │ │ ├── tt.svg │ │ │ ├── tv.svg │ │ │ ├── tw.svg │ │ │ ├── tz.svg │ │ │ ├── ua.svg │ │ │ ├── ug.svg │ │ │ ├── um.svg │ │ │ ├── us.svg │ │ │ ├── uy.svg │ │ │ ├── uz.svg │ │ │ ├── va.svg │ │ │ ├── vc.svg │ │ │ ├── ve.svg │ │ │ ├── vg.svg │ │ │ ├── vi.svg │ │ │ ├── vn.svg │ │ │ ├── vu.svg │ │ │ ├── wf.svg │ │ │ ├── ws.svg │ │ │ ├── ye.svg │ │ │ ├── yt.svg │ │ │ ├── za.svg │ │ │ ├── zm.svg │ │ │ └── zw.svg │ ├── font-awesome │ │ ├── css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── fontawesome-webfont3e6e.eot │ │ │ ├── fontawesome-webfont3e6e.svg │ │ │ ├── fontawesome-webfont3e6e.ttf │ │ │ ├── fontawesome-webfont3e6e.woff │ │ │ ├── fontawesome-webfont3e6e.woff2 │ │ │ └── fontawesome-webfontd41d.eot │ ├── linea-icons │ │ ├── fonts │ │ │ ├── linea-arrows-10.eot │ │ │ ├── linea-arrows-10.svg │ │ │ ├── linea-arrows-10.ttf │ │ │ ├── linea-arrows-10.woff │ │ │ ├── linea-arrows-10d41d.eot │ │ │ ├── linea-basic-10.eot │ │ │ ├── linea-basic-10.svg │ │ │ ├── linea-basic-10.ttf │ │ │ ├── linea-basic-10.woff │ │ │ ├── linea-basic-10d41d.eot │ │ │ ├── linea-basic-elaboration-10.eot │ │ │ ├── linea-basic-elaboration-10.svg │ │ │ ├── linea-basic-elaboration-10.ttf │ │ │ ├── linea-basic-elaboration-10.woff │ │ │ ├── linea-basic-elaboration-10d41d.eot │ │ │ ├── linea-ecommerce-10.eot │ │ │ ├── linea-ecommerce-10.svg │ │ │ ├── linea-ecommerce-10.ttf │ │ │ ├── linea-ecommerce-10.woff │ │ │ ├── linea-ecommerce-10d41d.eot │ │ │ ├── linea-music-10.eot │ │ │ ├── linea-music-10.svg │ │ │ ├── linea-music-10.ttf │ │ │ ├── linea-music-10.woff │ │ │ ├── linea-music-10d41d.eot │ │ │ ├── linea-software-10.eot │ │ │ ├── linea-software-10.svg │ │ │ ├── linea-software-10.ttf │ │ │ ├── linea-software-10.woff │ │ │ ├── linea-software-10d41d.eot │ │ │ ├── linea-weather-10.eot │ │ │ ├── linea-weather-10.svg │ │ │ ├── linea-weather-10.ttf │ │ │ ├── linea-weather-10.woff │ │ │ └── linea-weather-10d41d.eot │ │ └── linea.css │ ├── material-design-iconic-font │ │ ├── css │ │ │ └── materialdesignicons.min.css │ │ └── fonts │ │ │ ├── materialdesignicons-webfontd41d.eot │ │ │ ├── materialdesignicons-webfontdc99.eot │ │ │ ├── materialdesignicons-webfontdc99.svg │ │ │ ├── materialdesignicons-webfontdc99.ttf │ │ │ ├── materialdesignicons-webfontdc99.woff │ │ │ └── materialdesignicons-webfontdc99.woff2 │ ├── simple-line-icons │ │ ├── css │ │ │ └── simple-line-icons.css │ │ └── fonts │ │ │ ├── Simple-Line-Icons4c82.eot │ │ │ ├── Simple-Line-Icons4c82.svg │ │ │ ├── Simple-Line-Icons4c82.ttf │ │ │ ├── Simple-Line-Icons4c82.woff │ │ │ ├── Simple-Line-Icons4c82.woff2 │ │ │ └── Simple-Line-Iconsd41d.eot │ ├── themify-icons │ │ ├── fonts │ │ │ ├── themify.ttf │ │ │ ├── themify.woff │ │ │ ├── themify9f24.eot │ │ │ ├── themify9f24.svg │ │ │ └── themifyd41d.eot │ │ └── themify-icons.css │ └── weather-icons │ │ ├── css │ │ └── weather-icons.min.css │ │ └── fonts │ │ ├── weathericons-regular-webfont.eot │ │ ├── weathericons-regular-webfont.svg │ │ ├── weathericons-regular-webfont.ttf │ │ ├── weathericons-regular-webfont.woff │ │ └── weathericons-regular-webfont.woff2 ├── images │ ├── 1.png │ ├── 2.png │ ├── 3.jpg │ ├── 3.png │ ├── 4.jpg │ ├── 8.png │ ├── alert │ │ ├── alert.png │ │ ├── alert2.png │ │ ├── alert3.png │ │ ├── alert4.png │ │ ├── alert5.png │ │ ├── alert6.png │ │ ├── alert7.png │ │ ├── model.png │ │ ├── model2.png │ │ └── model3.png │ ├── attached-files │ │ ├── img-1.jpg │ │ ├── img-2.jpg │ │ └── img-3.jpg │ ├── avatar.png │ ├── avatar │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── usa-flag.png │ ├── background │ │ ├── error-bg.jpg │ │ ├── login-register.jpg │ │ ├── profile-bg.jpg │ │ ├── socialbg.jpg │ │ ├── user-bg.jpg │ │ └── user-info.jpg │ ├── bg.jpg │ ├── big │ │ ├── img1.jpg │ │ ├── img2.jpg │ │ ├── img3.jpg │ │ ├── img4.jpg │ │ ├── img5.jpg │ │ └── img6.jpg │ ├── bookingSystem │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ └── 8.png │ ├── browser │ │ ├── chrome-logo.png │ │ ├── firefox-logo.png │ │ ├── internet-logo.png │ │ ├── opera-logo.png │ │ └── safari-logo.png │ ├── c1.jpg │ ├── c2.jpg │ ├── c3.jpg │ ├── card │ │ ├── c1.jpg │ │ ├── c2.jpg │ │ ├── c3.jpg │ │ └── c4.jpg │ ├── chat-person-add.png │ ├── close.png │ ├── custom-select.png │ ├── favicon.png │ ├── fjords.jpg │ ├── gallery │ │ ├── chair.jpg │ │ ├── chair2.jpg │ │ ├── chair3.jpg │ │ └── chair4.jpg │ ├── github_mask.png │ ├── hand.jpg │ ├── lights.jpg │ ├── logo-text.png │ ├── logo.png │ ├── mask.png │ ├── maximize.png │ ├── minimize.png │ ├── nature.jpg │ ├── newyork.jpg │ ├── paris.jpg │ ├── paypal.png │ ├── picture.png │ ├── preview1.png │ ├── product-2.jpg │ ├── product.jpg │ ├── product_1 │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── burger.jpg │ │ ├── download.jpg │ │ ├── image-10.jpg │ │ ├── image-8-226x223.jpg │ │ ├── image-9.jpg │ │ ├── images.jpg │ │ └── pizza2.jpg │ ├── profile-bg.jpg │ ├── rangeSliderimg │ │ ├── sprite-skin-flat.png │ │ ├── sprite-skin-modern.png │ │ ├── sprite-skin-nice.png │ │ └── sprite-skin-simple.png │ ├── sanfran.jpg │ ├── scrollable │ │ └── view-1-1200x800.jpg │ ├── smile.png │ ├── tooltip │ │ └── Euclid.png │ ├── user-1.png │ ├── user-bg.jpg │ ├── user-female.png │ ├── user-profile.jpg │ ├── user.jpg │ ├── users │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ ├── avatar-1.jpg │ │ ├── avatar-2.jpg │ │ ├── avatar-3.jpg │ │ ├── avatar-4.jpg │ │ ├── avatar-5.jpg │ │ ├── avatar-6.jpg │ │ ├── avatar-7.jpg │ │ ├── avatar-8.jpg │ │ ├── avatar-9.jpg │ │ └── profile.png │ ├── video-cam.png │ └── watch.jpg └── js │ ├── app.min.js │ ├── custom.min.js │ ├── jquery.slimscroll.js │ ├── lib │ ├── barRating │ │ ├── barRating.init.js │ │ └── jquery.barrating.js │ ├── bootstrap │ │ ├── css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ └── popper.min.js │ ├── c3 │ │ ├── c3-init.js │ │ ├── c3.min.js │ │ └── d3.min.js │ ├── calendar-2 │ │ ├── moment.latest.min.js │ │ ├── pignose.calendar.min.js │ │ ├── pignose.init.js │ │ ├── prism.min.js │ │ └── semantic.ui.min.js │ ├── calendar │ │ ├── fullcalendar-init.js │ │ └── fullcalendar.min.js │ ├── chart-amchart │ │ ├── amchart-init.js │ │ ├── amcharts.js │ │ ├── ammap.js │ │ ├── amstock.js │ │ ├── export.min.js │ │ ├── light.js │ │ ├── pie.js │ │ ├── serial.js │ │ └── worldLow.js │ ├── chart-js │ │ ├── Chart.bundle.js │ │ └── chartjs-init.js │ ├── chartist │ │ ├── chartist-init.js │ │ ├── chartist-plugin-tooltip.min.js │ │ └── chartist.min.js │ ├── chat-widget │ │ └── chat-widget-init.js │ ├── circle-progress │ │ ├── circle-progress-init.js │ │ └── circle-progress.min.js │ ├── datamap │ │ ├── d3.min.js │ │ ├── datamap-init.js │ │ ├── datamaps.world.min.js │ │ └── topojson.js │ ├── datatables │ │ ├── cdn.datatables.net │ │ │ └── buttons │ │ │ │ └── 1.2.2 │ │ │ │ └── js │ │ │ │ ├── buttons.flash.min.js │ │ │ │ ├── buttons.html5.min.js │ │ │ │ ├── buttons.print.min.js │ │ │ │ └── dataTables.buttons.min.js │ │ ├── cdn.rawgit.com │ │ │ ├── bpampuch │ │ │ │ └── pdfmake │ │ │ │ │ └── 0.1.18 │ │ │ │ │ └── build │ │ │ │ │ ├── pdfmake.min.js │ │ │ │ │ └── vfs_fonts.js │ │ │ └── google │ │ │ │ └── code-prettify │ │ │ │ └── master │ │ │ │ └── loader │ │ │ │ └── run_prettify2102.js │ │ ├── cdnjs.cloudflare.com │ │ │ └── ajax │ │ │ │ └── libs │ │ │ │ ├── jqueryui-touch-punch │ │ │ │ └── 0.2.3 │ │ │ │ │ └── jquery.ui.touch-punch.min.js │ │ │ │ └── jszip │ │ │ │ └── 2.5.0 │ │ │ │ └── jszip.min.js │ │ ├── datatables-init.js │ │ └── datatables.min.js │ ├── datepicker │ │ └── bootstrap-datepicker.min.js │ ├── dropzone │ │ └── dropzone.js │ ├── easing │ │ ├── jquery.easing.min.js │ │ └── stepup-form-init.js │ ├── echart │ │ ├── dashboard1-init.js │ │ ├── echarts-init.js │ │ └── echarts.js │ ├── flot-chart │ │ ├── curvedLines.js │ │ ├── excanvas.min.js │ │ ├── flot-chart-init.js │ │ ├── flot-tooltip │ │ │ └── jquery.flot.tooltip.min.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.threshold.js │ │ └── jquery.flot.time.js │ ├── form-validation │ │ ├── jquery.validate-init.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ ├── gmap │ │ ├── gmap.init.js │ │ ├── gmapApi.js │ │ └── gmaps.js │ ├── google-chart │ │ ├── google-charts.init.js │ │ └── google-jsapi.js │ ├── granim │ │ ├── granim-init.js │ │ └── granim.min.js │ ├── highchart │ │ ├── highcharts-init.js │ │ ├── highcharts-modules-exporting.js │ │ ├── highcharts-more.js │ │ └── highcharts.js │ ├── html5-editor │ │ ├── bootstrap-wysihtml5.js │ │ ├── wysihtml5-0.3.0.js │ │ └── wysihtml5-init.js │ ├── jquery-ui │ │ ├── jquery-ui.min.js │ │ └── jquery.ui.touch-punch.min.js │ ├── jquery.nicescroll │ │ ├── jquery.nicescroll.js │ │ └── jquery.nicescroll.min.js │ ├── jquery │ │ └── jquery.min.js │ ├── jsgrid │ │ ├── db.js │ │ ├── fields │ │ │ ├── jsgrid.field.checkbox.js │ │ │ ├── jsgrid.field.control.js │ │ │ ├── jsgrid.field.number.js │ │ │ ├── jsgrid.field.select.js │ │ │ ├── jsgrid.field.text.js │ │ │ └── jsgrid.field.textarea.js │ │ ├── jsgrid-init.js │ │ ├── jsgrid.core.js │ │ ├── jsgrid.field.js │ │ ├── jsgrid.load-indicator.js │ │ ├── jsgrid.load-strategies.js │ │ ├── jsgrid.sort-strategies.js │ │ └── jsgrid.validation.js │ ├── justgage │ │ ├── justgage.init.js │ │ ├── justgage.js │ │ └── raphael-min.js │ ├── knob │ │ ├── jquery.knob.min.js │ │ └── knob.init.js │ ├── line-progress │ │ ├── jquery.lineProgressbar.js │ │ └── line-progress-init.js │ ├── menubar │ │ └── sidebar.js │ ├── metismenu │ │ ├── jquery.slimscroll.js │ │ ├── metismenu.init.js │ │ └── metismenu.min.js │ ├── moment │ │ └── moment.js │ ├── morris-chart │ │ ├── dashboard1-init.js │ │ ├── morris-init.js │ │ ├── morris.js │ │ └── raphael-min.js │ ├── nestable │ │ ├── jquery.nestable.js │ │ └── nestable.init.js │ ├── owl-carousel │ │ ├── owl.carousel-init.js │ │ └── owl.carousel.min.js │ ├── peitychart │ │ ├── jquery.peity.min.js │ │ └── peitychart.init.js │ ├── portlets │ │ ├── portlets-init.js │ │ └── portlets.js │ ├── preloader │ │ └── pace.min.js │ ├── rangeSlider │ │ ├── ion.rangeSlider.min.js │ │ ├── moment-with-locales.js │ │ ├── moment.js │ │ └── rangeslider.init.js │ ├── rating1 │ │ ├── jRate.init.js │ │ └── jRate.min.js │ ├── rickshaw │ │ ├── d3.layout.min.js │ │ ├── d3.min.js │ │ ├── rickshaw-init.js │ │ └── rickshaw.min.js │ ├── scrollable │ │ ├── holder.js │ │ ├── jquery-asScrollable.min.js │ │ ├── jquery-asScrollbar.js │ │ └── scrollable.init.js │ ├── select2 │ │ └── select2.full.min.js │ ├── sparklinechart │ │ ├── jquery.sparkline.min.js │ │ └── sparkline.init.js │ ├── sticky-kit-master │ │ └── dist │ │ │ └── sticky-kit.min.js │ ├── sweetalert │ │ ├── sweetalert.init.js │ │ └── sweetalert.min.js │ ├── toastr │ │ ├── toastr.init.js │ │ └── toastr.min.js │ ├── vector-map │ │ ├── country │ │ │ ├── jquery.vmap.algeria.js │ │ │ ├── jquery.vmap.argentina.js │ │ │ ├── jquery.vmap.brazil.js │ │ │ ├── jquery.vmap.europe.js │ │ │ ├── jquery.vmap.france.js │ │ │ ├── jquery.vmap.germany.js │ │ │ ├── jquery.vmap.greece.js │ │ │ ├── jquery.vmap.iran.js │ │ │ ├── jquery.vmap.iraq.js │ │ │ ├── jquery.vmap.russia.js │ │ │ ├── jquery.vmap.tunisia.js │ │ │ ├── jquery.vmap.turkey.js │ │ │ ├── jquery.vmap.usa.js │ │ │ └── jquery.vmap.world.js │ │ ├── jquery.vmap.js │ │ ├── jquery.vmap.min.js │ │ ├── jquery.vmap.sampledata.js │ │ └── vector.init.js │ └── weather │ │ ├── jquery.simpleWeather.min.js │ │ └── weather-init.js │ ├── scripts.js │ ├── search.js │ └── sidebarmenu.js ├── templates ├── 404.html ├── home.html └── index.html └── visualize ├── __init__.py ├── admin.py ├── apps.py ├── migrations └── __init__.py ├── models.py ├── templatetags ├── __init__.py └── date_filter.py ├── tests.py ├── urls.py ├── usecases ├── __init__.py ├── analysis.py ├── generate_wordcloud.py ├── get_user_commits.py ├── get_user_info.py ├── get_user_ranking.py └── get_users_repository_info.py ├── utils ├── __init__.py └── api.py └── views.py /.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | *.pyc 3 | db.sqlite3 4 | static/images 5 | -------------------------------------------------------------------------------- /alize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/alize/__init__.py -------------------------------------------------------------------------------- /alize/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.conf import settings 3 | from django.conf.urls.static import static 4 | from django.conf.urls import url, include 5 | 6 | from visualize.views import HomeView 7 | 8 | urlpatterns = [ 9 | url(r'^$', HomeView.as_view(), name='home'), 10 | url('^admin/', admin.site.urls), 11 | url('/', include('visualize.urls')), 12 | ] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) 13 | -------------------------------------------------------------------------------- /alize/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for alize project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "alize.settings") 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import sys 4 | 5 | if __name__ == "__main__": 6 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "alize.settings") 7 | 8 | from django.core.management import execute_from_command_line 9 | 10 | execute_from_command_line(sys.argv) 11 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | appnope==0.1.0 2 | backcall==0.1.0 3 | backports.functools-lru-cache==1.5 4 | certifi==2018.4.16 5 | chardet==3.0.4 6 | cycler==0.10.0 7 | decorator==4.3.0 8 | Django==1.11 9 | django-redis==4.9.0 10 | enum34==1.1.6 11 | idna==2.6 12 | ipython-genutils==0.2.0 13 | jedi==0.12.0 14 | kiwisolver==1.0.1 15 | matplotlib==2.2.2 16 | netifaces==0.10.6 17 | numpy==1.14.3 18 | parso==0.2.0 19 | pathlib2==2.3.2 20 | pexpect==4.5.0 21 | pickleshare==0.7.4 22 | Pillow==5.1.0 23 | prompt-toolkit==1.0.15 24 | ptyprocess==0.5.2 25 | Pygments==2.2.0 26 | pyparsing==2.2.0 27 | python-dateutil==2.7.2 28 | pytz==2018.4 29 | redis==2.10.6 30 | requests==2.18.4 31 | scandir==1.7 32 | simplegeneric==0.8.1 33 | six==1.11.0 34 | subprocess32==3.2.7 35 | traitlets==4.3.2 36 | urllib3==1.22 37 | wcwidth==0.1.7 38 | wordcloud==1.4.1 39 | -------------------------------------------------------------------------------- /screen_shots/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/screen_shots/0.png -------------------------------------------------------------------------------- /screen_shots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/screen_shots/1.png -------------------------------------------------------------------------------- /screen_shots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/screen_shots/2.png -------------------------------------------------------------------------------- /screen_shots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/screen_shots/3.png -------------------------------------------------------------------------------- /screen_shots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/screen_shots/4.png -------------------------------------------------------------------------------- /screen_shots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/screen_shots/5.png -------------------------------------------------------------------------------- /screen_shots/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/screen_shots/demo.gif -------------------------------------------------------------------------------- /screen_shots/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/screen_shots/logo.png -------------------------------------------------------------------------------- /screen_shots/wordcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/screen_shots/wordcloud.png -------------------------------------------------------------------------------- /static/css/404.css: -------------------------------------------------------------------------------- 1 | /* Styles of the 404 page of my website. */ 2 | 3 | body { 4 | background: #081421; 5 | color: #d3d7de; 6 | font-family: "Courier new"; 7 | font-size: 18px; 8 | line-height: 1.5em; 9 | cursor: default; 10 | } 11 | 12 | .code-area { 13 | position: absolute; 14 |   width: 320px; 15 | min-width: 320px; 16 | top: 50%; 17 | left: 50%; 18 | -webkit-transform: translate(-50%, -50%); 19 | transform: translate(-50%, -50%); 20 | } 21 | 22 | .code-area > span { 23 | display: block; 24 | } 25 | 26 | @media screen and (max-width: 320px) { 27 | .code-area { 28 | font-size: 5vw; 29 | min-width: auto; 30 | width: 95%; 31 | margin: auto; 32 | padding: 5px; 33 | padding-left: 10px; 34 | line-height: 6.5vw; 35 | } 36 | } 37 | 38 | -------------------------------------------------------------------------------- /static/css/less/advance-widget.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .media-text-right { 4 | text-align: right; 5 | } 6 | 7 | .media-text-left { 8 | text-align: left; 9 | } 10 | 11 | .boxshadow-none { 12 | box-shadow: none; 13 | } 14 | 15 | .progress-sm { 16 | height: 8px; 17 | } 18 | 19 | .bg-warning-dark { 20 | background: @warning-dark; 21 | } 22 | 23 | .bg-info-dark { 24 | background: @info-dark; 25 | } 26 | 27 | .bg-danger-dark { 28 | background: @danger-dark; 29 | } 30 | 31 | .bg-success-dark { 32 | background: @success-dark; 33 | } 34 | 35 | .bg-primary-dark { 36 | background: @primary-dark; 37 | } 38 | 39 | .widget-card-circle { 40 | i { 41 | font-size: 30px; 42 | left: 0; 43 | line-height: 97px; 44 | right: 0; 45 | text-align: center; 46 | } 47 | } 48 | 49 | .widget-line-list { 50 | li { 51 | display: inline-block; 52 | font-size: 1.2em; 53 | line-height: 27px; 54 | padding: 5px 20px 0 15px; 55 | 56 | span { 57 | font-size: 14px; 58 | } 59 | } 60 | } -------------------------------------------------------------------------------- /static/css/less/booking-system.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | .booking-system-feedback { 3 | top: 5px !important; 4 | right: 15px; 5 | } 6 | .booking-system-top { 7 | padding-top: 15px; 8 | } 9 | .media { 10 | // padding-top: 20px; 11 | } 12 | .media-body { 13 | // padding-top: 9px; 14 | vertical-align: middle; 15 | span { 16 | font-size: 10px; 17 | color: @primary; 18 | } 19 | p { 20 | color: @text-light; 21 | line-height: 15px; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /static/css/less/breadcrumb.less: -------------------------------------------------------------------------------- 1 | .breadcrumb { 2 | margin-bottom: 0; 3 | } 4 | 5 | .page-titles { 6 | background: #ffffff; 7 | margin: 0 0 30px; 8 | padding: 15px 10px; 9 | position: relative; 10 | z-index: 10; 11 | -webkit-box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1); 12 | box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1); 13 | 14 | h3 { 15 | margin-bottom: 0; 16 | margin-top: 0; 17 | } 18 | 19 | .breadcrumb { 20 | padding: 0; 21 | background: transparent; 22 | font-size: 14px; 23 | 24 | li { 25 | margin-top: 0; 26 | margin-bottom: 0; 27 | } 28 | 29 | .breadcrumb-item+.breadcrumb-item { 30 | &:before { 31 | content: "\e649"; 32 | font-family: themify; 33 | color: #a6b7bf; 34 | font-size: 11px; 35 | } 36 | } 37 | 38 | .breadcrumb-item.active { 39 | color: #99abb4; 40 | } 41 | } 42 | } -------------------------------------------------------------------------------- /static/css/less/carousel.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .testimonial-widget-one { 4 | // background: @pink; 5 | .testimonial-content { 6 | text-align: center; 7 | } 8 | 9 | .testimonial-text { 10 | margin-bottom: 15px; 11 | } 12 | 13 | .testimonial-author-position { 14 | font-family: @mol; 15 | position: relative; 16 | top: -5px; 17 | margin-top: 5px; 18 | text-align: center; 19 | font-size: 12px; 20 | } 21 | 22 | .testimonial-author { 23 | padding-top: 15px; 24 | // margin-right: 75px; 25 | position: relative; 26 | top: -5px; 27 | font-weight: 600; 28 | color: @white; 29 | text-align: center; 30 | } 31 | 32 | .testimonial-author-img { 33 | border-radius: 100px; 34 | height: 50px !important; 35 | width: 50px !important; 36 | margin: 0 auto; 37 | } 38 | } -------------------------------------------------------------------------------- /static/css/less/chart.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | .cpu-load { 3 | width: 100%; 4 | height: 272px; 5 | font-size: 14px; 6 | line-height: 1.2em; 7 | } 8 | 9 | .cpu-load-data-content { 10 | font-size: 18px; 11 | font-weight: 400; 12 | line-height: 40px; 13 | } 14 | 15 | .cpu-load-data { 16 | margin-bottom: 30px; 17 | li { 18 | display: inline-block; 19 | width: 32.5%; 20 | text-align: center; 21 | border-right: 1px solid @border; 22 | &:last-child{ 23 | border-right: 0px; 24 | } 25 | } 26 | } 27 | 28 | 29 | #barChart{ 30 | height: 400px!important; 31 | } -------------------------------------------------------------------------------- /static/css/less/datamap.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | 5 | 6 | .datamap-sales-hover-tooltip{ 7 | background: @dark; 8 | font-family: @mol; 9 | padding: 5px 10px; 10 | color: @white; 11 | font-weight: 400; 12 | font-size: 12px; 13 | text-transform: capitalize; 14 | border-radius: 3px; 15 | } 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /static/css/less/error.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .error-box { 4 | height: 100%; 5 | position: fixed; 6 | width: 100%; 7 | } 8 | 9 | .error-box .footer { 10 | left: 0; 11 | right: 0; 12 | width: 100%; 13 | } 14 | 15 | .error-body { 16 | left: 0; 17 | position: absolute; 18 | right: 0; 19 | top: 50%; 20 | transform: translateY(-50%); 21 | } 22 | 23 | .error-body h1 { 24 | font-size: 150px; 25 | font-weight: 900; 26 | line-height: 210px; 27 | color: @dark; 28 | } -------------------------------------------------------------------------------- /static/css/less/favourite_menu.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | .favourite-menu-details{ 5 | .table>tbody>tr>td{ 6 | border-top: none; 7 | border-bottom: 1px solid @border; 8 | } 9 | .favourite-menu-img{ 10 | border-right: 1px solid @border; 11 | margin-bottom: 25px; 12 | width: 120px; 13 | } 14 | 15 | .favourite-menu-des{ 16 | margin-top: 40px; 17 | margin-right: 465px; 18 | 19 | .product_name{ 20 | h4{ 21 | font-weight: 600; 22 | text-align: left; 23 | } 24 | } 25 | } 26 | 27 | 28 | 29 | .favourite-menu-button{ 30 | margin-top: 40px; 31 | .prdt_add_to_curt{ 32 | padding-top: 10px; 33 | button{ 34 | font-size: 11px; 35 | text-transform: uppercase; 36 | font-weight: 600; 37 | } 38 | } 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /static/css/less/flot-chart.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .flotTip { 4 | background: @black; 5 | border: 1px solid @black; 6 | padding: 5px 15px; 7 | color: @white; 8 | } 9 | 10 | .flot-container { 11 | box-sizing: border-box; 12 | width: 100%; 13 | height: 275px; 14 | padding: 20px 15px 15px; 15 | margin: 15px auto 30px; 16 | background: transparent; 17 | } 18 | 19 | .flot-pie-container { 20 | height: 275px; 21 | } 22 | 23 | .flotBar-container { 24 | height: 275px; 25 | } 26 | 27 | .flot-line { 28 | width: 100%; 29 | height: 100%; 30 | font-size: 14px; 31 | line-height: 1.2em; 32 | } 33 | 34 | .legend table { 35 | border-spacing: 5px; 36 | } 37 | 38 | #chart1, 39 | #flotBar, 40 | #flotCurve { 41 | width: 100%; 42 | height: 275px; 43 | } 44 | 45 | .cpu-load { 46 | height: 345px; 47 | } -------------------------------------------------------------------------------- /static/css/less/font.less: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css?family=Open+Sans:300i,400,600,700,800'); 2 | @import url(../icons/font-awesome/css/font-awesome.min.css); 3 | @import url(../icons/simple-line-icons/css/simple-line-icons.css); 4 | @import url(../icons/weather-icons/css/weather-icons.min.css); 5 | @import url(../icons/linea-icons/linea.css); 6 | @import url(../icons/themify-icons/themify-icons.css); 7 | @import url(../icons/flag-icon-css/flag-icon.min.css); 8 | @import url(../icons/material-design-iconic-font/css/materialdesignicons.min.css); 9 | @import url(spinners.css); 10 | @import url(animate.css); -------------------------------------------------------------------------------- /static/css/less/fonts.less: -------------------------------------------------------------------------------- 1 | // @import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700'); 2 | /*----------------font-------------------*/ 3 | @font-face { 4 | font-family: 'MontserratLight'; 5 | src: url("../fonts/MontserratLight.eot"); 6 | src: url("../fonts/MontserratLight.eot") format('embedded-opentype'), url("../fonts/MontserratLight.woff2") format('woff2'), url("../fonts/MontserratLight.woff") format('woff'), url("../fonts/MontserratLight.ttf") format('truetype'), url("../fonts/MontserratLight.svg#MontserratLight") format('svg'); 7 | } 8 | @font-face { 9 | font-family: 'Glyphicons Halflings'; 10 | src: url("../fonts/glyphicons-halflings-regular.eot"); 11 | src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format('embedded-opentype'), url("../fonts/glyphicons-halflings-regular.woff") format('woff'), url("../fonts/glyphicons-halflings-regular.ttf") format('truetype'), url("../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular") format('svg'); 12 | } 13 | 14 | .icon-name { 15 | color: #000; 16 | } 17 | /* Opensans 18 | --------------- */ 19 | @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,500,600,700,800'); 20 | @import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900'); -------------------------------------------------------------------------------- /static/css/less/footer.less: -------------------------------------------------------------------------------- 1 | .footer { 2 | background: #ffffff none repeat scroll 0 0; 3 | border-top: 1px solid rgba(120, 130, 140, 0.13); 4 | // bottom: 0; 5 | color: #67757c; 6 | left: 0; 7 | padding: 17px 15px; 8 | position: absolute; 9 | right: 0; 10 | } 11 | 12 | .footer { 13 | left: 240px; 14 | } -------------------------------------------------------------------------------- /static/css/less/form-validation.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | .is-invalid { 5 | .form-control { 6 | border-color: @danger; 7 | } 8 | } 9 | 10 | .invalid-feedback { 11 | color: #ef5350; 12 | display: none; 13 | margin-top: 0.25rem; 14 | } 15 | 16 | .is-invalid .invalid-feedback, 17 | .is-invalid .invalid-tooltip { 18 | display: block; 19 | } -------------------------------------------------------------------------------- /static/css/less/gmap.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .map { 4 | width: 100%; 5 | height: 400px; 6 | } -------------------------------------------------------------------------------- /static/css/less/knob.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | .superpose { 3 | color: #EEE; 4 | height: 350px; 5 | width: 100% 6 | } 7 | 8 | .superclock { 9 | position: relative; 10 | width: 300px; 11 | margin: auto 12 | } 13 | 14 | .superclock1{ 15 | position:absolute;left:10px;top:10px 16 | } 17 | 18 | .superclock2{ 19 | position:absolute;left:60px;top:60px 20 | } 21 | 22 | .superclock3{ 23 | position:absolute;left:110px;top:110px 24 | } 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /static/css/less/mixins.less: -------------------------------------------------------------------------------- 1 | /* transitions 2 | ------------------*/ 3 | .t5s{ 4 | -webkit-transition: all 0.5s ease-in-out 0s; 5 | -moz-transition: all 0.5s ease-in-out 0s; 6 | -o-transition: all 0.5s ease-in-out 0s; 7 | -ms-transition: all 0.5s ease-in-out 0s; 8 | transition: all 0.5s ease-in-out 0s; 9 | } 10 | 11 | -------------------------------------------------------------------------------- /static/css/less/modal.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | .modal-dialog { 3 | margin: 30px auto; 4 | position: relative; 5 | top: 50%; 6 | transform: translateY(-50%) !important; 7 | width: 70%; 8 | } 9 | 10 | .modal-header { 11 | .close { 12 | font-size: 14px; 13 | margin-right: 15px; 14 | margin-top: 5px; 15 | } 16 | } 17 | 18 | .modal-content { 19 | border-radius: 3px; 20 | } -------------------------------------------------------------------------------- /static/css/less/morris-chart.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .morris-hover { 4 | position: absolute; 5 | z-index: 1; 6 | } 7 | 8 | .morris-hover.morris-default-style .morris-hover-row-label { 9 | font-weight: bold; 10 | margin: 0.25em 0; 11 | } 12 | 13 | .morris-hover.morris-default-style .morris-hover-point { 14 | white-space: nowrap; 15 | margin: 0.1em 0; 16 | } 17 | 18 | .morris-hover.morris-default-style { 19 | border-radius: 2px; 20 | padding: 10px 12px; 21 | color: #666; 22 | background: rgba(0, 0, 0, 0.7); 23 | border: none; 24 | color: #fff!important; 25 | } 26 | 27 | .morris-hover-point { 28 | color: rgba(257, 257, 257, 0.8)!important; 29 | } 30 | 31 | #morris-bar-chart, 32 | #morris-line-chart { 33 | height: 300px; 34 | } -------------------------------------------------------------------------------- /static/css/less/nestable.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .nestable-cart{ 4 | overflow: hidden; 5 | } 6 | 7 | 8 | .dd-handle, .dd3-content { 9 | color: #000!important; 10 | } 11 | 12 | -------------------------------------------------------------------------------- /static/css/less/order-list.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | .order-list-item { 3 | table { 4 | tbody>tr>td { 5 | padding-top: 8px; 6 | border-top: 1px solid @border; 7 | } 8 | thead>tr>th { 9 | border-bottom: 1px solid @border; 10 | } 11 | } 12 | thead { 13 | background: @primary; 14 | text-align: left; 15 | th { 16 | color: @white; 17 | font-weight: bold; 18 | } 19 | } 20 | tbody { 21 | background: @white; 22 | text-align: left; 23 | td { 24 | color: #444444; 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /static/css/less/order-progress.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | .current-progress { 5 | margin-top: 15px; 6 | } 7 | 8 | 9 | 10 | .progress-content { 11 | margin-bottom: 20px; 12 | } 13 | 14 | .progress-content { 15 | &:last-child{ 16 | margin-bottom: 0px; 17 | } 18 | 19 | } 20 | 21 | 22 | .current-progressbar{ 23 | margin-top: 3px; 24 | .progress{ 25 | height: 15px; 26 | margin: 0px; 27 | box-shadow: none; 28 | } 29 | .progress-bar{ 30 | box-shadow: 0px; 31 | line-height: 14px; 32 | font-size: 11px; 33 | box-shadow: none; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /static/css/less/products_2.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | .product-2-details{ 5 | .table>tbody>tr>td{ 6 | border: none; 7 | } 8 | .product-2-img{ } 9 | 10 | .product-2-des{ 11 | margin-top: 25px; 12 | .product_name{ 13 | h4{ 14 | font-size: 15px; 15 | font-weight: 600; 16 | } 17 | } 18 | .product_des{ 19 | p{ 20 | font-size: 13px; 21 | font-style: italic; 22 | } 23 | } 24 | } 25 | 26 | 27 | 28 | .product-2-button{ 29 | border-left: 1px solid @border; 30 | margin-top: 25px; 31 | .prdt_add_to_curt{ 32 | padding-top: 10px; 33 | button{ 34 | font-size: 11px; 35 | text-transform: uppercase; 36 | font-weight: 600; 37 | } 38 | } 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /static/css/less/products_3.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .product-3-img{ 4 | img{ 5 | width: 100%; 6 | } 7 | } 8 | 9 | .product_details_3{ 10 | padding: 15px 0px; 11 | .product_name{ 12 | h4{ 13 | font-size: 15px; 14 | font-weight: 600; 15 | } 16 | } 17 | .product_des{ 18 | padding-bottom: 5px; 19 | p{ 20 | // font-size: 11px; 21 | // font-style: italic; 22 | } 23 | } 24 | 25 | .prdt_add_to_curt{ 26 | padding-top: 10px; 27 | button{ 28 | // font-size: 11px; 29 | text-transform: uppercase; 30 | font-weight: 600; 31 | } 32 | } 33 | } -------------------------------------------------------------------------------- /static/css/less/recent-comments.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | .recent-comment { 3 | .media { 4 | border-bottom: 1px solid @border; 5 | padding-bottom: 10px; 6 | padding-top: 10px; 7 | } 8 | .media-left { 9 | padding-right: 25px; 10 | img { 11 | border-radius: 100px; 12 | width: 40px; 13 | } 14 | } 15 | .media-body { 16 | position: relative; 17 | h4 { 18 | font-size: 16px; 19 | margin-bottom: 10px; 20 | } 21 | p { 22 | margin-bottom: 10px; 23 | line-height: 16px; 24 | color: @text-light; 25 | } 26 | } 27 | .comment-date { 28 | position: absolute; 29 | right: 0; 30 | top: 0; 31 | color: @text; 32 | font-family: @mol; 33 | font-size: 12px; 34 | } 35 | } 36 | .comment-action { 37 | float: left; 38 | .badge { 39 | text-transform: uppercase; 40 | font-family: @mol; 41 | } 42 | i { 43 | padding: 0 5px; 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /static/css/less/recent-message.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .recent-meaasge { 4 | margin-top: 15px; 5 | 6 | .media { 7 | border-bottom: 1px solid @border; 8 | padding-top: 10px; 9 | padding-bottom: 10px; 10 | } 11 | 12 | .media-left { 13 | padding-right: 25px; 14 | 15 | img { 16 | border-radius: 100px; 17 | width: 50px; 18 | } 19 | } 20 | 21 | .media-body { 22 | position: relative; 23 | 24 | h4 { 25 | font-size: 16px; 26 | } 27 | 28 | p { 29 | margin-top: 10px; 30 | margin-bottom: 10px; 31 | } 32 | } 33 | } 34 | 35 | .meaasge-date { 36 | float: right; 37 | color: @text; // font-family: @mol; 38 | position: absolute; 39 | right: 0; 40 | top: 0; 41 | font-size: 12px; 42 | } -------------------------------------------------------------------------------- /static/css/less/scrollable.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | .example { 3 | overflow: hidden; 4 | border: 1px solid @border; 5 | -webkit-box-shadow: 1px 1px 2px 0px rgba(200, 200, 200, 0.3); 6 | -moz-box-shadow: 1px 1px 2px 0px rgba(200, 200, 200, 0.3); 7 | box-shadow: 1px 1px 2px 0px rgba(200, 200, 200, 0.3); 8 | background-color: @white-light; 9 | text-align: justify; 10 | p { 11 | padding: 20px 20px 0px 20px; 12 | font-size: 12px; 13 | } 14 | } 15 | 16 | .box, 17 | .simple { 18 | height: 300px; 19 | } 20 | 21 | .scrollable-auto-x{ 22 | overflow-x: auto; overflow-y: hidden 23 | } 24 | 25 | .scrollable-auto-y{ 26 | overflow-y: auto; overflow-x: hidden 27 | } 28 | 29 | .scrollable-auto{ 30 | overflow: auto 31 | } -------------------------------------------------------------------------------- /static/css/less/search.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .header-search { 4 | float: right; 5 | margin-left: 15px; 6 | position: relative; 7 | 8 | .form-control { 9 | height: 36px; 10 | width: 250px; 11 | border-radius: 5px; 12 | font-size: 14px; 13 | } 14 | 15 | i { 16 | position: absolute; 17 | right: 5px; 18 | top: 5px; 19 | cursor: pointer; 20 | height: 30px; 21 | padding: 5px; 22 | width: 30px; 23 | } 24 | } -------------------------------------------------------------------------------- /static/css/less/social-media-stats.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | .media-stats-content{ 5 | // margin-top: 15px; 6 | .stats-content{ 7 | padding: 30px 0px; 8 | .stats-digit{ 9 | font-size: 24px; 10 | font-weight: 300; 11 | margin-bottom: 10px; 12 | } 13 | .stats-text{ 14 | font-size: 14px; 15 | } 16 | .table{ 17 | td{ 18 | line-height: 40px!important; 19 | } 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /static/css/less/table-export.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | @media (max-width: 667px) { 5 | .dt-buttons{ 6 | margin-left: 10px; 7 | } 8 | 9 | } 10 | @media (max-width: 480px) { 11 | .dt-buttons{ 12 | display: inline-block; 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /static/css/less/ui-user-card.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | 4 | 5 | .height-150{ 6 | height: 150px; 7 | } 8 | 9 | .social-connect { 10 | 11 | ul{ 12 | li{ 13 | display: inline-block; 14 | a{ 15 | display: inline-block; 16 | margin: 0 5px; 17 | padding: 12px 15px; 18 | border-radius: 4px; 19 | } 20 | } 21 | } 22 | } 23 | .user-card-absolute { 24 | top: 115px; 25 | left: 0; 26 | right: 0; 27 | } 28 | .box-shadow { 29 | box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); 30 | } 31 | .social-pad{ 32 | padding: 40px 30px 110px; 33 | } 34 | .round-img{ 35 | img{ 36 | border-radius: 100px; 37 | } 38 | } -------------------------------------------------------------------------------- /static/css/less/variable.less: -------------------------------------------------------------------------------- 1 | /* Font Variable 2 | ----------------------*/ 3 | // @mont:'Montserrat', sans-serif; 4 | // @mol:'MontserratLight', sans-serif; 5 | @mont: 'Poppins', sans-serif; 6 | @mol: 'Poppins', sans-serif; /* Color Variable 7 | -----------------------*/ 8 | @primary: #4680ff; 9 | @success: #26DAD2; //03A9F5 10 | @info: #62d1f3; 11 | @danger: #fc6180; 12 | @warning: #ffb64d; 13 | @pink: #e6a1f2; 14 | @dark: #444C67; 15 | @default: #878787; 16 | @text: #455a64; 17 | @text-light: #99abb4; 18 | @border: #e4e7ec; 19 | @deep: #aaa; 20 | @ash: #f5f5f5; 21 | @warning-dark: #e7b63a; 22 | @success-dark: #2ed3aa; 23 | @info-dark: #8b67c9; 24 | @danger-dark: #e63327; 25 | @primary-dark: #0095e1; /* Solid Color 26 | ------------------*/ 27 | @white: #fff; 28 | @white-light: #eef5f9; 29 | @black: #252525; 30 | @border: #e7e7e7; /* Brand color 31 | ----------------------*/ 32 | @facebook: #3b5998; 33 | @twitter: #1da1f2; 34 | @youtube: #cd201f; 35 | @google-plus: #dd4b39; 36 | @linkedin: #007bb6; -------------------------------------------------------------------------------- /static/css/less/vector-map.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .vmap{ 4 | width: 100%; 5 | height: 400px; 6 | } 7 | -------------------------------------------------------------------------------- /static/css/less/weather.less: -------------------------------------------------------------------------------- 1 | @import "variable.less"; // Variable.less 2 | 3 | .weather-one { 4 | // background: @primary; 5 | i { 6 | font-size: 100px; 7 | position: relative; 8 | top: 5px; 9 | color: @white; 10 | } 11 | 12 | h2 { 13 | display: inline-block; 14 | float: right; 15 | font-size: 48px; 16 | color: @white; 17 | } 18 | 19 | .city { 20 | position: relative; 21 | text-align: right; 22 | top: -25px; 23 | } 24 | 25 | .currently { 26 | font-size: 16px; 27 | font-weight: 400; 28 | position: relative; 29 | top: 25px; 30 | } 31 | 32 | .celcious { 33 | text-align: right; 34 | font-size: 20px; 35 | color: @white; 36 | } 37 | } -------------------------------------------------------------------------------- /static/css/lib/line-progress/jquery.lineProgressbar.css: -------------------------------------------------------------------------------- 1 | /** Progressbar class css*/ 2 | .progressbar { 3 | width: 100%; 4 | margin-top: 5px; 5 | margin-bottom: 9.5px; 6 | position: relative; 7 | background-color: #eef1f6; 8 | box-shadow: inset 0px 1px 1px rgba(0,0,0,.1); 9 | } 10 | 11 | .proggress{ 12 | height: 8px; 13 | width: 10px; 14 | background-color: #3498db; 15 | } 16 | 17 | .percentCount{ 18 | float:right; 19 | margin-top: 10px; 20 | clear: both; 21 | font-weight: bold; 22 | font-family: Arial 23 | } -------------------------------------------------------------------------------- /static/css/lib/owl.theme.default.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.2.0 3 | * Copyright 2013-2016 David Deutsch 4 | * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE) 5 | */ 6 | .owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791} -------------------------------------------------------------------------------- /static/css/lib/preloader/pace.css: -------------------------------------------------------------------------------- 1 | .pace { 2 | -webkit-pointer-events: none; 3 | pointer-events: none; 4 | 5 | -webkit-user-select: none; 6 | -moz-user-select: none; 7 | user-select: none; 8 | } 9 | 10 | .pace-inactive { 11 | display: none; 12 | } 13 | 14 | .pace .pace-progress { 15 | background: #2299dd; 16 | position: fixed; 17 | z-index: 2000; 18 | top: 0; 19 | right: 100%; 20 | width: 100%; 21 | height: 2px; 22 | } -------------------------------------------------------------------------------- /static/css/lib/vector-map/jqvmap.min.css: -------------------------------------------------------------------------------- 1 | .jqvmap-label, 2 | .jqvmap-pin { 3 | pointer-events: none 4 | } 5 | .jqvmap-label { 6 | position: absolute; 7 | display: none; 8 | -webkit-border-radius: 3px; 9 | -moz-border-radius: 3px; 10 | border-radius: 3px; 11 | background: #292929; 12 | color: #fff; 13 | font-family: sans-serif, Verdana; 14 | font-size: smaller; 15 | padding: 3px 16 | } 17 | .jqvmap-zoomin, 18 | .jqvmap-zoomout { 19 | position: absolute; 20 | left: 10px; 21 | -webkit-border-radius: 3px; 22 | -moz-border-radius: 3px; 23 | border-radius: 3px; 24 | background: #000; 25 | padding: 3px; 26 | color: #fff; 27 | width: 15px; 28 | height: 15px; 29 | cursor: pointer; 30 | line-height: 10px; 31 | text-align: center 32 | } 33 | .jqvmap-zoomin { 34 | top: 10px 35 | } 36 | .jqvmap-zoomout { 37 | top: 30px 38 | } 39 | .jqvmap-region { 40 | cursor: pointer 41 | } 42 | .jqvmap-ajax_response { 43 | width: 100%; 44 | height: 500px 45 | } -------------------------------------------------------------------------------- /static/fonts/CabinSketch-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/fonts/CabinSketch-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/roboto.thin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/fonts/roboto.thin-italic.ttf -------------------------------------------------------------------------------- /static/fonts/roboto.thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/fonts/roboto.thin.ttf -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ax.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/az.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/bb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/bh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/bi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/bj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/bo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/bs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/bv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ca.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/cf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/cl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/cm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/cn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Flag of the People's Republic of China 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/cu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/cw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/dj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/eh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/fm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/fo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/gb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ge.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/gg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/gm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/gr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/gw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/gy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/hn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/il.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/in.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/is.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/jo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/jp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/km.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/kn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/kp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/kw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/la.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/lc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/lr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ly.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/mh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/mm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/mn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/mr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/na.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/nc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/nr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/pa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/pe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/pk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/pr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ps.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/pw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/rw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/sb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/sc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/sd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/se.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/sg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/sn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/so.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Flag of South Sudan 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/st.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/sy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/tf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/tg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/tk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/tn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/to.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/tw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/tz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/vc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ve.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/vn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ws.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/icons/flag-icon-css/flags/za.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /static/icons/font-awesome/fonts/fontawesome-webfont3e6e.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/font-awesome/fonts/fontawesome-webfont3e6e.eot -------------------------------------------------------------------------------- /static/icons/font-awesome/fonts/fontawesome-webfont3e6e.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/font-awesome/fonts/fontawesome-webfont3e6e.ttf -------------------------------------------------------------------------------- /static/icons/font-awesome/fonts/fontawesome-webfont3e6e.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/font-awesome/fonts/fontawesome-webfont3e6e.woff -------------------------------------------------------------------------------- /static/icons/font-awesome/fonts/fontawesome-webfont3e6e.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/font-awesome/fonts/fontawesome-webfont3e6e.woff2 -------------------------------------------------------------------------------- /static/icons/font-awesome/fonts/fontawesome-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/font-awesome/fonts/fontawesome-webfontd41d.eot -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-arrows-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-arrows-10.eot -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-arrows-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-arrows-10.ttf -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-arrows-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-arrows-10.woff -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-arrows-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-arrows-10d41d.eot -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-basic-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-basic-10.eot -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-basic-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-basic-10.ttf -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-basic-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-basic-10.woff -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-basic-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-basic-10d41d.eot -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-basic-elaboration-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-basic-elaboration-10.eot -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-basic-elaboration-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-basic-elaboration-10.ttf -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-basic-elaboration-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-basic-elaboration-10.woff -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-basic-elaboration-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-basic-elaboration-10d41d.eot -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-ecommerce-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-ecommerce-10.eot -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-ecommerce-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-ecommerce-10.ttf -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-ecommerce-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-ecommerce-10.woff -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-ecommerce-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-ecommerce-10d41d.eot -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-music-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-music-10.eot -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-music-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-music-10.ttf -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-music-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-music-10.woff -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-music-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-music-10d41d.eot -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-software-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-software-10.eot -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-software-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-software-10.ttf -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-software-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-software-10.woff -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-software-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-software-10d41d.eot -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-weather-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-weather-10.eot -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-weather-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-weather-10.ttf -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-weather-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-weather-10.woff -------------------------------------------------------------------------------- /static/icons/linea-icons/fonts/linea-weather-10d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/linea-icons/fonts/linea-weather-10d41d.eot -------------------------------------------------------------------------------- /static/icons/material-design-iconic-font/fonts/materialdesignicons-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/material-design-iconic-font/fonts/materialdesignicons-webfontd41d.eot -------------------------------------------------------------------------------- /static/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.eot -------------------------------------------------------------------------------- /static/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.ttf -------------------------------------------------------------------------------- /static/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.woff -------------------------------------------------------------------------------- /static/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/material-design-iconic-font/fonts/materialdesignicons-webfontdc99.woff2 -------------------------------------------------------------------------------- /static/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.eot -------------------------------------------------------------------------------- /static/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.ttf -------------------------------------------------------------------------------- /static/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.woff -------------------------------------------------------------------------------- /static/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.woff2 -------------------------------------------------------------------------------- /static/icons/simple-line-icons/fonts/Simple-Line-Iconsd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/simple-line-icons/fonts/Simple-Line-Iconsd41d.eot -------------------------------------------------------------------------------- /static/icons/themify-icons/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/themify-icons/fonts/themify.ttf -------------------------------------------------------------------------------- /static/icons/themify-icons/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/themify-icons/fonts/themify.woff -------------------------------------------------------------------------------- /static/icons/themify-icons/fonts/themify9f24.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/themify-icons/fonts/themify9f24.eot -------------------------------------------------------------------------------- /static/icons/themify-icons/fonts/themifyd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/themify-icons/fonts/themifyd41d.eot -------------------------------------------------------------------------------- /static/icons/weather-icons/fonts/weathericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/weather-icons/fonts/weathericons-regular-webfont.eot -------------------------------------------------------------------------------- /static/icons/weather-icons/fonts/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/weather-icons/fonts/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /static/icons/weather-icons/fonts/weathericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/weather-icons/fonts/weathericons-regular-webfont.woff -------------------------------------------------------------------------------- /static/icons/weather-icons/fonts/weathericons-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/icons/weather-icons/fonts/weathericons-regular-webfont.woff2 -------------------------------------------------------------------------------- /static/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/1.png -------------------------------------------------------------------------------- /static/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/2.png -------------------------------------------------------------------------------- /static/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/3.jpg -------------------------------------------------------------------------------- /static/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/3.png -------------------------------------------------------------------------------- /static/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/4.jpg -------------------------------------------------------------------------------- /static/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/8.png -------------------------------------------------------------------------------- /static/images/alert/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/alert/alert.png -------------------------------------------------------------------------------- /static/images/alert/alert2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/alert/alert2.png -------------------------------------------------------------------------------- /static/images/alert/alert3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/alert/alert3.png -------------------------------------------------------------------------------- /static/images/alert/alert4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/alert/alert4.png -------------------------------------------------------------------------------- /static/images/alert/alert5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/alert/alert5.png -------------------------------------------------------------------------------- /static/images/alert/alert6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/alert/alert6.png -------------------------------------------------------------------------------- /static/images/alert/alert7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/alert/alert7.png -------------------------------------------------------------------------------- /static/images/alert/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/alert/model.png -------------------------------------------------------------------------------- /static/images/alert/model2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/alert/model2.png -------------------------------------------------------------------------------- /static/images/alert/model3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/alert/model3.png -------------------------------------------------------------------------------- /static/images/attached-files/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/attached-files/img-1.jpg -------------------------------------------------------------------------------- /static/images/attached-files/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/attached-files/img-2.jpg -------------------------------------------------------------------------------- /static/images/attached-files/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/attached-files/img-3.jpg -------------------------------------------------------------------------------- /static/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/avatar.png -------------------------------------------------------------------------------- /static/images/avatar/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/avatar/1.jpg -------------------------------------------------------------------------------- /static/images/avatar/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/avatar/2.jpg -------------------------------------------------------------------------------- /static/images/avatar/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/avatar/3.jpg -------------------------------------------------------------------------------- /static/images/avatar/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/avatar/4.jpg -------------------------------------------------------------------------------- /static/images/avatar/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/avatar/5.jpg -------------------------------------------------------------------------------- /static/images/avatar/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/avatar/6.jpg -------------------------------------------------------------------------------- /static/images/avatar/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/avatar/7.jpg -------------------------------------------------------------------------------- /static/images/avatar/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/avatar/8.jpg -------------------------------------------------------------------------------- /static/images/avatar/usa-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/avatar/usa-flag.png -------------------------------------------------------------------------------- /static/images/background/error-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/background/error-bg.jpg -------------------------------------------------------------------------------- /static/images/background/login-register.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/background/login-register.jpg -------------------------------------------------------------------------------- /static/images/background/profile-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/background/profile-bg.jpg -------------------------------------------------------------------------------- /static/images/background/socialbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/background/socialbg.jpg -------------------------------------------------------------------------------- /static/images/background/user-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/background/user-bg.jpg -------------------------------------------------------------------------------- /static/images/background/user-info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/background/user-info.jpg -------------------------------------------------------------------------------- /static/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/bg.jpg -------------------------------------------------------------------------------- /static/images/big/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/big/img1.jpg -------------------------------------------------------------------------------- /static/images/big/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/big/img2.jpg -------------------------------------------------------------------------------- /static/images/big/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/big/img3.jpg -------------------------------------------------------------------------------- /static/images/big/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/big/img4.jpg -------------------------------------------------------------------------------- /static/images/big/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/big/img5.jpg -------------------------------------------------------------------------------- /static/images/big/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/big/img6.jpg -------------------------------------------------------------------------------- /static/images/bookingSystem/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/bookingSystem/1.png -------------------------------------------------------------------------------- /static/images/bookingSystem/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/bookingSystem/2.png -------------------------------------------------------------------------------- /static/images/bookingSystem/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/bookingSystem/3.png -------------------------------------------------------------------------------- /static/images/bookingSystem/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/bookingSystem/4.png -------------------------------------------------------------------------------- /static/images/bookingSystem/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/bookingSystem/5.png -------------------------------------------------------------------------------- /static/images/bookingSystem/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/bookingSystem/6.png -------------------------------------------------------------------------------- /static/images/bookingSystem/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/bookingSystem/7.png -------------------------------------------------------------------------------- /static/images/bookingSystem/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/bookingSystem/8.png -------------------------------------------------------------------------------- /static/images/browser/chrome-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/browser/chrome-logo.png -------------------------------------------------------------------------------- /static/images/browser/firefox-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/browser/firefox-logo.png -------------------------------------------------------------------------------- /static/images/browser/internet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/browser/internet-logo.png -------------------------------------------------------------------------------- /static/images/browser/opera-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/browser/opera-logo.png -------------------------------------------------------------------------------- /static/images/browser/safari-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/browser/safari-logo.png -------------------------------------------------------------------------------- /static/images/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/c1.jpg -------------------------------------------------------------------------------- /static/images/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/c2.jpg -------------------------------------------------------------------------------- /static/images/c3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/c3.jpg -------------------------------------------------------------------------------- /static/images/card/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/card/c1.jpg -------------------------------------------------------------------------------- /static/images/card/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/card/c2.jpg -------------------------------------------------------------------------------- /static/images/card/c3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/card/c3.jpg -------------------------------------------------------------------------------- /static/images/card/c4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/card/c4.jpg -------------------------------------------------------------------------------- /static/images/chat-person-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/chat-person-add.png -------------------------------------------------------------------------------- /static/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/close.png -------------------------------------------------------------------------------- /static/images/custom-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/custom-select.png -------------------------------------------------------------------------------- /static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/favicon.png -------------------------------------------------------------------------------- /static/images/fjords.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/fjords.jpg -------------------------------------------------------------------------------- /static/images/gallery/chair.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/gallery/chair.jpg -------------------------------------------------------------------------------- /static/images/gallery/chair2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/gallery/chair2.jpg -------------------------------------------------------------------------------- /static/images/gallery/chair3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/gallery/chair3.jpg -------------------------------------------------------------------------------- /static/images/gallery/chair4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/gallery/chair4.jpg -------------------------------------------------------------------------------- /static/images/github_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/github_mask.png -------------------------------------------------------------------------------- /static/images/hand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/hand.jpg -------------------------------------------------------------------------------- /static/images/lights.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/lights.jpg -------------------------------------------------------------------------------- /static/images/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/logo-text.png -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/logo.png -------------------------------------------------------------------------------- /static/images/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/mask.png -------------------------------------------------------------------------------- /static/images/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/maximize.png -------------------------------------------------------------------------------- /static/images/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/minimize.png -------------------------------------------------------------------------------- /static/images/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/nature.jpg -------------------------------------------------------------------------------- /static/images/newyork.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/newyork.jpg -------------------------------------------------------------------------------- /static/images/paris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/paris.jpg -------------------------------------------------------------------------------- /static/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/paypal.png -------------------------------------------------------------------------------- /static/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/picture.png -------------------------------------------------------------------------------- /static/images/preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/preview1.png -------------------------------------------------------------------------------- /static/images/product-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/product-2.jpg -------------------------------------------------------------------------------- /static/images/product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/product.jpg -------------------------------------------------------------------------------- /static/images/product_1/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/product_1/1.jpg -------------------------------------------------------------------------------- /static/images/product_1/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/product_1/2.jpg -------------------------------------------------------------------------------- /static/images/product_1/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/product_1/3.jpg -------------------------------------------------------------------------------- /static/images/product_1/burger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/product_1/burger.jpg -------------------------------------------------------------------------------- /static/images/product_1/download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/product_1/download.jpg -------------------------------------------------------------------------------- /static/images/product_1/image-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/product_1/image-10.jpg -------------------------------------------------------------------------------- /static/images/product_1/image-8-226x223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/product_1/image-8-226x223.jpg -------------------------------------------------------------------------------- /static/images/product_1/image-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/product_1/image-9.jpg -------------------------------------------------------------------------------- /static/images/product_1/images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/product_1/images.jpg -------------------------------------------------------------------------------- /static/images/product_1/pizza2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/product_1/pizza2.jpg -------------------------------------------------------------------------------- /static/images/profile-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/profile-bg.jpg -------------------------------------------------------------------------------- /static/images/rangeSliderimg/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/rangeSliderimg/sprite-skin-flat.png -------------------------------------------------------------------------------- /static/images/rangeSliderimg/sprite-skin-modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/rangeSliderimg/sprite-skin-modern.png -------------------------------------------------------------------------------- /static/images/rangeSliderimg/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/rangeSliderimg/sprite-skin-nice.png -------------------------------------------------------------------------------- /static/images/rangeSliderimg/sprite-skin-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/rangeSliderimg/sprite-skin-simple.png -------------------------------------------------------------------------------- /static/images/sanfran.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/sanfran.jpg -------------------------------------------------------------------------------- /static/images/scrollable/view-1-1200x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/scrollable/view-1-1200x800.jpg -------------------------------------------------------------------------------- /static/images/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/smile.png -------------------------------------------------------------------------------- /static/images/tooltip/Euclid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/tooltip/Euclid.png -------------------------------------------------------------------------------- /static/images/user-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/user-1.png -------------------------------------------------------------------------------- /static/images/user-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/user-bg.jpg -------------------------------------------------------------------------------- /static/images/user-female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/user-female.png -------------------------------------------------------------------------------- /static/images/user-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/user-profile.jpg -------------------------------------------------------------------------------- /static/images/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/user.jpg -------------------------------------------------------------------------------- /static/images/users/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/1.jpg -------------------------------------------------------------------------------- /static/images/users/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/2.jpg -------------------------------------------------------------------------------- /static/images/users/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/3.jpg -------------------------------------------------------------------------------- /static/images/users/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/4.jpg -------------------------------------------------------------------------------- /static/images/users/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/5.jpg -------------------------------------------------------------------------------- /static/images/users/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/6.jpg -------------------------------------------------------------------------------- /static/images/users/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/7.jpg -------------------------------------------------------------------------------- /static/images/users/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/8.jpg -------------------------------------------------------------------------------- /static/images/users/avatar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/avatar-1.jpg -------------------------------------------------------------------------------- /static/images/users/avatar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/avatar-2.jpg -------------------------------------------------------------------------------- /static/images/users/avatar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/avatar-3.jpg -------------------------------------------------------------------------------- /static/images/users/avatar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/avatar-4.jpg -------------------------------------------------------------------------------- /static/images/users/avatar-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/avatar-5.jpg -------------------------------------------------------------------------------- /static/images/users/avatar-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/avatar-6.jpg -------------------------------------------------------------------------------- /static/images/users/avatar-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/avatar-7.jpg -------------------------------------------------------------------------------- /static/images/users/avatar-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/avatar-8.jpg -------------------------------------------------------------------------------- /static/images/users/avatar-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/avatar-9.jpg -------------------------------------------------------------------------------- /static/images/users/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/users/profile.png -------------------------------------------------------------------------------- /static/images/video-cam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/video-cam.png -------------------------------------------------------------------------------- /static/images/watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasintoy/Alize/0c974c27399ed3914e34e4476b61f0b835f51710/static/images/watch.jpg -------------------------------------------------------------------------------- /static/js/lib/calendar-2/pignose.init.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | "use strict"; 3 | $('.year-calendar').pignoseCalendar({ 4 | theme: 'blue' // light, dark, blue 5 | }); 6 | 7 | $('input.calendar').pignoseCalendar({ 8 | format: 'YYYY-MM-DD' // date format string. (2017-02-02) 9 | }); 10 | }); 11 | 12 | -------------------------------------------------------------------------------- /static/js/lib/datatables/cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.3/jquery.ui.touch-punch.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Touch Punch 0.2.3 3 | * 4 | * Copyright 2011–2014, Dave Furfero 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * 7 | * Depends: 8 | * jquery.ui.widget.js 9 | * jquery.ui.mouse.js 10 | */ 11 | !function(a){function f(a,b){if(!(a.originalEvent.touches.length>1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery); -------------------------------------------------------------------------------- /static/js/lib/granim/granim-init.js: -------------------------------------------------------------------------------- 1 | //(function ($) { 2 | // "use strict"; 3 | // 4 | // 5 | // 6 | 7 | var granimInstance = new Granim({ 8 | element: '#canvas-basic', 9 | name: 'basic-gradient', 10 | direction: 'left-right', 11 | opacity: [1, 1], 12 | isPausedWhenNotInView: true, 13 | states : { 14 | "default-state": { 15 | gradients: [ 16 | ['#AA076B', '#61045F'], 17 | ['#02AAB0', '#00CDAC'], 18 | ['#DA22FF', '#9733EE'] 19 | ] 20 | } 21 | } 22 | }); 23 | 24 | 25 | 26 | 27 | //})(jQuery); -------------------------------------------------------------------------------- /static/js/lib/html5-editor/wysihtml5-init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | 3 | $('.textarea_editor').wysihtml5(); 4 | 5 | 6 | }); -------------------------------------------------------------------------------- /static/js/lib/jquery-ui/jquery.ui.touch-punch.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Touch Punch 0.2.3 3 | * 4 | * Copyright 2011–2014, Dave Furfero 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * 7 | * Depends: 8 | * jquery.ui.widget.js 9 | * jquery.ui.mouse.js 10 | */ 11 | !function(a){function f(a,b){if(!(a.originalEvent.touches.length>1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery); -------------------------------------------------------------------------------- /static/js/lib/jsgrid/fields/jsgrid.field.number.js: -------------------------------------------------------------------------------- 1 | (function(jsGrid, $, undefined) { 2 | 3 | var TextField = jsGrid.TextField; 4 | 5 | function NumberField(config) { 6 | TextField.call(this, config); 7 | } 8 | 9 | NumberField.prototype = new TextField({ 10 | 11 | sorter: "number", 12 | align: "right", 13 | readOnly: false, 14 | 15 | filterValue: function() { 16 | return this.filterControl.val() 17 | ? parseInt(this.filterControl.val() || 0, 10) 18 | : undefined; 19 | }, 20 | 21 | insertValue: function() { 22 | return this.insertControl.val() 23 | ? parseInt(this.insertControl.val() || 0, 10) 24 | : undefined; 25 | }, 26 | 27 | editValue: function() { 28 | return this.editControl.val() 29 | ? parseInt(this.editControl.val() || 0, 10) 30 | : undefined; 31 | }, 32 | 33 | _createTextBox: function() { 34 | return $("").attr("type", "number") 35 | .prop("readonly", !!this.readOnly); 36 | } 37 | }); 38 | 39 | jsGrid.fields.number = jsGrid.NumberField = NumberField; 40 | 41 | }(jsGrid, jQuery)); 42 | -------------------------------------------------------------------------------- /static/js/lib/jsgrid/fields/jsgrid.field.textarea.js: -------------------------------------------------------------------------------- 1 | (function(jsGrid, $, undefined) { 2 | 3 | var TextField = jsGrid.TextField; 4 | 5 | function TextAreaField(config) { 6 | TextField.call(this, config); 7 | } 8 | 9 | TextAreaField.prototype = new TextField({ 10 | 11 | insertTemplate: function() { 12 | if(!this.inserting) 13 | return ""; 14 | 15 | return this.insertControl = this._createTextArea(); 16 | }, 17 | 18 | editTemplate: function(value) { 19 | if(!this.editing) 20 | return this.itemTemplate.apply(this, arguments); 21 | 22 | var $result = this.editControl = this._createTextArea(); 23 | $result.val(value); 24 | return $result; 25 | }, 26 | 27 | _createTextArea: function() { 28 | return $("