├── .gitignore ├── README.md ├── build.py ├── childcare.html ├── coc.html ├── css ├── animate.css ├── bootstrap.css ├── bootstrap.min.css ├── color.css ├── colors │ ├── color-2.css │ ├── color-3.css │ ├── color-4.css │ ├── color-5.css │ └── default.css ├── customScrollbar.css ├── font-awesome.css ├── font-awesome.min.css ├── icomoon.css ├── jquery.fullpage.css ├── main.css ├── normalize.css ├── owl.carousel.css ├── prettyPhoto.css ├── responsive.css └── transitions.css ├── data ├── api │ ├── about.json │ ├── community.json │ ├── event.json │ ├── schedule.json │ ├── scraper.py │ ├── sponsors.json │ └── tracks.json ├── sponsorship_prospectus.pdf └── test.xml ├── faqs.html ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fontawesome-webfont.woff2 ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff ├── glyphicons-halflings-regular.woff2 ├── icomoon.eot ├── icomoon.svg ├── icomoon.ttf └── icomoon.woff ├── gallery.html ├── images ├── ajax-loader.gif ├── arrow-down.svg ├── arrow-up.svg ├── bg-parallax │ └── bg-parallax-01.jpg ├── btn-scroll.png ├── colors.png ├── favicon.png ├── gallery │ ├── 2013 │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── 2014 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── 2015 │ │ ├── 1.jpg │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 2.jpg │ │ ├── 3.png │ │ ├── 4.jpg │ │ ├── 5.png │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ └── 2016 │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png ├── headerborder.jpg ├── img-01.jpg ├── innerbanner-img.jpg ├── logo.png ├── logo2.png ├── logo3.png ├── logo4.png ├── logo5.png ├── logo6.png ├── logo7.png ├── prettyPhoto │ ├── dark_rounded │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── contentPattern.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png │ ├── dark_square │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── contentPattern.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png │ ├── default │ │ ├── default_thumb.png │ │ ├── loader.gif │ │ ├── sprite.png │ │ ├── sprite_next.png │ │ ├── sprite_prev.png │ │ ├── sprite_x.png │ │ └── sprite_y.png │ ├── facebook │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── contentPatternBottom.png │ │ ├── contentPatternLeft.png │ │ ├── contentPatternRight.png │ │ ├── contentPatternTop.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png │ ├── light_rounded │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png │ └── light_square │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png ├── slider │ └── img-01.jpg ├── speakers │ ├── elizabeth.png │ ├── noufal_ibrahim.jpg │ ├── ola-sitarski.jpg │ ├── peter_wang.jpg │ └── speaker.svg └── sponsor │ ├── adobe.jpg │ ├── fossee.png │ ├── hypertrack.png │ ├── microsoft.png │ ├── pipal.png │ ├── psf.png │ ├── tensor_flow.jpg │ ├── visiblealpha.png │ └── zeomega.png ├── index.html ├── js ├── appear.js ├── color-switcher.js ├── countTo.js ├── countdown.js ├── customScrollbar.min.js ├── feed.js ├── gmap3.js ├── init.wow.js ├── isotope.pkgd.js ├── jquery.fullpage.js ├── jquery.hoverdir.js ├── jquery.vide.min.js ├── main.js ├── markdown-it.min.js ├── owl.carousel.min.js ├── packery.pkgd.min.js ├── prettyPhoto.js ├── vendor │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-library.js │ ├── modernizr-2.8.3-respond-1.4.2.min.js │ ├── npm.js │ ├── twitter-post-fetcher-config.js │ └── twitter-post-fetcher.js ├── wow.min.js └── wow │ ├── LICENSE.md │ ├── init.wow.js │ └── wow.min.js ├── requirements.txt ├── specs ├── HTML │ ├── 404error.html │ ├── aboutus.html │ ├── accomodation.html │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── comingsoon.html │ ├── contactus.html │ ├── css │ │ ├── animate.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── color.css │ │ ├── colors │ │ │ ├── color-2.css │ │ │ ├── color-3.css │ │ │ ├── color-4.css │ │ │ ├── color-5.css │ │ │ └── default.css │ │ ├── customScrollbar.css │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ ├── icomoon.css │ │ ├── jquery.fullpage.css │ │ ├── main.css │ │ ├── normalize.css │ │ ├── owl.carousel.css │ │ ├── prettyPhoto.css │ │ ├── responsive.css │ │ └── transitions.css │ ├── faqs.html │ ├── favicon.ico │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ ├── gallery.html │ ├── images │ │ ├── ajax-loader.gif │ │ ├── arrow-down.svg │ │ ├── arrow-up.svg │ │ ├── articles │ │ │ ├── img-01.jpg │ │ │ ├── img-02.jpg │ │ │ ├── img-03.jpg │ │ │ ├── img-04.jpg │ │ │ ├── img-05.jpg │ │ │ ├── img-06.jpg │ │ │ ├── img-07.jpg │ │ │ ├── img-08.jpg │ │ │ ├── img-09.jpg │ │ │ ├── img-10.jpg │ │ │ ├── img-11.jpg │ │ │ ├── img-12.jpg │ │ │ └── img-13.jpg │ │ ├── author-img.jpg │ │ ├── avatar-01.jpg │ │ ├── avatar-02.jpg │ │ ├── bg-parallax │ │ │ ├── bg-parallax-01.jpg │ │ │ ├── bg-parallax-02.jpg │ │ │ ├── bg-parallax-03.jpg │ │ │ ├── bg-parallax-04.jpg │ │ │ ├── bg-parallax-05.jpg │ │ │ ├── bg-parallax-06.jpg │ │ │ ├── bg-parallax-07.jpg │ │ │ ├── bgparallax-08.jpg │ │ │ ├── bgparallax-09.jpg │ │ │ ├── bgparallax-10.jpg │ │ │ ├── bgparallax-11.jpg │ │ │ ├── bgparallax-12.jpg │ │ │ ├── bgparallax-13.jpg │ │ │ ├── bgparallax-14.jpg │ │ │ ├── bgparallax-15.jpg │ │ │ ├── bgparallax-16.jpg │ │ │ ├── bgparallax-17.jpg │ │ │ └── bgparallax-18.jpg │ │ ├── btn-scroll.png │ │ ├── colors.png │ │ ├── comingsoon-bg.jpg │ │ ├── flickr │ │ │ ├── img-01.jpg │ │ │ ├── img-02.jpg │ │ │ ├── img-03.jpg │ │ │ ├── img-04.jpg │ │ │ ├── img-05.jpg │ │ │ └── img-06.jpg │ │ ├── gallery │ │ │ ├── img-01.jpg │ │ │ ├── img-02.jpg │ │ │ ├── img-03.jpg │ │ │ ├── img-04.jpg │ │ │ ├── img-05.jpg │ │ │ ├── img-06.jpg │ │ │ ├── img-07.jpg │ │ │ ├── img-08.jpg │ │ │ ├── img-09.jpg │ │ │ ├── img-10.jpg │ │ │ ├── img-11.jpg │ │ │ ├── img-12.jpg │ │ │ ├── img-13.jpg │ │ │ ├── img-14.jpg │ │ │ ├── img-15.jpg │ │ │ ├── img-16.jpg │ │ │ ├── img-17.jpg │ │ │ ├── img-18.jpg │ │ │ ├── img-19.jpg │ │ │ ├── img-20.jpg │ │ │ ├── img-21.jpg │ │ │ ├── img-22.jpg │ │ │ └── img-23.jpg │ │ ├── headerborder.jpg │ │ ├── img-01.jpg │ │ ├── img-02.jpg │ │ ├── img-03.jpg │ │ ├── img-04.jpg │ │ ├── img-05.jpg │ │ ├── img-06.jpg │ │ ├── img-07.jpg │ │ ├── img-08.jpg │ │ ├── img-09.jpg │ │ ├── innerbanner-img.jpg │ │ ├── instgram │ │ │ ├── img-01.jpg │ │ │ ├── img-02.jpg │ │ │ ├── img-03.jpg │ │ │ ├── img-04.jpg │ │ │ ├── img-05.jpg │ │ │ ├── img-06.jpg │ │ │ ├── img-07.jpg │ │ │ ├── img-08.jpg │ │ │ └── img-09.jpg │ │ ├── logo.png │ │ ├── logo2.png │ │ ├── logo3.png │ │ ├── logo4.png │ │ ├── logo5.png │ │ ├── logo6.png │ │ ├── logo7.png │ │ ├── map-marker2.png │ │ ├── newsdetail-img.jpg │ │ ├── our-work │ │ │ ├── img-01.jpg │ │ │ ├── img-02.jpg │ │ │ ├── img-03.jpg │ │ │ ├── img-04.jpg │ │ │ ├── img-05.jpg │ │ │ └── img-06.jpg │ │ ├── owl.video.play.png │ │ ├── pattern.png │ │ ├── prettyPhoto │ │ │ ├── dark_rounded │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPattern.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ ├── dark_square │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPattern.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ ├── default │ │ │ │ ├── default_thumb.png │ │ │ │ ├── loader.gif │ │ │ │ ├── sprite.png │ │ │ │ ├── sprite_next.png │ │ │ │ ├── sprite_prev.png │ │ │ │ ├── sprite_x.png │ │ │ │ └── sprite_y.png │ │ │ ├── facebook │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPatternBottom.png │ │ │ │ ├── contentPatternLeft.png │ │ │ │ ├── contentPatternRight.png │ │ │ │ ├── contentPatternTop.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ ├── light_rounded │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ └── light_square │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ ├── scheduledetail-img.jpg │ │ ├── services │ │ │ ├── img-01.jpg │ │ │ ├── img-02.jpg │ │ │ ├── img-03.jpg │ │ │ ├── img-04.jpg │ │ │ ├── img-05.jpg │ │ │ └── img-06.jpg │ │ ├── slider │ │ │ ├── img-01.jpg │ │ │ ├── img-02.jpg │ │ │ ├── img-03.jpg │ │ │ ├── img-04.jpg │ │ │ ├── img-05.jpg │ │ │ ├── img-06.jpg │ │ │ ├── img-07.jpg │ │ │ ├── img-08.jpg │ │ │ └── img-09.jpg │ │ ├── speakers │ │ │ ├── img-01.jpg │ │ │ ├── img-02.jpg │ │ │ ├── img-03.jpg │ │ │ ├── img-04.jpg │ │ │ ├── img-05.jpg │ │ │ ├── img-06.jpg │ │ │ ├── img-07.jpg │ │ │ ├── img-08.jpg │ │ │ ├── img-09.jpg │ │ │ ├── img-10.jpg │ │ │ ├── img-11.jpg │ │ │ ├── img-12.jpg │ │ │ ├── img-13.jpg │ │ │ ├── img-14.jpg │ │ │ ├── img-15.jpg │ │ │ ├── img-16.jpg │ │ │ ├── img-17.jpg │ │ │ ├── img-18.jpg │ │ │ └── img-19.jpg │ │ ├── sponser │ │ │ ├── img-01.png │ │ │ ├── img-02.png │ │ │ ├── img-03.png │ │ │ ├── img-04.png │ │ │ ├── img-05.png │ │ │ ├── img-06.png │ │ │ ├── img-07.png │ │ │ ├── img-08.png │ │ │ ├── img-09.png │ │ │ ├── img-10.png │ │ │ ├── img-11.png │ │ │ ├── img-12.png │ │ │ ├── img-13.png │ │ │ ├── img-14.png │ │ │ ├── img-15.png │ │ │ ├── img-16.png │ │ │ ├── img-17.png │ │ │ ├── img-18.png │ │ │ ├── img-19.png │ │ │ ├── img-20.png │ │ │ ├── img-21.png │ │ │ ├── img-22.png │ │ │ ├── img-23.png │ │ │ ├── img-24.png │ │ │ ├── img-25.png │ │ │ ├── img-26.png │ │ │ ├── img-27.png │ │ │ └── img-28.png │ │ ├── testimonials │ │ │ ├── img-01.jpg │ │ │ ├── img-02.jpg │ │ │ ├── img-03.jpg │ │ │ └── img-04.jpg │ │ └── venues │ │ │ ├── img-01.jpg │ │ │ ├── img-02.jpg │ │ │ ├── img-03.jpg │ │ │ ├── img-04.jpg │ │ │ ├── img-05.jpg │ │ │ ├── img-06.jpg │ │ │ ├── img-07.jpg │ │ │ └── img-08.jpg │ ├── index.html │ ├── index2.html │ ├── index3.html │ ├── index4.html │ ├── js │ │ ├── appear.js │ │ ├── color-switcher.js │ │ ├── countTo.js │ │ ├── countdown.js │ │ ├── customScrollbar.min.js │ │ ├── gmap3.js │ │ ├── isotope.pkgd.js │ │ ├── jquery.fullpage.js │ │ ├── jquery.hoverdir.js │ │ ├── jquery.vide.min.js │ │ ├── main.js │ │ ├── owl.carousel.min.js │ │ ├── packery.pkgd.min.js │ │ ├── prettyPhoto.js │ │ └── vendor │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-library.js │ │ │ ├── modernizr-2.8.3-respond-1.4.2.min.js │ │ │ └── npm.js │ ├── newsdetail.html │ ├── newsgrid.html │ ├── newslist.html │ ├── priceplan.html │ ├── schedule.html │ ├── scheduledetail.html │ ├── speakerdetail.html │ ├── speakers.html │ ├── sponsers.html │ ├── tile-wide.png │ ├── tile.png │ └── venues.html └── documentation │ ├── css │ ├── animate.css │ ├── bootstrap.css │ ├── font-icons.css │ ├── fonts │ │ ├── Simple-Line-Icons.dev.svg │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ ├── font-icons.eot │ │ ├── font-icons.svg │ │ ├── font-icons.ttf │ │ ├── font-icons.woff │ │ ├── lined-icons.eot │ │ ├── lined-icons.svg │ │ ├── lined-icons.ttf │ │ └── lined-icons.woff │ ├── magnific-popup.css │ └── responsive.css │ ├── images │ └── logo.png │ ├── index.html │ ├── js │ ├── custom.js │ ├── jquery.js │ └── plugins.js │ └── style.css ├── sponsors.html ├── sponsorship.html ├── templates ├── childcare.html ├── coc.html ├── components │ ├── _base.jinja │ ├── _footer.html │ └── _header.html ├── faqs.html ├── gallery.html ├── index.html ├── sections │ ├── _schedule.html │ ├── _social.html │ ├── _speakers.html │ ├── _sponsors.html │ └── _statistics.html ├── sponsorship.html └── volunteer.html └── volunteer.html /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This website uses [staticjinja](https://staticjinja.readthedocs.org/) to build top level html files, please use the instructions below to modify html files. 2 | 3 | ## Getting started 4 | 5 | ``` 6 | pip install -r requirements.txt 7 | ``` 8 | 9 | To monitor your source directory for changes, and recompile files if they change: 10 | 11 | ``` 12 | python build.py & python -m SimpleHTTPServer && fg 13 | ``` 14 | 15 | This will recursively search `./templates` for templates (any file whose name does not start with `.` or `_`) and build them to `.`. 16 | 17 | Commit both the rendered html and the file inside `/templates/` 18 | 19 | 20 | ## Contributing 21 | 22 | - Send Pull-request against `master` branch. 23 | - Once you pull-request is merged is will be automatically go live at https://pythonindia.github.io/inpycon2017/ 24 | -------------------------------------------------------------------------------- /build.py: -------------------------------------------------------------------------------- 1 | from staticjinja import make_site 2 | 3 | 4 | if __name__ == "__main__": 5 | site = make_site(contexts=[ 6 | ('index.html', {}) 7 | ]) 8 | # enable automatic reloading 9 | site.render(use_reloader=True) 10 | -------------------------------------------------------------------------------- /css/color.css: -------------------------------------------------------------------------------- 1 | /*============================================= 2 | Theme Color 3 | =============================================*/ 4 | a, 5 | p a, 6 | p a:hover, 7 | a:hover, 8 | a:focus, 9 | a:active, 10 | .tg-stars span:after, 11 | .tg-btn:hover, 12 | .tg-sectionheading h3, 13 | .tg-eventcounter span, 14 | .tg-speaker:hover .tg-posttitle h3 a, 15 | .tg-featuretag, 16 | .tg-eventvenuenav li.active a, 17 | .tg-eventvenuenav li:hover a, 18 | .tg-navfilterbale li a:hover, 19 | .tg-navfilterbale li a.tg-active, 20 | .tg-package:hover .tg-packagehead h2, 21 | .tg-package:hover .tg-price h3, 22 | .tg-package:hover .tg-price sup, 23 | .tg-package:hover .tg-price sub, 24 | .tg-package:hover .tg-btn, 25 | .tg-panel > h4:hover, 26 | .tg-panel > h4.active, 27 | .tg-panel > h4:hover:after, 28 | .tg-panel > h4.active:after, 29 | .tg-tags li:hover a, 30 | .tg-bannersocialicons li:hover a i, 31 | .tg-formsortshoitems fieldset .tg-select select, 32 | .tg-formsortshoitems fieldset .tg-select select option, 33 | .tg-404errorcontent h3, 34 | .tg-detailhead h3, 35 | .tg-widget ul li:hover a em, 36 | .tg-widget ul li:hover a em i, 37 | .tg-widget ul li:hover a span, 38 | .tg-trendingposts li:hover .tg-postcontent h4 a, 39 | .tg-stylevtwo .tg-sectionhead h2, 40 | .tg-btnroundprev:hover, 41 | .tg-btnroundnext:hover, 42 | .tg-btnvideoplay:hover, 43 | .tg-btnvideoplay:hover i, 44 | .tg-calltoaction h2, 45 | .tg-footercolumn.tg-widgetrecentposts ul li h4:hover a, 46 | .tg-footercolumn.tg-widgetrecentposts ul li time:hover a, 47 | .tg-newsletterbox button, 48 | .tg-btnvthree, 49 | .tg-packagesvtwo .tg-package .tg-price h3, 50 | .tg-alertcontent strong{color: #d90845;} 51 | /*============================================= 52 | Theme Background Color 53 | =============================================*/ 54 | .tg-btn:after, 55 | .tg-theme-tag, 56 | .tg-btnbookseat, 57 | .tg-btnbookseat:hover, 58 | .tg-eventschedulenav li.active a, 59 | .tg-eventschedulenav li:hover a, 60 | .tg-btnfarword:hover, 61 | .tg-btndownloadschedule, 62 | .tg-badge, 63 | .tg-inputicon button, 64 | .tg-pagination ul li:hover a, 65 | .tg-pagination ul li.tg-prevpage:hover a, 66 | .tg-pagination ul li.tg-nextpage:hover a, 67 | .tg-tagsshare .tg-tag:hover, 68 | .tg-date, 69 | .tg-themepost:hover figure .tg-timetag, 70 | .tg-btnvtwo:hover, 71 | .tg-rockstarslider .tg-themepost figure, 72 | .tg-rockstarslider .owl-dots .owl-dot:hover span, 73 | .tg-rockstarslider .owl-dots .owl-dot.active span, 74 | .tg-stylevtwo .tg-testimonial, 75 | .tg-clientfeedback .tg-testimonialslider:before, 76 | .tg-clientfeedback .tg-testimonialslider:after, 77 | .tg-concertschedulelist > .tg-concertschedule:hover, 78 | .tg-sponsorbrands li:hover, 79 | .tg-topbar, 80 | .tg-headervthree .tg-navigation > ul > li > a:after, 81 | .tg-tag:hover, 82 | .tg-packagesvtwo .tg-package.tg-formshow .tg-packagehead h2, 83 | .tg-btnformpkghide, 84 | .tg-bannerholdervfour .tg-slidercontent h1 span, 85 | .tg-nav .navbar-toggle .icon-bar, 86 | .tg-headervthree .tg-nav .navbar-toggle, 87 | .tg-headervfour .tg-nav .navbar-toggle, 88 | .tg-headervtwo .tg-nav .navbar-toggle, 89 | .tg-alert i{background:#d90845;} 90 | .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 91 | .tg-btnvthree:hover{background:#d90845 !important;} 92 | /*============================================= 93 | Theme Border Color 94 | =============================================*/ 95 | .tg-theme-tag:after, 96 | .tg-theme-tag:before, 97 | input:focus, 98 | .select select:focus, 99 | .form-control:focus, 100 | .tg-eventschedulenav li.active a, 101 | .tg-eventschedulenav li:hover a, 102 | .tg-eventschedulecontent, 103 | .tg-btnfarword:hover, 104 | .tg-badge:before, 105 | .tg-hallname, 106 | .tg-tagsshare .tg-tag:hover, 107 | .sub-menu.tg-darkmenu > li > a:hover, 108 | .sub-menu.tg-darkmenu > li:hover > a, 109 | .tg-btnvtwo, 110 | .tg-btndownloadschedule:before, 111 | .tg-homevtwo .tg-header, 112 | .tg-bannerholdervthree .tg-slidercontent, 113 | .tg-btnvideoplay:hover, 114 | .tg-serviceimg:hover .tg-servicecontent, 115 | .tg-servicetitle h2 a, 116 | .tg-tag:hover, 117 | .tg-btnvthree{border-color: #d90845;} -------------------------------------------------------------------------------- /css/colors/color-2.css: -------------------------------------------------------------------------------- 1 | /*============================================= 2 | Theme Color 3 | =============================================*/ 4 | a, 5 | p a, 6 | p a:hover, 7 | a:hover, 8 | a:focus, 9 | a:active, 10 | .tg-stars span:after, 11 | .tg-btn:hover, 12 | .tg-sectionheading h3, 13 | .tg-eventcounter span, 14 | .tg-speaker:hover .tg-posttitle h3 a, 15 | .tg-featuretag, 16 | .tg-eventvenuenav li.active a, 17 | .tg-eventvenuenav li:hover a, 18 | .tg-navfilterbale li a:hover, 19 | .tg-navfilterbale li a.tg-active, 20 | .tg-package:hover .tg-packagehead h2, 21 | .tg-package:hover .tg-price h3, 22 | .tg-package:hover .tg-price sup, 23 | .tg-package:hover .tg-price sub, 24 | .tg-package:hover .tg-btn, 25 | .tg-panel > h4:hover, 26 | .tg-panel > h4.active, 27 | .tg-panel > h4:hover:after, 28 | .tg-panel > h4.active:after, 29 | .tg-tags li:hover a, 30 | .tg-bannersocialicons li:hover a i, 31 | .tg-formsortshoitems fieldset .tg-select select, 32 | .tg-formsortshoitems fieldset .tg-select select option, 33 | .tg-404errorcontent h3, 34 | .tg-detailhead h3, 35 | .tg-widget ul li:hover a em, 36 | .tg-widget ul li:hover a em i, 37 | .tg-widget ul li:hover a span, 38 | .tg-trendingposts li:hover .tg-postcontent h4 a, 39 | .tg-stylevtwo .tg-sectionhead h2, 40 | .tg-btnroundprev:hover, 41 | .tg-btnroundnext:hover, 42 | .tg-btnvideoplay:hover, 43 | .tg-btnvideoplay:hover i, 44 | .tg-calltoaction h2, 45 | .tg-footercolumn.tg-widgetrecentposts ul li h4:hover a, 46 | .tg-footercolumn.tg-widgetrecentposts ul li time:hover a, 47 | .tg-newsletterbox button, 48 | .tg-btnvthree, 49 | .tg-packagesvtwo .tg-package .tg-price h3, 50 | .tg-alertcontent strong{color: #ece810;} 51 | /*============================================= 52 | Theme Background Color 53 | =============================================*/ 54 | .tg-btn:after, 55 | .tg-theme-tag, 56 | .tg-btnbookseat, 57 | .tg-btnbookseat:hover, 58 | .tg-eventschedulenav li.active a, 59 | .tg-eventschedulenav li:hover a, 60 | .tg-btnfarword:hover, 61 | .tg-btndownloadschedule, 62 | .tg-badge, 63 | .tg-inputicon button, 64 | .tg-pagination ul li:hover a, 65 | .tg-pagination ul li.tg-prevpage:hover a, 66 | .tg-pagination ul li.tg-nextpage:hover a, 67 | .tg-tagsshare .tg-tag:hover, 68 | .tg-date, 69 | .tg-themepost:hover figure .tg-timetag, 70 | .tg-btnvtwo:hover, 71 | .tg-rockstarslider .tg-themepost figure, 72 | .tg-rockstarslider .owl-dots .owl-dot:hover span, 73 | .tg-rockstarslider .owl-dots .owl-dot.active span, 74 | .tg-stylevtwo .tg-testimonial, 75 | .tg-clientfeedback .tg-testimonialslider:before, 76 | .tg-clientfeedback .tg-testimonialslider:after, 77 | .tg-concertschedulelist > .tg-concertschedule:hover, 78 | .tg-sponsorbrands li:hover, 79 | .tg-topbar, 80 | .tg-headervthree .tg-navigation > ul > li > a:after, 81 | .tg-tag:hover, 82 | .tg-packagesvtwo .tg-package.tg-formshow .tg-packagehead h2, 83 | .tg-btnformpkghide, 84 | .tg-bannerholdervfour .tg-slidercontent h1 span, 85 | .tg-nav .navbar-toggle .icon-bar, 86 | .tg-headervthree .tg-nav .navbar-toggle, 87 | .tg-headervfour .tg-nav .navbar-toggle, 88 | .tg-headervtwo .tg-nav .navbar-toggle, 89 | .tg-alert i{background:#ece810;} 90 | .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 91 | .tg-btnvthree:hover{background:#ece810 !important;} 92 | /*============================================= 93 | Theme Gradient Color 94 | =============================================*/ 95 | .tg-cscounter, 96 | .tg-galleryhover, 97 | .tg-bgparallax:before, 98 | .tg-shceduledetailimg:before{ 99 | background: 100 | -moz-linear-gradient(top, 101 | rgba(236,232,16,0.8) 0%, 102 | rgba(236,232,16,0.8) 99%, 103 | rgba(236,232,16,0.8) 100%); 104 | background: 105 | -webkit-linear-gradient(top, 106 | rgba(236,232,16,0.8) 0%, 107 | rgba(236,232,16,0.8) 99%, 108 | rgba(236,232,16,0.8) 100%); 109 | background: 110 | linear-gradient(to bottom, 111 | rgba(236,232,16,0.8) 0%, 112 | rgba(236,232,16,0.8) 99%, 113 | rgba(236,232,16,0.8) 100%); 114 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccece810', endColorstr='#ccece810',GradientType=0 ); 115 | } 116 | .tg-innerbanner:before, 117 | .tg-bannerimg figcaption, 118 | .tg-bgparallax.tg-bgtwitter:before{ 119 | background: 120 | -moz-linear-gradient(top, 121 | rgba(68,67,73,1) 0%, 122 | rgba(236,232,16,0.85) 60%); 123 | background: 124 | -webkit-linear-gradient(top, 125 | rgba(68,67,73,1) 0%, 126 | rgba(236,232,16,0.85) 60%); 127 | background: 128 | linear-gradient(to bottom, 129 | rgba(68,67,73,1) 0%, 130 | rgba(236,232,16,0.85) 60%); 131 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444349', endColorstr='#d9ece810',GradientType=0 ); 132 | } 133 | /*============================================= 134 | Theme Border Color 135 | =============================================*/ 136 | .tg-theme-tag:after, 137 | .tg-theme-tag:before, 138 | input:focus, 139 | .select select:focus, 140 | .form-control:focus, 141 | .tg-eventschedulenav li.active a, 142 | .tg-eventschedulenav li:hover a, 143 | .tg-eventschedulecontent, 144 | .tg-btnfarword:hover, 145 | .tg-badge:before, 146 | .tg-hallname, 147 | .tg-tagsshare .tg-tag:hover, 148 | .sub-menu.tg-darkmenu > li > a:hover, 149 | .sub-menu.tg-darkmenu > li:hover > a, 150 | .tg-btnvtwo, 151 | .tg-btndownloadschedule:before, 152 | .tg-homevtwo .tg-header, 153 | .tg-bannerholdervthree .tg-slidercontent, 154 | .tg-btnvideoplay:hover, 155 | .tg-serviceimg:hover .tg-servicecontent, 156 | .tg-servicetitle h2 a, 157 | .tg-tag:hover, 158 | .tg-btnvthree{border-color: #ece810;} 159 | 160 | .tg-headervtwo .tg-btnbookseat{color:#444349;} -------------------------------------------------------------------------------- /css/colors/color-4.css: -------------------------------------------------------------------------------- 1 | /*============================================= 2 | Theme Color 3 | =============================================*/ 4 | a, 5 | p a, 6 | p a:hover, 7 | a:hover, 8 | a:focus, 9 | a:active, 10 | .tg-stars span:after, 11 | .tg-btn:hover, 12 | .tg-sectionheading h3, 13 | .tg-eventcounter span, 14 | .tg-speaker:hover .tg-posttitle h3 a, 15 | .tg-featuretag, 16 | .tg-eventvenuenav li.active a, 17 | .tg-eventvenuenav li:hover a, 18 | .tg-navfilterbale li a:hover, 19 | .tg-navfilterbale li a.tg-active, 20 | .tg-package:hover .tg-packagehead h2, 21 | .tg-package:hover .tg-price h3, 22 | .tg-package:hover .tg-price sup, 23 | .tg-package:hover .tg-price sub, 24 | .tg-package:hover .tg-btn, 25 | .tg-panel > h4:hover, 26 | .tg-panel > h4.active, 27 | .tg-panel > h4:hover:after, 28 | .tg-panel > h4.active:after, 29 | .tg-tags li:hover a, 30 | .tg-bannersocialicons li:hover a i, 31 | .tg-formsortshoitems fieldset .tg-select select, 32 | .tg-formsortshoitems fieldset .tg-select select option, 33 | .tg-404errorcontent h3, 34 | .tg-detailhead h3, 35 | .tg-widget ul li:hover a em, 36 | .tg-widget ul li:hover a em i, 37 | .tg-widget ul li:hover a span, 38 | .tg-trendingposts li:hover .tg-postcontent h4 a, 39 | .tg-stylevtwo .tg-sectionhead h2, 40 | .tg-btnroundprev:hover, 41 | .tg-btnroundnext:hover, 42 | .tg-btnvideoplay:hover, 43 | .tg-btnvideoplay:hover i, 44 | .tg-calltoaction h2, 45 | .tg-footercolumn.tg-widgetrecentposts ul li h4:hover a, 46 | .tg-footercolumn.tg-widgetrecentposts ul li time:hover a, 47 | .tg-newsletterbox button, 48 | .tg-btnvthree, 49 | .tg-packagesvtwo .tg-package .tg-price h3, 50 | .tg-alertcontent strong{color: #5fb536;} 51 | /*============================================= 52 | Theme Background Color 53 | =============================================*/ 54 | .tg-btn:after, 55 | .tg-theme-tag, 56 | .tg-btnbookseat, 57 | .tg-btnbookseat:hover, 58 | .tg-eventschedulenav li.active a, 59 | .tg-eventschedulenav li:hover a, 60 | .tg-btnfarword:hover, 61 | .tg-btndownloadschedule, 62 | .tg-badge, 63 | .tg-inputicon button, 64 | .tg-pagination ul li:hover a, 65 | .tg-pagination ul li.tg-prevpage:hover a, 66 | .tg-pagination ul li.tg-nextpage:hover a, 67 | .tg-tagsshare .tg-tag:hover, 68 | .tg-date, 69 | .tg-themepost:hover figure .tg-timetag, 70 | .tg-btnvtwo:hover, 71 | .tg-rockstarslider .tg-themepost figure, 72 | .tg-rockstarslider .owl-dots .owl-dot:hover span, 73 | .tg-rockstarslider .owl-dots .owl-dot.active span, 74 | .tg-stylevtwo .tg-testimonial, 75 | .tg-clientfeedback .tg-testimonialslider:before, 76 | .tg-clientfeedback .tg-testimonialslider:after, 77 | .tg-concertschedulelist > .tg-concertschedule:hover, 78 | .tg-sponsorbrands li:hover, 79 | .tg-topbar, 80 | .tg-headervthree .tg-navigation > ul > li > a:after, 81 | .tg-tag:hover, 82 | .tg-packagesvtwo .tg-package.tg-formshow .tg-packagehead h2, 83 | .tg-btnformpkghide, 84 | .tg-bannerholdervfour .tg-slidercontent h1 span, 85 | .tg-nav .navbar-toggle .icon-bar, 86 | .tg-headervthree .tg-nav .navbar-toggle, 87 | .tg-headervfour .tg-nav .navbar-toggle, 88 | .tg-headervtwo .tg-nav .navbar-toggle, 89 | .tg-alert i{background:#5fb536;} 90 | .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 91 | .tg-btnvthree:hover{background:#5fb536 !important;} 92 | /*============================================= 93 | Theme Gradient Color 94 | =============================================*/ 95 | .tg-cscounter, 96 | .tg-galleryhover, 97 | .tg-bgparallax:before, 98 | .tg-shceduledetailimg:before{ 99 | background: 100 | -moz-linear-gradient(top, 101 | rgba(95,181,54,0.85) 0%, 102 | rgba(95,181,54,0.8) 100%); 103 | background: 104 | -webkit-linear-gradient(top, 105 | rgba(95,181,54,0.85) 0%, 106 | rgba(95,181,54,0.8) 100%); 107 | background: 108 | linear-gradient(to bottom, 109 | rgba(95,181,54,0.85) 0%, 110 | rgba(95,181,54,0.8) 100%); 111 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d95fb536', endColorstr='#cc5fb536',GradientType=0 ); 112 | } 113 | .tg-innerbanner:before, 114 | .tg-bannerimg figcaption, 115 | .tg-bgparallax.tg-bgtwitter:before{ 116 | background: 117 | -moz-linear-gradient(top, 118 | rgba(66,66,66,0.85) 0%, 119 | rgba(95,181,54,0.85) 60%); 120 | background: 121 | -webkit-linear-gradient(top, 122 | rgba(66,66,66,0.85) 0%, 123 | rgba(95,181,54,0.85) 60%); 124 | background: 125 | linear-gradient(to bottom, 126 | rgba(66,66,66,0.85) 0%, 127 | rgba(95,181,54,0.85) 60%); 128 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9424242', endColorstr='#d95fb536',GradientType=0 ); 129 | } 130 | /*============================================= 131 | Theme Border Color 132 | =============================================*/ 133 | .tg-theme-tag:after, 134 | .tg-theme-tag:before, 135 | input:focus, 136 | .select select:focus, 137 | .form-control:focus, 138 | .tg-eventschedulenav li.active a, 139 | .tg-eventschedulenav li:hover a, 140 | .tg-eventschedulecontent, 141 | .tg-btnfarword:hover, 142 | .tg-badge:before, 143 | .tg-hallname, 144 | .tg-tagsshare .tg-tag:hover, 145 | .sub-menu.tg-darkmenu > li > a:hover, 146 | .sub-menu.tg-darkmenu > li:hover > a, 147 | .tg-btnvtwo, 148 | .tg-btndownloadschedule:before, 149 | .tg-homevtwo .tg-header, 150 | .tg-bannerholdervthree .tg-slidercontent, 151 | .tg-btnvideoplay:hover, 152 | .tg-serviceimg:hover .tg-servicecontent, 153 | .tg-servicetitle h2 a, 154 | .tg-tag:hover, 155 | .tg-btnvthree{border-color: #5fb536;} -------------------------------------------------------------------------------- /css/colors/color-5.css: -------------------------------------------------------------------------------- 1 | /*============================================= 2 | Theme Color 3 | =============================================*/ 4 | a, 5 | p a, 6 | p a:hover, 7 | a:hover, 8 | a:focus, 9 | a:active, 10 | .tg-stars span:after, 11 | .tg-btn:hover, 12 | .tg-sectionheading h3, 13 | .tg-eventcounter span, 14 | .tg-speaker:hover .tg-posttitle h3 a, 15 | .tg-featuretag, 16 | .tg-eventvenuenav li.active a, 17 | .tg-eventvenuenav li:hover a, 18 | .tg-navfilterbale li a:hover, 19 | .tg-navfilterbale li a.tg-active, 20 | .tg-package:hover .tg-packagehead h2, 21 | .tg-package:hover .tg-price h3, 22 | .tg-package:hover .tg-price sup, 23 | .tg-package:hover .tg-price sub, 24 | .tg-package:hover .tg-btn, 25 | .tg-panel > h4:hover, 26 | .tg-panel > h4.active, 27 | .tg-panel > h4:hover:after, 28 | .tg-panel > h4.active:after, 29 | .tg-tags li:hover a, 30 | .tg-bannersocialicons li:hover a i, 31 | .tg-formsortshoitems fieldset .tg-select select, 32 | .tg-formsortshoitems fieldset .tg-select select option, 33 | .tg-404errorcontent h3, 34 | .tg-detailhead h3, 35 | .tg-widget ul li:hover a em, 36 | .tg-widget ul li:hover a em i, 37 | .tg-widget ul li:hover a span, 38 | .tg-trendingposts li:hover .tg-postcontent h4 a, 39 | .tg-stylevtwo .tg-sectionhead h2, 40 | .tg-btnroundprev:hover, 41 | .tg-btnroundnext:hover, 42 | .tg-btnvideoplay:hover, 43 | .tg-btnvideoplay:hover i, 44 | .tg-calltoaction h2, 45 | .tg-footercolumn.tg-widgetrecentposts ul li h4:hover a, 46 | .tg-footercolumn.tg-widgetrecentposts ul li time:hover a, 47 | .tg-newsletterbox button, 48 | .tg-btnvthree, 49 | .tg-packagesvtwo .tg-package .tg-price h3, 50 | .tg-alertcontent strong{color: #feca16;} 51 | /*============================================= 52 | Theme Background Color 53 | =============================================*/ 54 | .tg-btn:after, 55 | .tg-theme-tag, 56 | .tg-btnbookseat, 57 | .tg-btnbookseat:hover, 58 | .tg-eventschedulenav li.active a, 59 | .tg-eventschedulenav li:hover a, 60 | .tg-btnfarword:hover, 61 | .tg-btndownloadschedule, 62 | .tg-badge, 63 | .tg-inputicon button, 64 | .tg-pagination ul li:hover a, 65 | .tg-pagination ul li.tg-prevpage:hover a, 66 | .tg-pagination ul li.tg-nextpage:hover a, 67 | .tg-tagsshare .tg-tag:hover, 68 | .tg-date, 69 | .tg-themepost:hover figure .tg-timetag, 70 | .tg-btnvtwo:hover, 71 | .tg-rockstarslider .tg-themepost figure, 72 | .tg-rockstarslider .owl-dots .owl-dot:hover span, 73 | .tg-rockstarslider .owl-dots .owl-dot.active span, 74 | .tg-stylevtwo .tg-testimonial, 75 | .tg-clientfeedback .tg-testimonialslider:before, 76 | .tg-clientfeedback .tg-testimonialslider:after, 77 | .tg-concertschedulelist > .tg-concertschedule:hover, 78 | .tg-sponsorbrands li:hover, 79 | .tg-topbar, 80 | .tg-headervthree .tg-navigation > ul > li > a:after, 81 | .tg-tag:hover, 82 | .tg-packagesvtwo .tg-package.tg-formshow .tg-packagehead h2, 83 | .tg-btnformpkghide, 84 | .tg-bannerholdervfour .tg-slidercontent h1 span, 85 | .tg-nav .navbar-toggle .icon-bar, 86 | .tg-headervthree .tg-nav .navbar-toggle, 87 | .tg-headervfour .tg-nav .navbar-toggle, 88 | .tg-headervtwo .tg-nav .navbar-toggle, 89 | .tg-alert i{background:#feca16;} 90 | .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 91 | .tg-btnvthree:hover{background:#feca16 !important;} 92 | /*============================================= 93 | Theme Gradient Color 94 | =============================================*/ 95 | .tg-cscounter, 96 | .tg-galleryhover, 97 | .tg-bgparallax:before, 98 | .tg-shceduledetailimg:before{ 99 | background: 100 | -moz-linear-gradient(top, 101 | rgba(254,202,22,0.85) 0%, 102 | rgba(254,202,22,0.84) 19%, 103 | rgba(254,202,22,0.8) 100%); 104 | background: 105 | -webkit-linear-gradient(top, 106 | rgba(254,202,22,0.85) 0%, 107 | rgba(254,202,22,0.84) 19%, 108 | rgba(254,202,22,0.8) 100%); 109 | background: 110 | linear-gradient(to bottom, 111 | rgba(254,202,22,0.85) 0%, 112 | rgba(254,202,22,0.84) 19%, 113 | rgba(254,202,22,0.8) 100%); 114 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9feca16', endColorstr='#ccfeca16',GradientType=0 ); 115 | } 116 | .tg-innerbanner:before, 117 | .tg-bannerimg figcaption, 118 | .tg-bgparallax.tg-bgtwitter:before{ 119 | background: 120 | -moz-linear-gradient(top, 121 | rgba(66,66,66,0.85) 0%, 122 | rgba(254,202,22,0.85) 60%); 123 | background: 124 | -webkit-linear-gradient(top, 125 | rgba(66,66,66,0.85) 0%, 126 | rgba(254,202,22,0.85) 60%); 127 | background: 128 | linear-gradient(to bottom, 129 | rgba(66,66,66,0.85) 0%, 130 | rgba(254,202,22,0.85) 60%); 131 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9424242', endColorstr='#d9feca16',GradientType=0 ); 132 | } 133 | /*============================================= 134 | Theme Border Color 135 | =============================================*/ 136 | .tg-theme-tag:after, 137 | .tg-theme-tag:before, 138 | input:focus, 139 | .select select:focus, 140 | .form-control:focus, 141 | .tg-eventschedulenav li.active a, 142 | .tg-eventschedulenav li:hover a, 143 | .tg-eventschedulecontent, 144 | .tg-btnfarword:hover, 145 | .tg-badge:before, 146 | .tg-hallname, 147 | .tg-tagsshare .tg-tag:hover, 148 | .sub-menu.tg-darkmenu > li > a:hover, 149 | .sub-menu.tg-darkmenu > li:hover > a, 150 | .tg-btnvtwo, 151 | .tg-btndownloadschedule:before, 152 | .tg-homevtwo .tg-header, 153 | .tg-bannerholdervthree .tg-slidercontent, 154 | .tg-btnvideoplay:hover, 155 | .tg-serviceimg:hover .tg-servicecontent, 156 | .tg-servicetitle h2 a, 157 | .tg-tag:hover, 158 | .tg-btnvthree{border-color: #feca16;} 159 | .tg-headervtwo .tg-btnbookseat{color:#444349;} -------------------------------------------------------------------------------- /css/colors/default.css: -------------------------------------------------------------------------------- 1 | /*============================================= 2 | Theme Color 3 | =============================================*/ 4 | a, 5 | p a, 6 | p a:hover, 7 | a:hover, 8 | a:focus, 9 | a:active, 10 | .tg-stars span:after, 11 | .tg-btn:hover, 12 | .tg-sectionheading h3, 13 | .tg-eventcounter span, 14 | .tg-speaker:hover .tg-posttitle h3 a, 15 | .tg-featuretag, 16 | .tg-eventvenuenav li.active a, 17 | .tg-eventvenuenav li:hover a, 18 | .tg-navfilterbale li a:hover, 19 | .tg-navfilterbale li a.tg-active, 20 | .tg-package:hover .tg-packagehead h2, 21 | .tg-package:hover .tg-price h3, 22 | .tg-package:hover .tg-price sup, 23 | .tg-package:hover .tg-price sub, 24 | .tg-package:hover .tg-btn, 25 | .tg-panel > h4:hover, 26 | .tg-panel > h4.active, 27 | .tg-panel > h4:hover:after, 28 | .tg-panel > h4.active:after, 29 | .tg-tags li:hover a, 30 | .tg-bannersocialicons li:hover a i, 31 | .tg-formsortshoitems fieldset .tg-select select, 32 | .tg-formsortshoitems fieldset .tg-select select option, 33 | .tg-404errorcontent h3, 34 | .tg-detailhead h3, 35 | .tg-widget ul li:hover a em, 36 | .tg-widget ul li:hover a em i, 37 | .tg-widget ul li:hover a span, 38 | .tg-trendingposts li:hover .tg-postcontent h4 a, 39 | .tg-stylevtwo .tg-sectionhead h2, 40 | .tg-btnroundprev:hover, 41 | .tg-btnroundnext:hover, 42 | .tg-btnvideoplay:hover, 43 | .tg-btnvideoplay:hover i, 44 | .tg-calltoaction h2, 45 | .tg-footercolumn.tg-widgetrecentposts ul li h4:hover a, 46 | .tg-footercolumn.tg-widgetrecentposts ul li time:hover a, 47 | .tg-newsletterbox button, 48 | .tg-btnvthree, 49 | .tg-packagesvtwo .tg-package .tg-price h3, 50 | .tg-alertcontent strong{color: #d90845;} 51 | /*============================================= 52 | Theme Background Color 53 | =============================================*/ 54 | .tg-btn:after, 55 | .tg-theme-tag, 56 | .tg-btnbookseat, 57 | .tg-btnbookseat:hover, 58 | .tg-eventschedulenav li.active a, 59 | .tg-eventschedulenav li:hover a, 60 | .tg-btnfarword:hover, 61 | .tg-btndownloadschedule, 62 | .tg-badge, 63 | .tg-inputicon button, 64 | .tg-pagination ul li:hover a, 65 | .tg-pagination ul li.tg-prevpage:hover a, 66 | .tg-pagination ul li.tg-nextpage:hover a, 67 | .tg-tagsshare .tg-tag:hover, 68 | .tg-date, 69 | .tg-themepost:hover figure .tg-timetag, 70 | .tg-btnvtwo:hover, 71 | .tg-rockstarslider .tg-themepost figure, 72 | .tg-rockstarslider .owl-dots .owl-dot:hover span, 73 | .tg-rockstarslider .owl-dots .owl-dot.active span, 74 | .tg-stylevtwo .tg-testimonial, 75 | .tg-clientfeedback .tg-testimonialslider:before, 76 | .tg-clientfeedback .tg-testimonialslider:after, 77 | .tg-concertschedulelist > .tg-concertschedule:hover, 78 | .tg-sponsorbrands li:hover, 79 | .tg-topbar, 80 | .tg-headervthree .tg-navigation > ul > li > a:after, 81 | .tg-tag:hover, 82 | .tg-packagesvtwo .tg-package.tg-formshow .tg-packagehead h2, 83 | .tg-btnformpkghide, 84 | .tg-bannerholdervfour .tg-slidercontent h1 span, 85 | .tg-nav .navbar-toggle .icon-bar, 86 | .tg-headervthree .tg-nav .navbar-toggle, 87 | .tg-headervfour .tg-nav .navbar-toggle, 88 | .tg-headervtwo .tg-nav .navbar-toggle, 89 | ul.colors .color1, 90 | .tg-alert i{background:#d90845;} 91 | .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 92 | .tg-btnvthree:hover{background:#d90845 !important;} 93 | /*============================================= 94 | Theme Border Color 95 | =============================================*/ 96 | .tg-theme-tag:after, 97 | .tg-theme-tag:before, 98 | input:focus, 99 | .select select:focus, 100 | .form-control:focus, 101 | .tg-eventschedulenav li.active a, 102 | .tg-eventschedulenav li:hover a, 103 | .tg-eventschedulecontent, 104 | .tg-btnfarword:hover, 105 | .tg-badge:before, 106 | .tg-hallname, 107 | .tg-tagsshare .tg-tag:hover, 108 | .sub-menu.tg-darkmenu > li > a:hover, 109 | .sub-menu.tg-darkmenu > li:hover > a, 110 | .tg-btnvtwo, 111 | .tg-btndownloadschedule:before, 112 | .tg-homevtwo .tg-header, 113 | .tg-bannerholdervthree .tg-slidercontent, 114 | .tg-btnvideoplay:hover, 115 | .tg-serviceimg:hover .tg-servicecontent, 116 | .tg-servicetitle h2 a, 117 | .tg-tag:hover, 118 | .tg-btnvthree{border-color: #d90845;} -------------------------------------------------------------------------------- /data/api/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "0.0.1": [ 3 | { 4 | "logo": "https://in.pycon.org/2017/images/logo.png", 5 | "website":"https://in.pycon.org/2017/", 6 | "about":"PyCon India, the premier conference in India on using and developing the Python programming language is conducted annually by the Python developer community. It attracts the best Python programmers from across the country and abroad." 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /data/api/community.json: -------------------------------------------------------------------------------- 1 | { 2 | "0.0.1":[ 3 | { 4 | "name": "PyCon India", 5 | "about": "PyCon India, the premier conference in India on using and developing the Python programming language is conducted annually by the Python developer community. It attracts the best Python programmers from across the country and abroad.", 6 | "photo": "https://in.pycon.org/2017/images/logo.png", 7 | "social":{ 8 | "website": "https://in.pycon.org/2017/", 9 | "twitter": "https://twitter.com/pyconindia", 10 | "facebook": "https://www.facebook.com/pyconindia", 11 | "github": "https://github.com/pyythonindia", 12 | "youtube": "https://www.youtube.com/user/inpycon", 13 | } 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/api/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "0.0.1":[{ 3 | "name": "PyCon India 2017", 4 | "venue": "Shaheed Sukhdev College Of Business Studies", 5 | "start_date": "2017-10-02T8:00:00Z", 6 | "end_date": "2017-10-05T18:00:00Z", 7 | "venue_partners": [{ 8 | "name": "Shaheed Sukhdev College Of Business Studies", 9 | "about": "Shaheed Sukhdev College of Business Studies (CBS) is one of the premier institution of the University of Delhi, imparting education in the fields of management and information technology with excellence and vision. It was established in August,1987 by the Delhi Administration on the initiation of UGC and the Ministry of Human Resources. The vision behind the college was of its first principal Dr. S.S. Gulshan.", 10 | "url": "http://www.sscbs.du.ac.in/" 11 | }] 12 | }] 13 | } 14 | -------------------------------------------------------------------------------- /data/api/scraper.py: -------------------------------------------------------------------------------- 1 | ''' 2 | WebScraper to scrap and generate tracks.json file 3 | 4 | Requirements: 5 | beautifulsoup4==4.6.0 6 | certifi==2017.7.27.1 7 | chardet==3.0.4 8 | html2text==2017.10.4 9 | idna==2.6 10 | requests==2.18.4 11 | urllib3==1.22 12 | ''' 13 | 14 | from bs4 import BeautifulSoup 15 | import requests, json, re, html2text 16 | 17 | h = html2text.HTML2Text() 18 | 19 | print(" Parsing JSON File") 20 | 21 | # Open tracks.json in read mode 22 | tracks_file = open("tracks.json","r") 23 | tracks = json.loads(tracks_file.read()) 24 | tracks = tracks['0.0.1'][0] 25 | track_talks = [] # Holds the list of titles of all talks in tracks.json 26 | for track in tracks: 27 | track_talks.append(str.lower(tracks[track]['title'])) 28 | 29 | print("\n Total Talks in JSON File: "+str(len(track_talks))) 30 | 31 | # Get all talks from https://in.pycon.org/cfp/2017/proposals 32 | print(" Fetching Talks from Remote") 33 | baseurl = "https://in.pycon.org" 34 | r = requests.get(baseurl+"/cfp/2017/proposals/") 35 | if(r.status_code!=200): 36 | print("Network Error: Status: "+r.status_code) 37 | exit() 38 | soup = BeautifulSoup(r.text, "html.parser") 39 | titles = soup.select(".proposal-list-content") 40 | talks = {} # Stores Matched Talks from Remote 41 | counter = 0 # Stores Total Talks Scraped 42 | total = len(titles) # Stores Total unmber of Talks from remote 43 | 44 | print("\n Total talks in remote: "+str(total)) 45 | 46 | def remove_white_space(text): 47 | ''' 48 | Removes Whitespaces from Starting and End of Text 49 | ''' 50 | return re.sub(r'(^\s{0,})|(\s{0,}$)',"",text) 51 | 52 | # Start scraping the retreived talks from remote 53 | for title in titles: 54 | counter = counter + 1 55 | 56 | url = baseurl+title.select(".proposal--title a")[0]["href"] 57 | right_section = title.select(".clearfix .pull-right b") 58 | 59 | # Remove " (~username)" from the speaker name and replace underscores by spaces 60 | speaker = re.sub(r'\s{0,}\(~[\w-]{0,}\)',"",remove_white_space(right_section[0].get_text())).replace("_"," ") 61 | # date = remove_white_space(right_section[1].get_text()) 62 | 63 | print("\n\033[1m Scraping "+str(counter)+"/"+str(total)+" "+url+"\033[0m") 64 | 65 | rt = requests.get(url) 66 | 67 | page = BeautifulSoup(rt.text, "html.parser") 68 | 69 | proposal_title = remove_white_space(page.select(".proposal-title")[0].get_text()) 70 | proposal_description = page.select(".proposal-writeup .proposal-writeup--section") 71 | proposal_type = str.lower(re.sub(r's$',"",page.select(".proposal-meta tr")[1].select("td")[1].get_text())) 72 | print(" Title: \033[4m"+proposal_title+"\033[0m by "+speaker+"\n Type: "+proposal_type) 73 | 74 | if(str.lower(proposal_title) in track_talks): 75 | print(" \033[1;32;40m Match Found \033[0m") 76 | description = "" 77 | for section in proposal_description: 78 | # convert each section to markdown 79 | description += h.handle(str(section)) 80 | #description += "
" 81 | #description += str(section.select(".heading")[0]) + "
" 82 | #for p in section.find_all("p"): 83 | #description+= str(p.replace("\n","
")) 84 | #description = description.replace("\n","
") 85 | description = description.replace("\n", "\\n") # Escape Newline Characters 86 | talks.update({counter:{"title":proposal_title,"description":description,"type":proposal_type,"cfp":url,"speaker":{"name":speaker,"info":"","photo":""}}}) 87 | else: 88 | print(" \033[1;31;40m Not Found \033[0m") 89 | 90 | final_talks = {"0.0.1":[{}]} 91 | for track in tracks: 92 | flag = 0 93 | track_title = tracks[track]["title"] 94 | for talk in talks: 95 | talk_title = talks[talk]["title"] 96 | if str.lower(track_title) == str.lower(talk_title): 97 | final_talks["0.0.1"][0].update({track:talks[talk]}) 98 | flag = 1 99 | if flag == 0: 100 | try: 101 | print(tracks[track]["cfp"]) 102 | except KeyError as e: 103 | tracks[track].update({"cfp":""}) 104 | final_talks["0.0.1"][0].update({track:tracks[track]}) 105 | file_obj = open("tracks-new.json","w") 106 | file_obj.write(json.dumps(final_talks)) 107 | -------------------------------------------------------------------------------- /data/api/sponsors.json: -------------------------------------------------------------------------------- 1 | { 2 | "0.0.1": [ 3 | { 4 | "name": "Visible Alpha", 5 | "type": "Gold", 6 | "website": "http://visiblealpha.com/", 7 | "logo": "https://in.pycon.org/2017/images/sponsor/visiblealpha.png", 8 | "about": "https://in.pycon.org/2017/" 9 | }, 10 | { 11 | "name": "ZeOmega", 12 | "type": "Silver", 13 | "website": "http://www.zeomega.com/", 14 | "logo": "https://in.pycon.org/2017/images/sponsor/zeomega.png", 15 | "about": "https://in.pycon.org/2017/" 16 | }, 17 | { 18 | "name": "Adobe", 19 | "type": "Silver", 20 | "website": "https://www.adobe.com/", 21 | "logo": "https://in.pycon.org/2017/images/sponsor/adobe.jpg", 22 | "about": "https://in.pycon.org/2017/" 23 | }, 24 | { 25 | "name": "Python Software Foundation", 26 | "type": "Silver", 27 | "website": "https://www.python.org/psf-landing/", 28 | "logo": "https://in.pycon.org/2017/images/sponsor/psf.png", 29 | "about": "https://in.pycon.org/2017/" 30 | } 31 | ] 32 | } 33 | -------------------------------------------------------------------------------- /data/sponsorship_prospectus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/data/sponsorship_prospectus.pdf -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/fonts/icomoon.eot -------------------------------------------------------------------------------- /fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/fonts/icomoon.ttf -------------------------------------------------------------------------------- /fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/fonts/icomoon.woff -------------------------------------------------------------------------------- /images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/ajax-loader.gif -------------------------------------------------------------------------------- /images/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/bg-parallax/bg-parallax-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/bg-parallax/bg-parallax-01.jpg -------------------------------------------------------------------------------- /images/btn-scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/btn-scroll.png -------------------------------------------------------------------------------- /images/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/colors.png -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/favicon.png -------------------------------------------------------------------------------- /images/gallery/2013/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2013/1.png -------------------------------------------------------------------------------- /images/gallery/2013/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2013/10.png -------------------------------------------------------------------------------- /images/gallery/2013/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2013/11.png -------------------------------------------------------------------------------- /images/gallery/2013/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2013/12.png -------------------------------------------------------------------------------- /images/gallery/2013/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2013/2.png -------------------------------------------------------------------------------- /images/gallery/2013/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2013/3.png -------------------------------------------------------------------------------- /images/gallery/2013/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2013/4.png -------------------------------------------------------------------------------- /images/gallery/2013/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2013/5.png -------------------------------------------------------------------------------- /images/gallery/2013/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2013/6.png -------------------------------------------------------------------------------- /images/gallery/2013/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2013/7.png -------------------------------------------------------------------------------- /images/gallery/2013/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2013/8.png -------------------------------------------------------------------------------- /images/gallery/2013/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2013/9.png -------------------------------------------------------------------------------- /images/gallery/2014/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2014/1.png -------------------------------------------------------------------------------- /images/gallery/2014/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2014/2.png -------------------------------------------------------------------------------- /images/gallery/2014/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2014/3.png -------------------------------------------------------------------------------- /images/gallery/2014/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2014/4.png -------------------------------------------------------------------------------- /images/gallery/2014/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2014/5.png -------------------------------------------------------------------------------- /images/gallery/2014/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2014/6.png -------------------------------------------------------------------------------- /images/gallery/2014/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2014/7.png -------------------------------------------------------------------------------- /images/gallery/2014/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2014/8.png -------------------------------------------------------------------------------- /images/gallery/2014/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2014/9.png -------------------------------------------------------------------------------- /images/gallery/2015/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2015/1.jpg -------------------------------------------------------------------------------- /images/gallery/2015/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2015/10.png -------------------------------------------------------------------------------- /images/gallery/2015/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2015/11.png -------------------------------------------------------------------------------- /images/gallery/2015/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2015/2.jpg -------------------------------------------------------------------------------- /images/gallery/2015/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2015/3.png -------------------------------------------------------------------------------- /images/gallery/2015/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2015/4.jpg -------------------------------------------------------------------------------- /images/gallery/2015/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2015/5.png -------------------------------------------------------------------------------- /images/gallery/2015/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2015/6.jpg -------------------------------------------------------------------------------- /images/gallery/2015/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2015/7.jpg -------------------------------------------------------------------------------- /images/gallery/2015/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2015/8.jpg -------------------------------------------------------------------------------- /images/gallery/2015/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2015/9.jpg -------------------------------------------------------------------------------- /images/gallery/2016/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2016/1.png -------------------------------------------------------------------------------- /images/gallery/2016/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2016/10.png -------------------------------------------------------------------------------- /images/gallery/2016/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2016/11.png -------------------------------------------------------------------------------- /images/gallery/2016/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2016/12.png -------------------------------------------------------------------------------- /images/gallery/2016/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2016/2.png -------------------------------------------------------------------------------- /images/gallery/2016/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2016/3.png -------------------------------------------------------------------------------- /images/gallery/2016/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2016/4.png -------------------------------------------------------------------------------- /images/gallery/2016/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2016/5.png -------------------------------------------------------------------------------- /images/gallery/2016/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2016/6.png -------------------------------------------------------------------------------- /images/gallery/2016/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2016/7.png -------------------------------------------------------------------------------- /images/gallery/2016/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2016/8.png -------------------------------------------------------------------------------- /images/gallery/2016/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/gallery/2016/9.png -------------------------------------------------------------------------------- /images/headerborder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/headerborder.jpg -------------------------------------------------------------------------------- /images/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/img-01.jpg -------------------------------------------------------------------------------- /images/innerbanner-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/innerbanner-img.jpg -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/logo.png -------------------------------------------------------------------------------- /images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/logo2.png -------------------------------------------------------------------------------- /images/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/logo3.png -------------------------------------------------------------------------------- /images/logo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/logo4.png -------------------------------------------------------------------------------- /images/logo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/logo5.png -------------------------------------------------------------------------------- /images/logo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/logo6.png -------------------------------------------------------------------------------- /images/logo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/logo7.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/dark_rounded/btnNext.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/dark_rounded/btnPrevious.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_rounded/contentPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/dark_rounded/contentPattern.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_rounded/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/dark_rounded/default_thumbnail.gif -------------------------------------------------------------------------------- /images/prettyPhoto/dark_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/dark_rounded/loader.gif -------------------------------------------------------------------------------- /images/prettyPhoto/dark_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/dark_rounded/sprite.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/dark_square/btnNext.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/dark_square/btnPrevious.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_square/contentPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/dark_square/contentPattern.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_square/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/dark_square/default_thumbnail.gif -------------------------------------------------------------------------------- /images/prettyPhoto/dark_square/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/dark_square/loader.gif -------------------------------------------------------------------------------- /images/prettyPhoto/dark_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/dark_square/sprite.png -------------------------------------------------------------------------------- /images/prettyPhoto/default/default_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/default/default_thumb.png -------------------------------------------------------------------------------- /images/prettyPhoto/default/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/default/loader.gif -------------------------------------------------------------------------------- /images/prettyPhoto/default/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/default/sprite.png -------------------------------------------------------------------------------- /images/prettyPhoto/default/sprite_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/default/sprite_next.png -------------------------------------------------------------------------------- /images/prettyPhoto/default/sprite_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/default/sprite_prev.png -------------------------------------------------------------------------------- /images/prettyPhoto/default/sprite_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/default/sprite_x.png -------------------------------------------------------------------------------- /images/prettyPhoto/default/sprite_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/default/sprite_y.png -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/facebook/btnNext.png -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/facebook/btnPrevious.png -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/contentPatternBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/facebook/contentPatternBottom.png -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/contentPatternLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/facebook/contentPatternLeft.png -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/contentPatternRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/facebook/contentPatternRight.png -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/contentPatternTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/facebook/contentPatternTop.png -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/facebook/default_thumbnail.gif -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/facebook/loader.gif -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/facebook/sprite.png -------------------------------------------------------------------------------- /images/prettyPhoto/light_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/light_rounded/btnNext.png -------------------------------------------------------------------------------- /images/prettyPhoto/light_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/light_rounded/btnPrevious.png -------------------------------------------------------------------------------- /images/prettyPhoto/light_rounded/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/light_rounded/default_thumbnail.gif -------------------------------------------------------------------------------- /images/prettyPhoto/light_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/light_rounded/loader.gif -------------------------------------------------------------------------------- /images/prettyPhoto/light_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/light_rounded/sprite.png -------------------------------------------------------------------------------- /images/prettyPhoto/light_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/light_square/btnNext.png -------------------------------------------------------------------------------- /images/prettyPhoto/light_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/light_square/btnPrevious.png -------------------------------------------------------------------------------- /images/prettyPhoto/light_square/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/light_square/default_thumbnail.gif -------------------------------------------------------------------------------- /images/prettyPhoto/light_square/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/light_square/loader.gif -------------------------------------------------------------------------------- /images/prettyPhoto/light_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/prettyPhoto/light_square/sprite.png -------------------------------------------------------------------------------- /images/slider/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/slider/img-01.jpg -------------------------------------------------------------------------------- /images/speakers/elizabeth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/speakers/elizabeth.png -------------------------------------------------------------------------------- /images/speakers/noufal_ibrahim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/speakers/noufal_ibrahim.jpg -------------------------------------------------------------------------------- /images/speakers/ola-sitarski.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/speakers/ola-sitarski.jpg -------------------------------------------------------------------------------- /images/speakers/peter_wang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/speakers/peter_wang.jpg -------------------------------------------------------------------------------- /images/sponsor/adobe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/sponsor/adobe.jpg -------------------------------------------------------------------------------- /images/sponsor/fossee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/sponsor/fossee.png -------------------------------------------------------------------------------- /images/sponsor/hypertrack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/sponsor/hypertrack.png -------------------------------------------------------------------------------- /images/sponsor/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/sponsor/microsoft.png -------------------------------------------------------------------------------- /images/sponsor/pipal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/sponsor/pipal.png -------------------------------------------------------------------------------- /images/sponsor/psf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/sponsor/psf.png -------------------------------------------------------------------------------- /images/sponsor/tensor_flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/sponsor/tensor_flow.jpg -------------------------------------------------------------------------------- /images/sponsor/visiblealpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/sponsor/visiblealpha.png -------------------------------------------------------------------------------- /images/sponsor/zeomega.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/images/sponsor/zeomega.png -------------------------------------------------------------------------------- /js/appear.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery.appear 3 | * http://code.google.com/p/jquery-appear/ 4 | * 5 | * Copyright (c) 2009 Michael Hixson 6 | * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) 7 | */ 8 | (function($){$.fn.appear=function(f,o){var s=$.extend({one:true},o);return this.each(function(){var t=$(this);t.appeared=false;if(!f){t.trigger('appear',s.data);return;}var w=$(window);var c=function(){if(!t.is(':visible')){t.appeared=false;return;}var a=w.scrollLeft();var b=w.scrollTop();var o=t.offset();var x=o.left;var y=o.top;if(y+t.height()>=b&&y<=b+w.height()&&x+t.width()>=a&&x<=a+w.width()){if(!t.appeared)t.trigger('appear',s.data);}else{t.appeared=false;}};var m=function(){t.appeared=true;if(s.one){w.unbind('scroll',c);var i=$.inArray(c,$.fn.appear.checks);if(i>=0)$.fn.appear.checks.splice(i,1);}f.apply(this,arguments);};if(s.one)t.one('appear',s.data,m);else t.bind('appear',s.data,m);w.scroll(c);$.fn.appear.checks.push(c);(c)();});};$.extend($.fn.appear,{checks:[],timeout:null,checkAll:function(){var l=$.fn.appear.checks.length;if(l>0)while(l--)($.fn.appear.checks[l])();},run:function(){if($.fn.appear.timeout)clearTimeout($.fn.appear.timeout);$.fn.appear.timeout=setTimeout($.fn.appear.checkAll,20);}});$.each(['append','prepend','after','before','attr','removeAttr','addClass','removeClass','toggleClass','remove','css','show','hide'],function(i,n){var u=$.fn[n];if(u){$.fn[n]=function(){var r=u.apply(this,arguments);$.fn.appear.run();return r;}}});})(jQuery); -------------------------------------------------------------------------------- /js/color-switcher.js: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------- 2 | * Product Name: Color-Switcher-Plugin 3 | * Product URI: http://shariarbd.com/demo/color-switcher-plugin/ 4 | * Author: Shariar 5 | * Author URI: http://shariarbd.com/ 6 | * Description: Color Switcher plugin is a simple and easy to use plugin used to switch color of a site. 7 | * Version: 1.0.0 8 | * License: The MIT License (MIT) 9 | * Tags: color switcher 10 | * ---------------------------------------------------------------------- */ 11 | 12 | /* Styles Switcher 13 | ------------------------------------------------------------------------ */ 14 | 15 | window.console = window.console || (function(){ 16 | var c = {}; c.log = c.warn = c.debug = c.info = c.error = c.time = c.dir = c.profile = c.clear = c.exception = c.trace = c.assert = function(){}; 17 | return c; 18 | })(); 19 | 20 | 21 | jQuery(document).ready(function($) { 22 | "use strict" 23 | jQuery("ul.colors .color1" ).on('click', function(){ 24 | jQuery("#colors" ).attr("href", "css/colors/default.css" ); 25 | return false; 26 | }); 27 | jQuery("ul.colors .color2" ).on('click', function(){ 28 | jQuery("#colors" ).attr("href", "css/colors/color-2.css" ); 29 | return false; 30 | }); 31 | jQuery("ul.colors .color3" ).on('click', function(){ 32 | jQuery("#colors" ).attr("href", "css/colors/color-3.css" ); 33 | return false; 34 | }); 35 | jQuery("ul.colors .color4" ).on('click', function(){ 36 | jQuery("#colors" ).attr("href", "css/colors/color-4.css" ); 37 | return false; 38 | }); 39 | jQuery("ul.colors .color5" ).on('click', function(){ 40 | jQuery("#colors" ).attr("href", "css/colors/color-5.css" ); 41 | return false; 42 | }); 43 | jQuery("#color-style-switcher .bottom a.settings").on('click', function(e){ 44 | e.preventDefault(); 45 | var div = jQuery("#color-style-switcher"); 46 | if (div.css("left") === "-60px") { 47 | jQuery("#color-style-switcher").animate({ 48 | left: "0" 49 | }); 50 | } else { 51 | jQuery("#color-style-switcher").animate({ 52 | left: "-60px" 53 | }); 54 | } 55 | }) 56 | jQuery("ul.colors li a").on('click', function(e){ 57 | e.preventDefault(); 58 | jQuery(this).parent().parent().find("a").removeClass("active"); 59 | jQuery(this).addClass("active"); 60 | }) 61 | }); 62 | jQuery('head').append(''); 63 | jQuery('head').append(''); 64 | jQuery('body').append('' + 65 | '
' + 66 | '
' + 67 | '' + 74 | '
' + 75 | '
' + 76 | '
' + 77 | ''); -------------------------------------------------------------------------------- /js/countTo.js: -------------------------------------------------------------------------------- 1 | (function (factory) { 2 | if (typeof define === 'function' && define.amd) { 3 | // AMD 4 | define(['jquery'], factory); 5 | } else if (typeof exports === 'object') { 6 | // CommonJS 7 | factory(require('jquery')); 8 | } else { 9 | // Browser globals 10 | factory(jQuery); 11 | } 12 | }(function ($) { 13 | var CountTo = function (element, options) { 14 | this.$element = $(element); 15 | this.options = $.extend({}, CountTo.DEFAULTS, this.dataOptions(), options); 16 | this.init(); 17 | }; 18 | 19 | CountTo.DEFAULTS = { 20 | from: 0, // the number the element should start at 21 | to: 0, // the number the element should end at 22 | speed: 1000, // how long it should take to count between the target numbers 23 | refreshInterval: 100, // how often the element should be updated 24 | decimals: 0, // the number of decimal places to show 25 | formatter: formatter, // handler for formatting the value before rendering 26 | onUpdate: null, // callback method for every time the element is updated 27 | onComplete: null // callback method for when the element finishes updating 28 | }; 29 | 30 | CountTo.prototype.init = function () { 31 | this.value = this.options.from; 32 | this.loops = Math.ceil(this.options.speed / this.options.refreshInterval); 33 | this.loopCount = 0; 34 | this.increment = (this.options.to - this.options.from) / this.loops; 35 | }; 36 | 37 | CountTo.prototype.dataOptions = function () { 38 | var options = { 39 | from: this.$element.data('from'), 40 | to: this.$element.data('to'), 41 | speed: this.$element.data('speed'), 42 | refreshInterval: this.$element.data('refresh-interval'), 43 | decimals: this.$element.data('decimals') 44 | }; 45 | 46 | var keys = Object.keys(options); 47 | 48 | for (var i in keys) { 49 | var key = keys[i]; 50 | 51 | if (typeof(options[key]) === 'undefined') { 52 | delete options[key]; 53 | } 54 | } 55 | 56 | return options; 57 | }; 58 | 59 | CountTo.prototype.update = function () { 60 | this.value += this.increment; 61 | this.loopCount++; 62 | 63 | this.render(); 64 | 65 | if (typeof(this.options.onUpdate) == 'function') { 66 | this.options.onUpdate.call(this.$element, this.value); 67 | } 68 | 69 | if (this.loopCount >= this.loops) { 70 | clearInterval(this.interval); 71 | this.value = this.options.to; 72 | 73 | if (typeof(this.options.onComplete) == 'function') { 74 | this.options.onComplete.call(this.$element, this.value); 75 | } 76 | } 77 | }; 78 | 79 | CountTo.prototype.render = function () { 80 | var formattedValue = this.options.formatter.call(this.$element, this.value, this.options); 81 | this.$element.text(formattedValue); 82 | }; 83 | 84 | CountTo.prototype.restart = function () { 85 | this.stop(); 86 | this.init(); 87 | this.start(); 88 | }; 89 | 90 | CountTo.prototype.start = function () { 91 | this.stop(); 92 | this.render(); 93 | this.interval = setInterval(this.update.bind(this), this.options.refreshInterval); 94 | }; 95 | 96 | CountTo.prototype.stop = function () { 97 | if (this.interval) { 98 | clearInterval(this.interval); 99 | } 100 | }; 101 | 102 | CountTo.prototype.toggle = function () { 103 | if (this.interval) { 104 | this.stop(); 105 | } else { 106 | this.start(); 107 | } 108 | }; 109 | 110 | function formatter(value, options) { 111 | return value.toFixed(options.decimals); 112 | } 113 | 114 | $.fn.countTo = function (option) { 115 | return this.each(function () { 116 | var $this = $(this); 117 | var data = $this.data('countTo'); 118 | var init = !data || typeof(option) === 'object'; 119 | var options = typeof(option) === 'object' ? option : {}; 120 | var method = typeof(option) === 'string' ? option : 'start'; 121 | 122 | if (init) { 123 | if (data) data.stop(); 124 | $this.data('countTo', data = new CountTo(this, options)); 125 | } 126 | 127 | data[method].call(data); 128 | }); 129 | }; 130 | })); 131 | -------------------------------------------------------------------------------- /js/feed.js: -------------------------------------------------------------------------------- 1 | $('document').ready(function(){ 2 | /* Change feed url to '/data/test.xml' for testing on local server */ 3 | feedUrl = '/blog/feeds/2017.atom.xml'; 4 | $.get(feedUrl, function(data) { 5 | blogs = data.getElementsByTagName("entry"); 6 | for(var x=0; x < blogs.length; x++) { 7 | title = blogs[x].getElementsByTagName("title")[0].innerHTML; 8 | link = blogs[x].getElementsByTagName("link")[0].attributes["href"].value; 9 | date = blogs[x].getElementsByTagName("published")[0].innerHTML.split("T")[0]; 10 | reg = /

\w*.*<\/p>/ 11 | text = $.parseHTML(blogs[x].getElementsByTagName("summary")[0].innerHTML); 12 | text = reg.exec(text[0]["data"])[0]; 13 | $('#blogBlock')[0].innerHTML = $('#blogBlock')[0].innerHTML + ` 14 |

15 |
16 |
17 |
18 |

`+ title +`

19 |
20 |
21 | `+ text +` 22 | contiue reading... 23 |
24 |
25 |
Published : `+ date +`
26 |
27 |
28 |
29 |
`; 30 | } 31 | }); 32 | }); 33 | -------------------------------------------------------------------------------- /js/init.wow.js: -------------------------------------------------------------------------------- 1 | new WOW().init(); 2 | -------------------------------------------------------------------------------- /js/vendor/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /js/vendor/twitter-post-fetcher-config.js: -------------------------------------------------------------------------------- 1 | /*Twitter Post Fetcher config*/ 2 | 3 | var configProfile = { 4 | "profile": {"screenName": 'pyconindia'}, 5 | "domId": 'pyconindia-tweets', 6 | "maxTweets": 5, 7 | "enableLinks": true, 8 | "showUser": true, 9 | "showTime": true, 10 | "showImages": true, 11 | "lang": 'en' 12 | }; 13 | twitterFetcher.fetch(configProfile); 14 | 15 | -------------------------------------------------------------------------------- /js/wow/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/js/wow/LICENSE.md -------------------------------------------------------------------------------- /js/wow/init.wow.js: -------------------------------------------------------------------------------- 1 | new WOW().init(); 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | staticjinja==0.3.3 2 | -------------------------------------------------------------------------------- /specs/HTML/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/apple-touch-icon.png -------------------------------------------------------------------------------- /specs/HTML/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /specs/HTML/css/color.css: -------------------------------------------------------------------------------- 1 | /*============================================= 2 | Theme Color 3 | =============================================*/ 4 | a, 5 | p a, 6 | p a:hover, 7 | a:hover, 8 | a:focus, 9 | a:active, 10 | .tg-stars span:after, 11 | .tg-btn:hover, 12 | .tg-sectionheading h3, 13 | .tg-eventcounter span, 14 | .tg-speaker:hover .tg-posttitle h3 a, 15 | .tg-featuretag, 16 | .tg-eventvenuenav li.active a, 17 | .tg-eventvenuenav li:hover a, 18 | .tg-navfilterbale li a:hover, 19 | .tg-navfilterbale li a.tg-active, 20 | .tg-package:hover .tg-packagehead h2, 21 | .tg-package:hover .tg-price h3, 22 | .tg-package:hover .tg-price sup, 23 | .tg-package:hover .tg-price sub, 24 | .tg-package:hover .tg-btn, 25 | .tg-panel > h4:hover, 26 | .tg-panel > h4.active, 27 | .tg-panel > h4:hover:after, 28 | .tg-panel > h4.active:after, 29 | .tg-tags li:hover a, 30 | .tg-bannersocialicons li:hover a i, 31 | .tg-formsortshoitems fieldset .tg-select select, 32 | .tg-formsortshoitems fieldset .tg-select select option, 33 | .tg-404errorcontent h3, 34 | .tg-detailhead h3, 35 | .tg-widget ul li:hover a em, 36 | .tg-widget ul li:hover a em i, 37 | .tg-widget ul li:hover a span, 38 | .tg-trendingposts li:hover .tg-postcontent h4 a, 39 | .tg-stylevtwo .tg-sectionhead h2, 40 | .tg-btnroundprev:hover, 41 | .tg-btnroundnext:hover, 42 | .tg-btnvideoplay:hover, 43 | .tg-btnvideoplay:hover i, 44 | .tg-calltoaction h2, 45 | .tg-footercolumn.tg-widgetrecentposts ul li h4:hover a, 46 | .tg-footercolumn.tg-widgetrecentposts ul li time:hover a, 47 | .tg-newsletterbox button, 48 | .tg-btnvthree, 49 | .tg-packagesvtwo .tg-package .tg-price h3, 50 | .tg-alertcontent strong{color: #d90845;} 51 | /*============================================= 52 | Theme Background Color 53 | =============================================*/ 54 | .tg-btn:after, 55 | .tg-theme-tag, 56 | .tg-btnbookseat, 57 | .tg-btnbookseat:hover, 58 | .tg-eventschedulenav li.active a, 59 | .tg-eventschedulenav li:hover a, 60 | .tg-btnfarword:hover, 61 | .tg-btndownloadschedule, 62 | .tg-badge, 63 | .tg-inputicon button, 64 | .tg-pagination ul li:hover a, 65 | .tg-pagination ul li.tg-prevpage:hover a, 66 | .tg-pagination ul li.tg-nextpage:hover a, 67 | .tg-tagsshare .tg-tag:hover, 68 | .tg-date, 69 | .tg-themepost:hover figure .tg-timetag, 70 | .tg-btnvtwo:hover, 71 | .tg-rockstarslider .tg-themepost figure, 72 | .tg-rockstarslider .owl-dots .owl-dot:hover span, 73 | .tg-rockstarslider .owl-dots .owl-dot.active span, 74 | .tg-stylevtwo .tg-testimonial, 75 | .tg-clientfeedback .tg-testimonialslider:before, 76 | .tg-clientfeedback .tg-testimonialslider:after, 77 | .tg-concertschedulelist > .tg-concertschedule:hover, 78 | .tg-sponsorbrands li:hover, 79 | .tg-topbar, 80 | .tg-headervthree .tg-navigation > ul > li > a:after, 81 | .tg-tag:hover, 82 | .tg-packagesvtwo .tg-package.tg-formshow .tg-packagehead h2, 83 | .tg-btnformpkghide, 84 | .tg-bannerholdervfour .tg-slidercontent h1 span, 85 | .tg-nav .navbar-toggle .icon-bar, 86 | .tg-headervthree .tg-nav .navbar-toggle, 87 | .tg-headervfour .tg-nav .navbar-toggle, 88 | .tg-headervtwo .tg-nav .navbar-toggle, 89 | .tg-alert i{background:#d90845;} 90 | .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 91 | .tg-btnvthree:hover{background:#d90845 !important;} 92 | /*============================================= 93 | Theme Border Color 94 | =============================================*/ 95 | .tg-theme-tag:after, 96 | .tg-theme-tag:before, 97 | input:focus, 98 | .select select:focus, 99 | .form-control:focus, 100 | .tg-eventschedulenav li.active a, 101 | .tg-eventschedulenav li:hover a, 102 | .tg-eventschedulecontent, 103 | .tg-btnfarword:hover, 104 | .tg-badge:before, 105 | .tg-hallname, 106 | .tg-tagsshare .tg-tag:hover, 107 | .sub-menu.tg-darkmenu > li > a:hover, 108 | .sub-menu.tg-darkmenu > li:hover > a, 109 | .tg-btnvtwo, 110 | .tg-btndownloadschedule:before, 111 | .tg-homevtwo .tg-header, 112 | .tg-bannerholdervthree .tg-slidercontent, 113 | .tg-btnvideoplay:hover, 114 | .tg-serviceimg:hover .tg-servicecontent, 115 | .tg-servicetitle h2 a, 116 | .tg-tag:hover, 117 | .tg-btnvthree{border-color: #d90845;} -------------------------------------------------------------------------------- /specs/HTML/css/colors/color-3.css: -------------------------------------------------------------------------------- 1 | /*============================================= 2 | Theme Color 3 | =============================================*/ 4 | a, 5 | p a, 6 | p a:hover, 7 | a:hover, 8 | a:focus, 9 | a:active, 10 | .tg-stars span:after, 11 | .tg-btn:hover, 12 | .tg-sectionheading h3, 13 | .tg-eventcounter span, 14 | .tg-speaker:hover .tg-posttitle h3 a, 15 | .tg-featuretag, 16 | .tg-eventvenuenav li.active a, 17 | .tg-eventvenuenav li:hover a, 18 | .tg-navfilterbale li a:hover, 19 | .tg-navfilterbale li a.tg-active, 20 | .tg-package:hover .tg-packagehead h2, 21 | .tg-package:hover .tg-price h3, 22 | .tg-package:hover .tg-price sup, 23 | .tg-package:hover .tg-price sub, 24 | .tg-package:hover .tg-btn, 25 | .tg-panel > h4:hover, 26 | .tg-panel > h4.active, 27 | .tg-panel > h4:hover:after, 28 | .tg-panel > h4.active:after, 29 | .tg-tags li:hover a, 30 | .tg-bannersocialicons li:hover a i, 31 | .tg-formsortshoitems fieldset .tg-select select, 32 | .tg-formsortshoitems fieldset .tg-select select option, 33 | .tg-404errorcontent h3, 34 | .tg-detailhead h3, 35 | .tg-widget ul li:hover a em, 36 | .tg-widget ul li:hover a em i, 37 | .tg-widget ul li:hover a span, 38 | .tg-trendingposts li:hover .tg-postcontent h4 a, 39 | .tg-stylevtwo .tg-sectionhead h2, 40 | .tg-btnroundprev:hover, 41 | .tg-btnroundnext:hover, 42 | .tg-btnvideoplay:hover, 43 | .tg-btnvideoplay:hover i, 44 | .tg-calltoaction h2, 45 | .tg-footercolumn.tg-widgetrecentposts ul li h4:hover a, 46 | .tg-footercolumn.tg-widgetrecentposts ul li time:hover a, 47 | .tg-newsletterbox button, 48 | .tg-btnvthree, 49 | .tg-packagesvtwo .tg-package .tg-price h3, 50 | .tg-alertcontent span{color: #3a6ee8;} 51 | /*============================================= 52 | Theme Background Color 53 | =============================================*/ 54 | .tg-btn:after, 55 | .tg-theme-tag, 56 | .tg-btnbookseat, 57 | .tg-btnbookseat:hover, 58 | .tg-eventschedulenav li.active a, 59 | .tg-eventschedulenav li:hover a, 60 | .tg-btnfarword:hover, 61 | .tg-btndownloadschedule, 62 | .tg-badge, 63 | .tg-inputicon button, 64 | .tg-pagination ul li:hover a, 65 | .tg-pagination ul li.tg-prevpage:hover a, 66 | .tg-pagination ul li.tg-nextpage:hover a, 67 | .tg-tagsshare .tg-tag:hover, 68 | .tg-date, 69 | .tg-themepost:hover figure .tg-timetag, 70 | .tg-btnvtwo:hover, 71 | .tg-rockstarslider .tg-themepost figure, 72 | .tg-rockstarslider .owl-dots .owl-dot:hover span, 73 | .tg-rockstarslider .owl-dots .owl-dot.active span, 74 | .tg-stylevtwo .tg-testimonial, 75 | .tg-clientfeedback .tg-testimonialslider:before, 76 | .tg-clientfeedback .tg-testimonialslider:after, 77 | .tg-concertschedulelist > .tg-concertschedule:hover, 78 | .tg-sponsorbrands li:hover, 79 | .tg-topbar, 80 | .tg-headervthree .tg-navigation > ul > li > a:after, 81 | .tg-tag:hover, 82 | .tg-packagesvtwo .tg-package.tg-formshow .tg-packagehead h2, 83 | .tg-btnformpkghide, 84 | .tg-bannerholdervfour .tg-slidercontent h1 span, 85 | .tg-nav .navbar-toggle .icon-bar, 86 | .tg-headervthree .tg-nav .navbar-toggle, 87 | .tg-headervfour .tg-nav .navbar-toggle, 88 | .tg-headervtwo .tg-nav .navbar-toggle, 89 | .tg-alert i{background:#3a6ee8;} 90 | .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 91 | .tg-btnvthree:hover{background:#3a6ee8 !important;} 92 | /*============================================= 93 | Theme Gradient Color 94 | =============================================*/ 95 | .tg-cscounter, 96 | .tg-galleryhover, 97 | .tg-bgparallax:before, 98 | .tg-shceduledetailimg:before{ 99 | background: 100 | -moz-linear-gradient(top, 101 | rgba(58,110,232,0.8) 0%, 102 | rgba(58,110,232,0.8) 1%, 103 | rgba(58,110,232,0.8) 100%); 104 | background: 105 | -webkit-linear-gradient(top, 106 | rgba(58,110,232,0.8) 0%, 107 | rgba(58,110,232,0.8) 1%, 108 | rgba(58,110,232,0.8) 100%); 109 | background: 110 | linear-gradient(to bottom, 111 | rgba(58,110,232,0.8) 0%, 112 | rgba(58,110,232,0.8) 1%, 113 | rgba(58,110,232,0.8) 100%); 114 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc3a6ee8', endColorstr='#cc3a6ee8',GradientType=0 ); 115 | } 116 | .tg-innerbanner:before, 117 | .tg-bannerimg figcaption, 118 | .tg-bgparallax.tg-bgtwitter:before{ 119 | background: 120 | -moz-linear-gradient(top, 121 | rgba(66,66,66,0.85) 0%, 122 | rgba(58,110,232,0.85) 60%); 123 | background: 124 | -webkit-linear-gradient(top, 125 | rgba(66,66,66,0.85) 0%, 126 | rgba(58,110,232,0.85) 60%); 127 | background: 128 | linear-gradient(to bottom, 129 | rgba(66,66,66,0.85) 0%, 130 | rgba(58,110,232,0.85) 60%); 131 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9424242', endColorstr='#d93a6ee8',GradientType=0 ); 132 | } 133 | /*============================================= 134 | Theme Border Color 135 | =============================================*/ 136 | .tg-theme-tag:after, 137 | .tg-theme-tag:before, 138 | input:focus, 139 | .select select:focus, 140 | .form-control:focus, 141 | .tg-eventschedulenav li.active a, 142 | .tg-eventschedulenav li:hover a, 143 | .tg-eventschedulecontent, 144 | .tg-btnfarword:hover, 145 | .tg-badge:before, 146 | .tg-hallname, 147 | .tg-tagsshare .tg-tag:hover, 148 | .sub-menu.tg-darkmenu > li > a:hover, 149 | .sub-menu.tg-darkmenu > li:hover > a, 150 | .tg-btnvtwo, 151 | .tg-btndownloadschedule:before, 152 | .tg-homevtwo .tg-header, 153 | .tg-bannerholdervthree .tg-slidercontent, 154 | .tg-btnvideoplay:hover, 155 | .tg-serviceimg:hover .tg-servicecontent, 156 | .tg-servicetitle h2 a, 157 | .tg-tag:hover, 158 | .tg-btnvthree{border-color: #3a6ee8;} -------------------------------------------------------------------------------- /specs/HTML/css/colors/color-4.css: -------------------------------------------------------------------------------- 1 | /*============================================= 2 | Theme Color 3 | =============================================*/ 4 | a, 5 | p a, 6 | p a:hover, 7 | a:hover, 8 | a:focus, 9 | a:active, 10 | .tg-stars span:after, 11 | .tg-btn:hover, 12 | .tg-sectionheading h3, 13 | .tg-eventcounter span, 14 | .tg-speaker:hover .tg-posttitle h3 a, 15 | .tg-featuretag, 16 | .tg-eventvenuenav li.active a, 17 | .tg-eventvenuenav li:hover a, 18 | .tg-navfilterbale li a:hover, 19 | .tg-navfilterbale li a.tg-active, 20 | .tg-package:hover .tg-packagehead h2, 21 | .tg-package:hover .tg-price h3, 22 | .tg-package:hover .tg-price sup, 23 | .tg-package:hover .tg-price sub, 24 | .tg-package:hover .tg-btn, 25 | .tg-panel > h4:hover, 26 | .tg-panel > h4.active, 27 | .tg-panel > h4:hover:after, 28 | .tg-panel > h4.active:after, 29 | .tg-tags li:hover a, 30 | .tg-bannersocialicons li:hover a i, 31 | .tg-formsortshoitems fieldset .tg-select select, 32 | .tg-formsortshoitems fieldset .tg-select select option, 33 | .tg-404errorcontent h3, 34 | .tg-detailhead h3, 35 | .tg-widget ul li:hover a em, 36 | .tg-widget ul li:hover a em i, 37 | .tg-widget ul li:hover a span, 38 | .tg-trendingposts li:hover .tg-postcontent h4 a, 39 | .tg-stylevtwo .tg-sectionhead h2, 40 | .tg-btnroundprev:hover, 41 | .tg-btnroundnext:hover, 42 | .tg-btnvideoplay:hover, 43 | .tg-btnvideoplay:hover i, 44 | .tg-calltoaction h2, 45 | .tg-footercolumn.tg-widgetrecentposts ul li h4:hover a, 46 | .tg-footercolumn.tg-widgetrecentposts ul li time:hover a, 47 | .tg-newsletterbox button, 48 | .tg-btnvthree, 49 | .tg-packagesvtwo .tg-package .tg-price h3, 50 | .tg-alertcontent strong{color: #5fb536;} 51 | /*============================================= 52 | Theme Background Color 53 | =============================================*/ 54 | .tg-btn:after, 55 | .tg-theme-tag, 56 | .tg-btnbookseat, 57 | .tg-btnbookseat:hover, 58 | .tg-eventschedulenav li.active a, 59 | .tg-eventschedulenav li:hover a, 60 | .tg-btnfarword:hover, 61 | .tg-btndownloadschedule, 62 | .tg-badge, 63 | .tg-inputicon button, 64 | .tg-pagination ul li:hover a, 65 | .tg-pagination ul li.tg-prevpage:hover a, 66 | .tg-pagination ul li.tg-nextpage:hover a, 67 | .tg-tagsshare .tg-tag:hover, 68 | .tg-date, 69 | .tg-themepost:hover figure .tg-timetag, 70 | .tg-btnvtwo:hover, 71 | .tg-rockstarslider .tg-themepost figure, 72 | .tg-rockstarslider .owl-dots .owl-dot:hover span, 73 | .tg-rockstarslider .owl-dots .owl-dot.active span, 74 | .tg-stylevtwo .tg-testimonial, 75 | .tg-clientfeedback .tg-testimonialslider:before, 76 | .tg-clientfeedback .tg-testimonialslider:after, 77 | .tg-concertschedulelist > .tg-concertschedule:hover, 78 | .tg-sponsorbrands li:hover, 79 | .tg-topbar, 80 | .tg-headervthree .tg-navigation > ul > li > a:after, 81 | .tg-tag:hover, 82 | .tg-packagesvtwo .tg-package.tg-formshow .tg-packagehead h2, 83 | .tg-btnformpkghide, 84 | .tg-bannerholdervfour .tg-slidercontent h1 span, 85 | .tg-nav .navbar-toggle .icon-bar, 86 | .tg-headervthree .tg-nav .navbar-toggle, 87 | .tg-headervfour .tg-nav .navbar-toggle, 88 | .tg-headervtwo .tg-nav .navbar-toggle, 89 | .tg-alert i{background:#5fb536;} 90 | .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 91 | .tg-btnvthree:hover{background:#5fb536 !important;} 92 | /*============================================= 93 | Theme Gradient Color 94 | =============================================*/ 95 | .tg-cscounter, 96 | .tg-galleryhover, 97 | .tg-bgparallax:before, 98 | .tg-shceduledetailimg:before{ 99 | background: 100 | -moz-linear-gradient(top, 101 | rgba(95,181,54,0.85) 0%, 102 | rgba(95,181,54,0.8) 100%); 103 | background: 104 | -webkit-linear-gradient(top, 105 | rgba(95,181,54,0.85) 0%, 106 | rgba(95,181,54,0.8) 100%); 107 | background: 108 | linear-gradient(to bottom, 109 | rgba(95,181,54,0.85) 0%, 110 | rgba(95,181,54,0.8) 100%); 111 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d95fb536', endColorstr='#cc5fb536',GradientType=0 ); 112 | } 113 | .tg-innerbanner:before, 114 | .tg-bannerimg figcaption, 115 | .tg-bgparallax.tg-bgtwitter:before{ 116 | background: 117 | -moz-linear-gradient(top, 118 | rgba(66,66,66,0.85) 0%, 119 | rgba(95,181,54,0.85) 60%); 120 | background: 121 | -webkit-linear-gradient(top, 122 | rgba(66,66,66,0.85) 0%, 123 | rgba(95,181,54,0.85) 60%); 124 | background: 125 | linear-gradient(to bottom, 126 | rgba(66,66,66,0.85) 0%, 127 | rgba(95,181,54,0.85) 60%); 128 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9424242', endColorstr='#d95fb536',GradientType=0 ); 129 | } 130 | /*============================================= 131 | Theme Border Color 132 | =============================================*/ 133 | .tg-theme-tag:after, 134 | .tg-theme-tag:before, 135 | input:focus, 136 | .select select:focus, 137 | .form-control:focus, 138 | .tg-eventschedulenav li.active a, 139 | .tg-eventschedulenav li:hover a, 140 | .tg-eventschedulecontent, 141 | .tg-btnfarword:hover, 142 | .tg-badge:before, 143 | .tg-hallname, 144 | .tg-tagsshare .tg-tag:hover, 145 | .sub-menu.tg-darkmenu > li > a:hover, 146 | .sub-menu.tg-darkmenu > li:hover > a, 147 | .tg-btnvtwo, 148 | .tg-btndownloadschedule:before, 149 | .tg-homevtwo .tg-header, 150 | .tg-bannerholdervthree .tg-slidercontent, 151 | .tg-btnvideoplay:hover, 152 | .tg-serviceimg:hover .tg-servicecontent, 153 | .tg-servicetitle h2 a, 154 | .tg-tag:hover, 155 | .tg-btnvthree{border-color: #5fb536;} -------------------------------------------------------------------------------- /specs/HTML/css/colors/default.css: -------------------------------------------------------------------------------- 1 | /*============================================= 2 | Theme Color 3 | =============================================*/ 4 | a, 5 | p a, 6 | p a:hover, 7 | a:hover, 8 | a:focus, 9 | a:active, 10 | .tg-stars span:after, 11 | .tg-btn:hover, 12 | .tg-sectionheading h3, 13 | .tg-eventcounter span, 14 | .tg-speaker:hover .tg-posttitle h3 a, 15 | .tg-featuretag, 16 | .tg-eventvenuenav li.active a, 17 | .tg-eventvenuenav li:hover a, 18 | .tg-navfilterbale li a:hover, 19 | .tg-navfilterbale li a.tg-active, 20 | .tg-package:hover .tg-packagehead h2, 21 | .tg-package:hover .tg-price h3, 22 | .tg-package:hover .tg-price sup, 23 | .tg-package:hover .tg-price sub, 24 | .tg-package:hover .tg-btn, 25 | .tg-panel > h4:hover, 26 | .tg-panel > h4.active, 27 | .tg-panel > h4:hover:after, 28 | .tg-panel > h4.active:after, 29 | .tg-tags li:hover a, 30 | .tg-bannersocialicons li:hover a i, 31 | .tg-formsortshoitems fieldset .tg-select select, 32 | .tg-formsortshoitems fieldset .tg-select select option, 33 | .tg-404errorcontent h3, 34 | .tg-detailhead h3, 35 | .tg-widget ul li:hover a em, 36 | .tg-widget ul li:hover a em i, 37 | .tg-widget ul li:hover a span, 38 | .tg-trendingposts li:hover .tg-postcontent h4 a, 39 | .tg-stylevtwo .tg-sectionhead h2, 40 | .tg-btnroundprev:hover, 41 | .tg-btnroundnext:hover, 42 | .tg-btnvideoplay:hover, 43 | .tg-btnvideoplay:hover i, 44 | .tg-calltoaction h2, 45 | .tg-footercolumn.tg-widgetrecentposts ul li h4:hover a, 46 | .tg-footercolumn.tg-widgetrecentposts ul li time:hover a, 47 | .tg-newsletterbox button, 48 | .tg-btnvthree, 49 | .tg-packagesvtwo .tg-package .tg-price h3, 50 | .tg-alertcontent strong{color: #d90845;} 51 | /*============================================= 52 | Theme Background Color 53 | =============================================*/ 54 | .tg-btn:after, 55 | .tg-theme-tag, 56 | .tg-btnbookseat, 57 | .tg-btnbookseat:hover, 58 | .tg-eventschedulenav li.active a, 59 | .tg-eventschedulenav li:hover a, 60 | .tg-btnfarword:hover, 61 | .tg-btndownloadschedule, 62 | .tg-badge, 63 | .tg-inputicon button, 64 | .tg-pagination ul li:hover a, 65 | .tg-pagination ul li.tg-prevpage:hover a, 66 | .tg-pagination ul li.tg-nextpage:hover a, 67 | .tg-tagsshare .tg-tag:hover, 68 | .tg-date, 69 | .tg-themepost:hover figure .tg-timetag, 70 | .tg-btnvtwo:hover, 71 | .tg-rockstarslider .tg-themepost figure, 72 | .tg-rockstarslider .owl-dots .owl-dot:hover span, 73 | .tg-rockstarslider .owl-dots .owl-dot.active span, 74 | .tg-stylevtwo .tg-testimonial, 75 | .tg-clientfeedback .tg-testimonialslider:before, 76 | .tg-clientfeedback .tg-testimonialslider:after, 77 | .tg-concertschedulelist > .tg-concertschedule:hover, 78 | .tg-sponsorbrands li:hover, 79 | .tg-topbar, 80 | .tg-headervthree .tg-navigation > ul > li > a:after, 81 | .tg-tag:hover, 82 | .tg-packagesvtwo .tg-package.tg-formshow .tg-packagehead h2, 83 | .tg-btnformpkghide, 84 | .tg-bannerholdervfour .tg-slidercontent h1 span, 85 | .tg-nav .navbar-toggle .icon-bar, 86 | .tg-headervthree .tg-nav .navbar-toggle, 87 | .tg-headervfour .tg-nav .navbar-toggle, 88 | .tg-headervtwo .tg-nav .navbar-toggle, 89 | ul.colors .color1, 90 | .tg-alert i{background:#d90845;} 91 | .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 92 | .tg-btnvthree:hover{background:#d90845 !important;} 93 | /*============================================= 94 | Theme Border Color 95 | =============================================*/ 96 | .tg-theme-tag:after, 97 | .tg-theme-tag:before, 98 | input:focus, 99 | .select select:focus, 100 | .form-control:focus, 101 | .tg-eventschedulenav li.active a, 102 | .tg-eventschedulenav li:hover a, 103 | .tg-eventschedulecontent, 104 | .tg-btnfarword:hover, 105 | .tg-badge:before, 106 | .tg-hallname, 107 | .tg-tagsshare .tg-tag:hover, 108 | .sub-menu.tg-darkmenu > li > a:hover, 109 | .sub-menu.tg-darkmenu > li:hover > a, 110 | .tg-btnvtwo, 111 | .tg-btndownloadschedule:before, 112 | .tg-homevtwo .tg-header, 113 | .tg-bannerholdervthree .tg-slidercontent, 114 | .tg-btnvideoplay:hover, 115 | .tg-serviceimg:hover .tg-servicecontent, 116 | .tg-servicetitle h2 a, 117 | .tg-tag:hover, 118 | .tg-btnvthree{border-color: #d90845;} -------------------------------------------------------------------------------- /specs/HTML/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/favicon.ico -------------------------------------------------------------------------------- /specs/HTML/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /specs/HTML/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /specs/HTML/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /specs/HTML/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /specs/HTML/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /specs/HTML/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /specs/HTML/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /specs/HTML/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /specs/HTML/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /specs/HTML/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/fonts/icomoon.eot -------------------------------------------------------------------------------- /specs/HTML/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/fonts/icomoon.ttf -------------------------------------------------------------------------------- /specs/HTML/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/fonts/icomoon.woff -------------------------------------------------------------------------------- /specs/HTML/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/ajax-loader.gif -------------------------------------------------------------------------------- /specs/HTML/images/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/HTML/images/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/HTML/images/articles/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/articles/img-01.jpg -------------------------------------------------------------------------------- /specs/HTML/images/articles/img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/articles/img-02.jpg -------------------------------------------------------------------------------- /specs/HTML/images/articles/img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/articles/img-03.jpg -------------------------------------------------------------------------------- /specs/HTML/images/articles/img-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/articles/img-04.jpg -------------------------------------------------------------------------------- /specs/HTML/images/articles/img-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/articles/img-05.jpg -------------------------------------------------------------------------------- /specs/HTML/images/articles/img-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/articles/img-06.jpg -------------------------------------------------------------------------------- /specs/HTML/images/articles/img-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/articles/img-07.jpg -------------------------------------------------------------------------------- /specs/HTML/images/articles/img-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/articles/img-08.jpg -------------------------------------------------------------------------------- /specs/HTML/images/articles/img-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/articles/img-09.jpg -------------------------------------------------------------------------------- /specs/HTML/images/articles/img-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/articles/img-10.jpg -------------------------------------------------------------------------------- /specs/HTML/images/articles/img-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/articles/img-11.jpg -------------------------------------------------------------------------------- /specs/HTML/images/articles/img-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/articles/img-12.jpg -------------------------------------------------------------------------------- /specs/HTML/images/articles/img-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/articles/img-13.jpg -------------------------------------------------------------------------------- /specs/HTML/images/author-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/author-img.jpg -------------------------------------------------------------------------------- /specs/HTML/images/avatar-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/avatar-01.jpg -------------------------------------------------------------------------------- /specs/HTML/images/avatar-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/avatar-02.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bg-parallax-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bg-parallax-01.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bg-parallax-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bg-parallax-02.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bg-parallax-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bg-parallax-03.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bg-parallax-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bg-parallax-04.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bg-parallax-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bg-parallax-05.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bg-parallax-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bg-parallax-06.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bg-parallax-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bg-parallax-07.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bgparallax-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bgparallax-08.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bgparallax-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bgparallax-09.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bgparallax-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bgparallax-10.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bgparallax-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bgparallax-11.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bgparallax-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bgparallax-12.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bgparallax-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bgparallax-13.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bgparallax-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bgparallax-14.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bgparallax-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bgparallax-15.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bgparallax-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bgparallax-16.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bgparallax-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bgparallax-17.jpg -------------------------------------------------------------------------------- /specs/HTML/images/bg-parallax/bgparallax-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/bg-parallax/bgparallax-18.jpg -------------------------------------------------------------------------------- /specs/HTML/images/btn-scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/btn-scroll.png -------------------------------------------------------------------------------- /specs/HTML/images/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/colors.png -------------------------------------------------------------------------------- /specs/HTML/images/comingsoon-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/comingsoon-bg.jpg -------------------------------------------------------------------------------- /specs/HTML/images/flickr/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/flickr/img-01.jpg -------------------------------------------------------------------------------- /specs/HTML/images/flickr/img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/flickr/img-02.jpg -------------------------------------------------------------------------------- /specs/HTML/images/flickr/img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/flickr/img-03.jpg -------------------------------------------------------------------------------- /specs/HTML/images/flickr/img-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/flickr/img-04.jpg -------------------------------------------------------------------------------- /specs/HTML/images/flickr/img-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/flickr/img-05.jpg -------------------------------------------------------------------------------- /specs/HTML/images/flickr/img-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/flickr/img-06.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-01.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-02.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-03.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-04.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-05.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-06.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-07.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-08.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-09.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-10.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-11.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-12.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-13.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-14.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-15.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-16.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-17.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-18.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-19.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-20.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-21.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-22.jpg -------------------------------------------------------------------------------- /specs/HTML/images/gallery/img-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/gallery/img-23.jpg -------------------------------------------------------------------------------- /specs/HTML/images/headerborder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/headerborder.jpg -------------------------------------------------------------------------------- /specs/HTML/images/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/img-01.jpg -------------------------------------------------------------------------------- /specs/HTML/images/img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/img-02.jpg -------------------------------------------------------------------------------- /specs/HTML/images/img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/img-03.jpg -------------------------------------------------------------------------------- /specs/HTML/images/img-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/img-04.jpg -------------------------------------------------------------------------------- /specs/HTML/images/img-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/img-05.jpg -------------------------------------------------------------------------------- /specs/HTML/images/img-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/img-06.jpg -------------------------------------------------------------------------------- /specs/HTML/images/img-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/img-07.jpg -------------------------------------------------------------------------------- /specs/HTML/images/img-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/img-08.jpg -------------------------------------------------------------------------------- /specs/HTML/images/img-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/img-09.jpg -------------------------------------------------------------------------------- /specs/HTML/images/innerbanner-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/innerbanner-img.jpg -------------------------------------------------------------------------------- /specs/HTML/images/instgram/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/instgram/img-01.jpg -------------------------------------------------------------------------------- /specs/HTML/images/instgram/img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/instgram/img-02.jpg -------------------------------------------------------------------------------- /specs/HTML/images/instgram/img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/instgram/img-03.jpg -------------------------------------------------------------------------------- /specs/HTML/images/instgram/img-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/instgram/img-04.jpg -------------------------------------------------------------------------------- /specs/HTML/images/instgram/img-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/instgram/img-05.jpg -------------------------------------------------------------------------------- /specs/HTML/images/instgram/img-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/instgram/img-06.jpg -------------------------------------------------------------------------------- /specs/HTML/images/instgram/img-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/instgram/img-07.jpg -------------------------------------------------------------------------------- /specs/HTML/images/instgram/img-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/instgram/img-08.jpg -------------------------------------------------------------------------------- /specs/HTML/images/instgram/img-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/instgram/img-09.jpg -------------------------------------------------------------------------------- /specs/HTML/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/logo.png -------------------------------------------------------------------------------- /specs/HTML/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/logo2.png -------------------------------------------------------------------------------- /specs/HTML/images/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/logo3.png -------------------------------------------------------------------------------- /specs/HTML/images/logo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/logo4.png -------------------------------------------------------------------------------- /specs/HTML/images/logo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/logo5.png -------------------------------------------------------------------------------- /specs/HTML/images/logo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/logo6.png -------------------------------------------------------------------------------- /specs/HTML/images/logo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/logo7.png -------------------------------------------------------------------------------- /specs/HTML/images/map-marker2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/map-marker2.png -------------------------------------------------------------------------------- /specs/HTML/images/newsdetail-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/newsdetail-img.jpg -------------------------------------------------------------------------------- /specs/HTML/images/our-work/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/our-work/img-01.jpg -------------------------------------------------------------------------------- /specs/HTML/images/our-work/img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/our-work/img-02.jpg -------------------------------------------------------------------------------- /specs/HTML/images/our-work/img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/our-work/img-03.jpg -------------------------------------------------------------------------------- /specs/HTML/images/our-work/img-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/our-work/img-04.jpg -------------------------------------------------------------------------------- /specs/HTML/images/our-work/img-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/our-work/img-05.jpg -------------------------------------------------------------------------------- /specs/HTML/images/our-work/img-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/our-work/img-06.jpg -------------------------------------------------------------------------------- /specs/HTML/images/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/owl.video.play.png -------------------------------------------------------------------------------- /specs/HTML/images/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/pattern.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/dark_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/dark_rounded/btnNext.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/dark_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/dark_rounded/btnPrevious.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/dark_rounded/contentPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/dark_rounded/contentPattern.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/dark_rounded/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/dark_rounded/default_thumbnail.gif -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/dark_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/dark_rounded/loader.gif -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/dark_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/dark_rounded/sprite.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/dark_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/dark_square/btnNext.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/dark_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/dark_square/btnPrevious.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/dark_square/contentPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/dark_square/contentPattern.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/dark_square/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/dark_square/default_thumbnail.gif -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/dark_square/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/dark_square/loader.gif -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/dark_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/dark_square/sprite.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/default/default_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/default/default_thumb.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/default/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/default/loader.gif -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/default/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/default/sprite.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/default/sprite_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/default/sprite_next.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/default/sprite_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/default/sprite_prev.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/default/sprite_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/default/sprite_x.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/default/sprite_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/default/sprite_y.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/facebook/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/facebook/btnNext.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/facebook/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/facebook/btnPrevious.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/facebook/contentPatternBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/facebook/contentPatternBottom.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/facebook/contentPatternLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/facebook/contentPatternLeft.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/facebook/contentPatternRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/facebook/contentPatternRight.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/facebook/contentPatternTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/facebook/contentPatternTop.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/facebook/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/facebook/default_thumbnail.gif -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/facebook/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/facebook/loader.gif -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/facebook/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/facebook/sprite.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/light_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/light_rounded/btnNext.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/light_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/light_rounded/btnPrevious.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/light_rounded/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/light_rounded/default_thumbnail.gif -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/light_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/light_rounded/loader.gif -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/light_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/light_rounded/sprite.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/light_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/light_square/btnNext.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/light_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/light_square/btnPrevious.png -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/light_square/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/light_square/default_thumbnail.gif -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/light_square/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/light_square/loader.gif -------------------------------------------------------------------------------- /specs/HTML/images/prettyPhoto/light_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/prettyPhoto/light_square/sprite.png -------------------------------------------------------------------------------- /specs/HTML/images/scheduledetail-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/scheduledetail-img.jpg -------------------------------------------------------------------------------- /specs/HTML/images/services/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/services/img-01.jpg -------------------------------------------------------------------------------- /specs/HTML/images/services/img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/services/img-02.jpg -------------------------------------------------------------------------------- /specs/HTML/images/services/img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/services/img-03.jpg -------------------------------------------------------------------------------- /specs/HTML/images/services/img-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/services/img-04.jpg -------------------------------------------------------------------------------- /specs/HTML/images/services/img-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/services/img-05.jpg -------------------------------------------------------------------------------- /specs/HTML/images/services/img-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/services/img-06.jpg -------------------------------------------------------------------------------- /specs/HTML/images/slider/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/slider/img-01.jpg -------------------------------------------------------------------------------- /specs/HTML/images/slider/img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/slider/img-02.jpg -------------------------------------------------------------------------------- /specs/HTML/images/slider/img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/slider/img-03.jpg -------------------------------------------------------------------------------- /specs/HTML/images/slider/img-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/slider/img-04.jpg -------------------------------------------------------------------------------- /specs/HTML/images/slider/img-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/slider/img-05.jpg -------------------------------------------------------------------------------- /specs/HTML/images/slider/img-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/slider/img-06.jpg -------------------------------------------------------------------------------- /specs/HTML/images/slider/img-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/slider/img-07.jpg -------------------------------------------------------------------------------- /specs/HTML/images/slider/img-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/slider/img-08.jpg -------------------------------------------------------------------------------- /specs/HTML/images/slider/img-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/slider/img-09.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-01.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-02.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-03.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-04.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-05.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-06.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-07.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-08.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-09.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-10.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-11.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-12.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-13.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-14.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-15.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-16.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-17.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-18.jpg -------------------------------------------------------------------------------- /specs/HTML/images/speakers/img-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/speakers/img-19.jpg -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-01.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-02.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-03.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-04.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-05.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-06.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-07.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-08.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-09.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-10.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-11.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-12.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-13.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-14.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-15.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-16.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-17.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-18.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-19.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-20.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-21.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-22.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-23.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-24.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-25.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-26.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-27.png -------------------------------------------------------------------------------- /specs/HTML/images/sponser/img-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/sponser/img-28.png -------------------------------------------------------------------------------- /specs/HTML/images/testimonials/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/testimonials/img-01.jpg -------------------------------------------------------------------------------- /specs/HTML/images/testimonials/img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/testimonials/img-02.jpg -------------------------------------------------------------------------------- /specs/HTML/images/testimonials/img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/testimonials/img-03.jpg -------------------------------------------------------------------------------- /specs/HTML/images/testimonials/img-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/testimonials/img-04.jpg -------------------------------------------------------------------------------- /specs/HTML/images/venues/img-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/venues/img-01.jpg -------------------------------------------------------------------------------- /specs/HTML/images/venues/img-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/venues/img-02.jpg -------------------------------------------------------------------------------- /specs/HTML/images/venues/img-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/venues/img-03.jpg -------------------------------------------------------------------------------- /specs/HTML/images/venues/img-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/venues/img-04.jpg -------------------------------------------------------------------------------- /specs/HTML/images/venues/img-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/venues/img-05.jpg -------------------------------------------------------------------------------- /specs/HTML/images/venues/img-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/venues/img-06.jpg -------------------------------------------------------------------------------- /specs/HTML/images/venues/img-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/venues/img-07.jpg -------------------------------------------------------------------------------- /specs/HTML/images/venues/img-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/images/venues/img-08.jpg -------------------------------------------------------------------------------- /specs/HTML/js/appear.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery.appear 3 | * http://code.google.com/p/jquery-appear/ 4 | * 5 | * Copyright (c) 2009 Michael Hixson 6 | * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) 7 | */ 8 | (function($){$.fn.appear=function(f,o){var s=$.extend({one:true},o);return this.each(function(){var t=$(this);t.appeared=false;if(!f){t.trigger('appear',s.data);return;}var w=$(window);var c=function(){if(!t.is(':visible')){t.appeared=false;return;}var a=w.scrollLeft();var b=w.scrollTop();var o=t.offset();var x=o.left;var y=o.top;if(y+t.height()>=b&&y<=b+w.height()&&x+t.width()>=a&&x<=a+w.width()){if(!t.appeared)t.trigger('appear',s.data);}else{t.appeared=false;}};var m=function(){t.appeared=true;if(s.one){w.unbind('scroll',c);var i=$.inArray(c,$.fn.appear.checks);if(i>=0)$.fn.appear.checks.splice(i,1);}f.apply(this,arguments);};if(s.one)t.one('appear',s.data,m);else t.bind('appear',s.data,m);w.scroll(c);$.fn.appear.checks.push(c);(c)();});};$.extend($.fn.appear,{checks:[],timeout:null,checkAll:function(){var l=$.fn.appear.checks.length;if(l>0)while(l--)($.fn.appear.checks[l])();},run:function(){if($.fn.appear.timeout)clearTimeout($.fn.appear.timeout);$.fn.appear.timeout=setTimeout($.fn.appear.checkAll,20);}});$.each(['append','prepend','after','before','attr','removeAttr','addClass','removeClass','toggleClass','remove','css','show','hide'],function(i,n){var u=$.fn[n];if(u){$.fn[n]=function(){var r=u.apply(this,arguments);$.fn.appear.run();return r;}}});})(jQuery); -------------------------------------------------------------------------------- /specs/HTML/js/color-switcher.js: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------- 2 | * Product Name: Color-Switcher-Plugin 3 | * Product URI: http://shariarbd.com/demo/color-switcher-plugin/ 4 | * Author: Shariar 5 | * Author URI: http://shariarbd.com/ 6 | * Description: Color Switcher plugin is a simple and easy to use plugin used to switch color of a site. 7 | * Version: 1.0.0 8 | * License: The MIT License (MIT) 9 | * Tags: color switcher 10 | * ---------------------------------------------------------------------- */ 11 | 12 | /* Styles Switcher 13 | ------------------------------------------------------------------------ */ 14 | 15 | window.console = window.console || (function(){ 16 | var c = {}; c.log = c.warn = c.debug = c.info = c.error = c.time = c.dir = c.profile = c.clear = c.exception = c.trace = c.assert = function(){}; 17 | return c; 18 | })(); 19 | 20 | 21 | jQuery(document).ready(function($) { 22 | "use strict" 23 | jQuery("ul.colors .color1" ).on('click', function(){ 24 | jQuery("#colors" ).attr("href", "css/colors/default.css" ); 25 | return false; 26 | }); 27 | jQuery("ul.colors .color2" ).on('click', function(){ 28 | jQuery("#colors" ).attr("href", "css/colors/color-2.css" ); 29 | return false; 30 | }); 31 | jQuery("ul.colors .color3" ).on('click', function(){ 32 | jQuery("#colors" ).attr("href", "css/colors/color-3.css" ); 33 | return false; 34 | }); 35 | jQuery("ul.colors .color4" ).on('click', function(){ 36 | jQuery("#colors" ).attr("href", "css/colors/color-4.css" ); 37 | return false; 38 | }); 39 | jQuery("ul.colors .color5" ).on('click', function(){ 40 | jQuery("#colors" ).attr("href", "css/colors/color-5.css" ); 41 | return false; 42 | }); 43 | jQuery("#color-style-switcher .bottom a.settings").on('click', function(e){ 44 | e.preventDefault(); 45 | var div = jQuery("#color-style-switcher"); 46 | if (div.css("left") === "-60px") { 47 | jQuery("#color-style-switcher").animate({ 48 | left: "0" 49 | }); 50 | } else { 51 | jQuery("#color-style-switcher").animate({ 52 | left: "-60px" 53 | }); 54 | } 55 | }) 56 | jQuery("ul.colors li a").on('click', function(e){ 57 | e.preventDefault(); 58 | jQuery(this).parent().parent().find("a").removeClass("active"); 59 | jQuery(this).addClass("active"); 60 | }) 61 | }); 62 | jQuery('head').append(''); 63 | jQuery('head').append(''); 64 | jQuery('body').append('' + 65 | '
' + 66 | '
' + 67 | '' + 74 | '
' + 75 | '
' + 76 | '
' + 77 | ''); -------------------------------------------------------------------------------- /specs/HTML/js/countTo.js: -------------------------------------------------------------------------------- 1 | (function (factory) { 2 | if (typeof define === 'function' && define.amd) { 3 | // AMD 4 | define(['jquery'], factory); 5 | } else if (typeof exports === 'object') { 6 | // CommonJS 7 | factory(require('jquery')); 8 | } else { 9 | // Browser globals 10 | factory(jQuery); 11 | } 12 | }(function ($) { 13 | var CountTo = function (element, options) { 14 | this.$element = $(element); 15 | this.options = $.extend({}, CountTo.DEFAULTS, this.dataOptions(), options); 16 | this.init(); 17 | }; 18 | 19 | CountTo.DEFAULTS = { 20 | from: 0, // the number the element should start at 21 | to: 0, // the number the element should end at 22 | speed: 1000, // how long it should take to count between the target numbers 23 | refreshInterval: 100, // how often the element should be updated 24 | decimals: 0, // the number of decimal places to show 25 | formatter: formatter, // handler for formatting the value before rendering 26 | onUpdate: null, // callback method for every time the element is updated 27 | onComplete: null // callback method for when the element finishes updating 28 | }; 29 | 30 | CountTo.prototype.init = function () { 31 | this.value = this.options.from; 32 | this.loops = Math.ceil(this.options.speed / this.options.refreshInterval); 33 | this.loopCount = 0; 34 | this.increment = (this.options.to - this.options.from) / this.loops; 35 | }; 36 | 37 | CountTo.prototype.dataOptions = function () { 38 | var options = { 39 | from: this.$element.data('from'), 40 | to: this.$element.data('to'), 41 | speed: this.$element.data('speed'), 42 | refreshInterval: this.$element.data('refresh-interval'), 43 | decimals: this.$element.data('decimals') 44 | }; 45 | 46 | var keys = Object.keys(options); 47 | 48 | for (var i in keys) { 49 | var key = keys[i]; 50 | 51 | if (typeof(options[key]) === 'undefined') { 52 | delete options[key]; 53 | } 54 | } 55 | 56 | return options; 57 | }; 58 | 59 | CountTo.prototype.update = function () { 60 | this.value += this.increment; 61 | this.loopCount++; 62 | 63 | this.render(); 64 | 65 | if (typeof(this.options.onUpdate) == 'function') { 66 | this.options.onUpdate.call(this.$element, this.value); 67 | } 68 | 69 | if (this.loopCount >= this.loops) { 70 | clearInterval(this.interval); 71 | this.value = this.options.to; 72 | 73 | if (typeof(this.options.onComplete) == 'function') { 74 | this.options.onComplete.call(this.$element, this.value); 75 | } 76 | } 77 | }; 78 | 79 | CountTo.prototype.render = function () { 80 | var formattedValue = this.options.formatter.call(this.$element, this.value, this.options); 81 | this.$element.text(formattedValue); 82 | }; 83 | 84 | CountTo.prototype.restart = function () { 85 | this.stop(); 86 | this.init(); 87 | this.start(); 88 | }; 89 | 90 | CountTo.prototype.start = function () { 91 | this.stop(); 92 | this.render(); 93 | this.interval = setInterval(this.update.bind(this), this.options.refreshInterval); 94 | }; 95 | 96 | CountTo.prototype.stop = function () { 97 | if (this.interval) { 98 | clearInterval(this.interval); 99 | } 100 | }; 101 | 102 | CountTo.prototype.toggle = function () { 103 | if (this.interval) { 104 | this.stop(); 105 | } else { 106 | this.start(); 107 | } 108 | }; 109 | 110 | function formatter(value, options) { 111 | return value.toFixed(options.decimals); 112 | } 113 | 114 | $.fn.countTo = function (option) { 115 | return this.each(function () { 116 | var $this = $(this); 117 | var data = $this.data('countTo'); 118 | var init = !data || typeof(option) === 'object'; 119 | var options = typeof(option) === 'object' ? option : {}; 120 | var method = typeof(option) === 'string' ? option : 'start'; 121 | 122 | if (init) { 123 | if (data) data.stop(); 124 | $this.data('countTo', data = new CountTo(this, options)); 125 | } 126 | 127 | data[method].call(data); 128 | }); 129 | }; 130 | })); 131 | -------------------------------------------------------------------------------- /specs/HTML/js/vendor/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /specs/HTML/tile-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/tile-wide.png -------------------------------------------------------------------------------- /specs/HTML/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/HTML/tile.png -------------------------------------------------------------------------------- /specs/documentation/css/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/documentation/css/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /specs/documentation/css/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/documentation/css/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /specs/documentation/css/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/documentation/css/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /specs/documentation/css/fonts/font-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/documentation/css/fonts/font-icons.eot -------------------------------------------------------------------------------- /specs/documentation/css/fonts/font-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/documentation/css/fonts/font-icons.ttf -------------------------------------------------------------------------------- /specs/documentation/css/fonts/font-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/documentation/css/fonts/font-icons.woff -------------------------------------------------------------------------------- /specs/documentation/css/fonts/lined-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/documentation/css/fonts/lined-icons.eot -------------------------------------------------------------------------------- /specs/documentation/css/fonts/lined-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/documentation/css/fonts/lined-icons.ttf -------------------------------------------------------------------------------- /specs/documentation/css/fonts/lined-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/documentation/css/fonts/lined-icons.woff -------------------------------------------------------------------------------- /specs/documentation/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/documentation/css/responsive.css -------------------------------------------------------------------------------- /specs/documentation/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/documentation/images/logo.png -------------------------------------------------------------------------------- /specs/documentation/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonindia/inpycon2017/ed5452f367f1fe57d19b820ac439830d2e2dcf80/specs/documentation/js/plugins.js -------------------------------------------------------------------------------- /templates/childcare.html: -------------------------------------------------------------------------------- 1 | {% extends "components/_base.jinja" %} 2 | 3 | {% block content %} 4 | 7 |
8 |
9 |
10 |
11 |

Childcare

12 |
13 |
    14 |
  1. Home
  2. 15 |
  3. Childcare
  4. 16 |
17 |
18 |
19 |
20 | 23 | 26 |
27 | 30 |
31 |
32 |
33 |
34 |
35 |
36 |

PyCon India 2017 is proud to announce that we will be offering childcare during the main conference days. Follow our Twitter account for updates and announcements. Deadline to fill the Childcare form is 15th October, 2017.

37 |
    38 |
  • When: Saturday 4th Nov and Sunday 5th Nov
  • 39 |
  • Time: 8:00am – 7:00pm
  • 40 |
  • Where: Shaheed Sukhdev College Of Business Studies
  • 41 |
  • Room: TBD
  • 42 |
  • Register: Registration Open till October 15th, 2017
  • 43 |
  • Ages: infants to 12 years old
  • 44 |

45 |

In case you have any queries, don't even hesitate a moment to reach out to contact@in.pycon.org.


46 | Fill this form
47 |
48 |
49 |
50 |
51 |
52 |
53 | 56 |
57 | 60 | {% endblock %} 61 | -------------------------------------------------------------------------------- /templates/components/_base.jinja: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | PyCon India 2017 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 35 | 36 | 37 | 40 | 43 |
44 | 47 | {% include 'components/_header.html' %} 48 | 49 | {% block content %}{% endblock %} 50 | 51 | {% include 'components/_footer.html' %} 52 | 53 | 54 |
55 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 87 | 115 | 116 | 117 | -------------------------------------------------------------------------------- /templates/components/_footer.html: -------------------------------------------------------------------------------- 1 | 4 | 22 | 25 | -------------------------------------------------------------------------------- /templates/components/_header.html: -------------------------------------------------------------------------------- 1 | 4 |
5 |
6 |
7 |
8 | 9 |
10 | 40 |
41 |
42 |
43 |
44 |
45 | 48 | -------------------------------------------------------------------------------- /templates/sections/_social.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |
7 |

Always Stay Updated

8 |
9 |
10 |

Keep watching this space for latest news and announcements.

11 |
12 |
13 |
14 |
15 |
16 |

Latest Tweets

17 |
18 |
19 |
20 |

Latest Blogs

21 |
22 |
23 |
24 |
25 |
26 | -------------------------------------------------------------------------------- /templates/sections/_speakers.html: -------------------------------------------------------------------------------- 1 | 4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 13 |

Keynote Speakers

14 |
15 | 18 |
19 | 22 |
23 |

24 |
25 |
26 |
27 | image description 28 |
29 |
    30 |
  • 31 |
  • 32 |
  • 33 |
34 |
35 |
36 |
37 |

Peter Wang

38 | CTO & Co-Founder at Continuum Analytics. 39 |
40 |
41 |
42 |
43 |
44 |
45 | image description 46 |
47 |
    48 |
  • 49 |
  • 50 |
  • 51 |
52 |
53 |
54 |
55 |

Noufal Ibrahim

56 | Founder of Hamon Technologies LLP 57 |
58 |
59 |
60 |
61 |
62 |
63 | image description 64 |
65 |
    66 |
  • 67 |
  • 68 |
  • 69 |
70 |
71 |
72 |
73 |

Elizabeth Ferrao

74 | Co-founder of Women Who Code NYC 75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 | 85 | -------------------------------------------------------------------------------- /templates/sections/_statistics.html: -------------------------------------------------------------------------------- 1 | 4 | 42 | 43 | 44 | 45 | 98 | 101 | -------------------------------------------------------------------------------- /templates/sponsorship.html: -------------------------------------------------------------------------------- 1 | {% extends "components/_base.jinja" %} 2 | 3 | {% block content %} 4 | 7 |
8 |
9 |
10 |
11 |

Sponsorship

12 |
13 |
    14 |
  1. Home
  2. 15 |
  3. Sponsorship
  4. 16 |
17 |
18 |
19 |
20 | 23 | 26 |
27 | 30 |
31 |
32 |
33 |
34 |
35 |
36 |

PyCon India is the largest annual conference for the community using and developing the Python programming language in India. It attracts the best Python programmers across the country and abroad. PyCon India is a community conference, organized by volunteers. Formally it is run by the Python Software Society of India, which is a non-profit society under Indian law.


37 |

Sponsoring

38 |

Your sponsorship keeps PyCon India affordable to the widest possible audience. 39 | In order to ensure a successful conference, the community needs to address a wide range of logistical and organizational challenges. PyCon India attendees sometimes require assistance with expenses especially student attendees, and sponsorship enables us to support those who would otherwise be unable to attend. 40 | 41 | The attendees of PyCon India will include professional developers from large enterprises and smaller firms as well as people from academia. Delegates come to present their latest developments. With Python already becoming a major enterprise programming language and platform, sponsoring PyCon India 2016 is an excellent opportunity to demonstrate industry leadership in this part of the world. The attendance of PyCon India 2017 is expected to be between 900 and 1000 delegates.


42 | Download Sponsorship Prospectus 43 |
44 |
45 | 46 |
47 | 48 |
49 |
50 |
51 | 54 |
55 | 58 | {% endblock %} 59 | -------------------------------------------------------------------------------- /templates/volunteer.html: -------------------------------------------------------------------------------- 1 | {% extends "components/_base.jinja" %} {% block content %} 4 |
5 |
6 |
7 |
8 |

9 | Volunteer 10 |

11 |
12 |
    13 |
  1. 14 | Home 15 |
  2. 16 |
  3. Volunteer 17 |
  4. 18 |
19 |
20 |
21 |
24 | 27 |
28 | 31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |

39 | PyCon India is a community event. Here each and every task is done by a volunteer. And here is the opportunity for You to be a part of the community. 40 |

41 |

42 | But before you register to volunteer, there are few things you should be aware of - 43 |

44 |
    45 |
  • Volunteering takes time and effort, sometimes a lot of it. For online activities like handling social networks or handling registrations etc take a lot of time. And sometimes rapid decisions have to be made. So if you're volunteering, make sure you have the time. If you're unavailable at certain time period of the day, let us know beforehand. 46 |
  • 47 | 48 |
  • If you're volunteering for offline activities e.g. on spot registration or settings up stages or handling video recording, anything that has to be done on the venue during the event, there is a good chance that you won't be able to attend the sessions you just registered for. If someone needs you, you have to be there. 49 |
  • 50 | 51 |
  • Volunteering is not a free way into the event. At PyCon India, everybody buys tickets. Even the event organizers buy tickets. We volunteer because we love Python and PyCon, and want the event to be awesome.
  • 52 | 53 |
  • Volunteers are the most important part of the event. Without the volunteers, the event cannot happen. So even if you are attending PyCon for the first time, we encourage you to volunteer with whatever you can. If you don't want to miss any sessions, then volunteer for smaller tasks.
  • 54 |
55 |

56 | If you're still interested in volunteering, subscribe to the mailing list. Please don't subscribe to the daily digest. Digests are always behind the time and meant for those who just wants to stay updated and not participate in conversations. If you're already subscribed to the mailing list, go ahead, login and change your subscription type. Also, please don't reply to a digest. 57 |

58 |

59 | Once your name is on the form, keep an eye on the mailing list. Threads will be created on specific tasks asking for volunteers. If you think you can do the task and have enough time for it, raise your hand. That's it. You can join the telegram group and help out in the tasks their. 60 |

61 | Telegram Group
62 |
63 |

64 | Also, if you have any question, we'd really appreciate if you go through the mailing list archives first, and see if it's already answered. If not, you can talk to us at the IRC channel #pyconindia on freenode.net or send a mail to the mailing list. 65 |

66 |

67 | Hope to see you at the event. Happy volunteering. :) 68 |

69 |
70 |
71 |
72 |
73 |
74 |
75 |
78 |
81 | {% endblock %} 82 | 83 | --------------------------------------------------------------------------------