mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2025-06-07 22:11:29 +02:00
Initial commit
This commit is contained in:
parent
8e3b6da84f
commit
95607eea61
241 changed files with 14242 additions and 3 deletions
33
_includes/about.html
Normal file
33
_includes/about.html
Normal file
|
@ -0,0 +1,33 @@
|
|||
<!-- About Section -->
|
||||
<section id="about">
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-10 col-lg-offset-1">
|
||||
<h3>About {{site.eventName}}</h3>
|
||||
<div class="row about-details">
|
||||
<div class="col-md-4 col-sm-4 col-xs-6">
|
||||
<div class="animated hiding" data-animation="fadeInDown" data-delay="0">
|
||||
<h5>Conference</h5>
|
||||
<img class="img-circle" src="{{ site.baseurl }}/img/conference.jpg" height="128" width="128" alt="Conference">
|
||||
<p>The biggest Google related event in the country carefully crafted for you by GDG community! Awesome speakers and lot's of fun!</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 col-sm-4 col-xs-6">
|
||||
<div class="animated hiding" data-animation="fadeInDown" data-delay="500">
|
||||
<h5>Workshops</h5>
|
||||
<img class="img-circle" src="{{ site.baseurl }}/img/workshop.jpg" height="128" width="128" alt="Workshops">
|
||||
<p>Full-day of workshops, hands-on experience, hacking and debugging. Come and tame your favourite technology!</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clearfix visible-xs"></div>
|
||||
<div class="col-md-4 col-sm-4 col-xs-6">
|
||||
<div class="animated hiding" data-animation="fadeInDown" data-delay="1000">
|
||||
<h5>Hackathon</h5>
|
||||
<img class="img-circle" src="{{ site.baseurl }}/img/hackathon.jpg" height="128" width="128" alt="Hackathons">
|
||||
<p>Full-day free-style hackaton! Want some real teambuilding on friday? Grab your team and join our hackathon!</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End About Section -->
|
10
_includes/analytics.html
Normal file
10
_includes/analytics.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
<script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', '{{site.googleAnalyticsTrackingId}}', '{{site.googleAnalyticsSiteUrl}}');
|
||||
ga('send', 'pageview');
|
||||
|
||||
</script>
|
80
_includes/blog.html
Normal file
80
_includes/blog.html
Normal file
|
@ -0,0 +1,80 @@
|
|||
<!-- Begin Blog-->
|
||||
<section id="blog">
|
||||
<div class="content-wrapper text-left">
|
||||
<div class="col-md-10 col-sm-10 col-lg-offset-2 col-md-offset-2 col-sm-offset-1">
|
||||
<h3>Latest news</h3>
|
||||
<div class="col-lg-8 col-md-10 col-xs-12">
|
||||
|
||||
{% for post in site.posts %}
|
||||
|
||||
{% assign postUrl = site.url | append: site.baseurl | append: post.url %}
|
||||
|
||||
<article class="row post">
|
||||
<a href="{{ site.baseurl | append: post.url }}" title="{{ post.title }}"><h4>{{ post.title }}</h4></a>
|
||||
<div class="post-header">
|
||||
<div class="published pull-left">
|
||||
<span class="caption">Posted:</span>
|
||||
<span class="publish-date" itemprop="datePublished">{{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • {{ post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}</span>
|
||||
</div>
|
||||
<div class="share pull-right">
|
||||
<ul class="social-links">
|
||||
<li>
|
||||
<a href="https://plus.google.com/share?url={{ postUrl }}" onclick="window.open('https://plus.google.com/share?url={{ postUrl }}', 'newwindow', 'width=600, height=500'); return false;">
|
||||
<svg class="icon icon-google-plus" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-google-plus"></use>
|
||||
</svg>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://twitter.com/home?status={{ postUrl }}" onclick="window.open('https://twitter.com/home?status={{ postUrl }}', 'newwindow', 'width=600, height=250'); return false;">
|
||||
<svg class="icon icon-twitter" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-twitter"></use>
|
||||
</svg>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.facebook.com/sharer/sharer.php?u={{ postUrl }}" onclick="window.open('https://www.facebook.com/sharer/sharer.php?u={{ postUrl }}', 'newwindow', 'width=600, height=500'); return false;">
|
||||
<svg class="icon icon-facebook" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-facebook"></use>
|
||||
</svg>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<p class="post-body">{{ post.content | strip_html | truncate: 350 }} <a href="{{ site.baseurl | append: post.url }}">continue reading</a></p>
|
||||
</article>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
|
||||
{% if paginator.total_pages > 1 %}
|
||||
|
||||
<div class="row">
|
||||
<div class="pagination">
|
||||
{% if paginator.previous_page %}
|
||||
<a href="/page{{ paginator.previous_page }}" class="previous">Previous</a>
|
||||
{% else %}
|
||||
<span class="previous">Previous</span>
|
||||
{% endif %}
|
||||
<span class="page-number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
|
||||
{% if paginator.next_page %}
|
||||
<a href="/page{{ paginator.next_page }}" class="next">Next</a>
|
||||
{% else %}
|
||||
<span class="next ">Next</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endif %}
|
||||
|
||||
<div class="row text-center">
|
||||
<p class="rss-subscribe">Subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}" target="_blank">via RSS</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Blog -->
|
52
_includes/buy-tickets.html
Normal file
52
_includes/buy-tickets.html
Normal file
|
@ -0,0 +1,52 @@
|
|||
<!-- Begin Buy Tickets Section -->
|
||||
<section id="buy-tickets">
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-8 col-md-10 col-lg-offset-2 col-md-offset-1">
|
||||
<h3>Pricetable</h3>
|
||||
<div class="col-md-4 col-sm-4 pricing-col animated hiding" data-animation="fadeInLeft" data-delay="500">
|
||||
<div class="pricing-header">
|
||||
<h3 class="title">1 day</h3>
|
||||
<h4 class="amount">$100</h4>
|
||||
</div>
|
||||
<div class="pricing-content">
|
||||
<ul>
|
||||
<li>Lorem ipsum is simply</li>
|
||||
<li>Dummy text of the printing</li>
|
||||
<li>Typesetting industry</li>
|
||||
</ul>
|
||||
<a class="button" href="#">Buy Now</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 col-sm-4 pricing-col pricing-col-featured animated hiding" data-animation="fadeInDown" data-delay="0">
|
||||
<div class="pricing-ribbon">-20%</div>
|
||||
<div class="pricing-header">
|
||||
<h3 class="title">3 days</h3>
|
||||
<h4 class="amount">$150</h4>
|
||||
</div>
|
||||
<div class="pricing-content">
|
||||
<ul>
|
||||
<li>Lorem ipsum is simply</li>
|
||||
<li>Dummy text of the printing</li>
|
||||
<li>Typesetting industry</li>
|
||||
</ul>
|
||||
<a class="button" href="#">Buy Now</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 col-sm-4 pricing-col animated hiding" data-animation="fadeInRight" data-delay="500">
|
||||
<div class="pricing-header">
|
||||
<h3 class="title">2 days</h3>
|
||||
<h4 class="amount">$200</h4>
|
||||
</div>
|
||||
<div class="pricing-content">
|
||||
<ul>
|
||||
<li>Lorem ipsum is simply</li>
|
||||
<li>Dummy text of the printing</li>
|
||||
<li>Typesetting industry</li>
|
||||
</ul>
|
||||
<a class="button" href="#">Buy Now</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Buy Tickets Section -->
|
78
_includes/direction-details.html
Normal file
78
_includes/direction-details.html
Normal file
|
@ -0,0 +1,78 @@
|
|||
<!-- Begin Direction Details-->
|
||||
<section id="direction-details">
|
||||
<div class="content-wrapper">
|
||||
<section class="image-section" style="background-image: url('{{ site.baseurl }}/img/direction-details.jpg');">
|
||||
<h3>Get around Lviv</h3>
|
||||
</section>
|
||||
<div class="row">
|
||||
<div class="col-lg-10 col-lg-offset-1 text-left same-height-wrapper">
|
||||
<div class="col-md-4 col-xs-12 same-height animated hiding" data-animation="fadeInDown" data-delay="0">
|
||||
<div class="card">
|
||||
<h4>From the Airport</h4>
|
||||
<p>Airport is right at the city border. It is easily reachable by car, public transport or taxi. More information is available at <a href="http://lwo.aero/en/transport">airport website</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 col-xs-12 same-height animated hiding" data-animation="fadeInDown" data-delay="500">
|
||||
<div class="card">
|
||||
<h4>Public Transit</h4>
|
||||
<p>Google Transit is available in Lviv. So you can find your way in Google Maps. Moreover, you can download any of the offline public transit apps available for Lviv.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 col-xs-12 same-height animated hiding" data-animation="fadeInDown" data-delay="1000">
|
||||
<div class="card">
|
||||
<h4>Hotels</h4>
|
||||
<p>Lviv has lots of great hotels and hostels. More information will be available later.</p>
|
||||
</div>
|
||||
</div>
|
||||
<!--div class="col-md-12 col-xs-12 animated hiding" data-animation="fadeInDown" data-delay="0">
|
||||
<div class="card questions">
|
||||
<h4>Questions?</h4>
|
||||
<div class="col-md-4 col-xs-12">
|
||||
<h5>General</h5>
|
||||
<ul>
|
||||
<li><a href="#" target="_blank">InterContinental</a>
|
||||
</li>
|
||||
<li><a href="#" target="_blank">The Hotel Rex</a>
|
||||
</li>
|
||||
<li><a href="#" target="_blank">Westin Market Street</a>
|
||||
</li>
|
||||
<li><a href="#" target="_blank">Hotel Adagio</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-4 col-xs-12">
|
||||
<h5>Registration</h5>
|
||||
<ul>
|
||||
<li><a href="#" target="_blank">InterContinental</a>
|
||||
</li>
|
||||
<li><a href="#" target="_blank">The Hotel Rex</a>
|
||||
</li>
|
||||
<li><a href="#" target="_blank">Westin Market Street</a>
|
||||
</li>
|
||||
<li><a href="#" target="_blank">Hotel Adagio</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-4 col-xs-12">
|
||||
<h5>Attendance Details</h5>
|
||||
<ul>
|
||||
<li><a href="#" target="_blank">InterContinental</a>
|
||||
</li>
|
||||
<li><a href="#" target="_blank">The Hotel Rex</a>
|
||||
</li>
|
||||
<li><a href="#" target="_blank">Westin Market Street</a>
|
||||
</li>
|
||||
<li><a href="#" target="_blank">Hotel Adagio</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div-->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Direction Details -->
|
14
_includes/disqus-comments.html
Normal file
14
_includes/disqus-comments.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<div id="disqus_thread"></div>
|
||||
<script type="text/javascript">
|
||||
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
|
||||
var disqus_shortname = '{{ site.discusShortName }}'; // required: replace example with your forum shortname
|
||||
|
||||
/* * * DON'T EDIT BELOW THIS LINE * * */
|
||||
(function() {
|
||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
</script>
|
50
_includes/find-way.html
Normal file
50
_includes/find-way.html
Normal file
|
@ -0,0 +1,50 @@
|
|||
<!-- Begin Find Way-->
|
||||
<a id="findyourway"/>
|
||||
<section id="find-way">
|
||||
<div id="canvas-map"></div>
|
||||
<div class="content-wrapper text-left">
|
||||
<h3 class="animated hiding" data-animation="fadeInUp" data-delay="0">Find your way here</h3>
|
||||
<div class="map-card col-lg-3 col-md-4 col-sm-6 col-xs-12">
|
||||
<div class="map-search">
|
||||
<input type="text" id="location-input" class="location-input" name="location-input" data-input-value="Your location" placeholder="Your location" autocomplete="off">
|
||||
<svg id="direction-locate" class="icon icon-geolocation" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-geolocation"></use>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="location-result">
|
||||
<span id="result-name"></span>
|
||||
<span>to DevFest</span>
|
||||
<svg id="direction-cancel" class="icon icon-cross" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-cross"></use>
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
<div class="map-card location-details col-lg-3 col-md-4 col-sm-6 col-xs-12">
|
||||
<ul>
|
||||
<li>
|
||||
<svg class="icon icon-flag" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-flag"></use>
|
||||
</svg>
|
||||
<span>Distance</span>
|
||||
<span id="distance" class="details-result pull-right"></span>
|
||||
</li>
|
||||
<li>
|
||||
<div id="mode">
|
||||
<svg id="mode-icon" class="icon icon-mode" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-flight"></use>
|
||||
</svg>
|
||||
<select id="mode-select">
|
||||
<option value="DRIVING">DRIVING</option>
|
||||
<option value="WALKING">WALKING</option>
|
||||
<option value="BICYCLING">BICYCLING</option>
|
||||
<option value="TRANSIT">TRANSIT</option>
|
||||
</select>
|
||||
<span id="estimateTime" class="details-result pull-right"></span>
|
||||
</div>
|
||||
<a id="find-flight" href="https://google.com/flights" class="pull-right hidden" target="_blank">Find Flight</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Find Way -->
|
73
_includes/footer.html
Normal file
73
_includes/footer.html
Normal file
|
@ -0,0 +1,73 @@
|
|||
<!-- Begin Footer -->
|
||||
<footer id="footer">
|
||||
<div class="row">
|
||||
<div class="pull-left col-md-6 col-xs-6">
|
||||
<div class="g-plusone" data-size="medium" data-annotation="inline" data-width="300" data-href="{{site.url}}"></div>
|
||||
</div>
|
||||
<div class="logo-footer logo-gray pull-right"></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-4 col-sm-4 col-xs-6">
|
||||
<ul>
|
||||
<h5>Links</h5>
|
||||
<li><a href="http://gdg.org.ua" target="_blank">GDG.org.ua</a>
|
||||
</li>
|
||||
<li><a href="https://developers.google.com" target="_blank">Google Developers</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="social-links">
|
||||
<li>
|
||||
<a href="{{site.gplusFollowUsUrl}}" target="_blank">
|
||||
<svg class="icon icon-google-plus" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-google-plus"></use>
|
||||
</svg>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{site.twitterFollowUsUrl}}" target="_blank">
|
||||
<svg class="icon icon-twitter" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-twitter"></use>
|
||||
</svg>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{site.fbFollowUsUrl}}" target="_blank">
|
||||
<svg class="icon icon-facebook" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-facebook"></use>
|
||||
</svg>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{ "/feed.xml" | prepend: site.baseurl }}" target="_blank">
|
||||
<svg class="icon icon-rss" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-rss"></use>
|
||||
</svg>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-4 col-sm-4 col-xs-6">
|
||||
<h5>Contacts</h5>
|
||||
<ul>
|
||||
<li><a href="mailto:{{ site.email }}" target="_blank">{{ site.email }}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-4 col-sm-4 col-xs-6">
|
||||
<h5>FAQ</h5>
|
||||
<ul>
|
||||
<li><a href="{{ "/cod/" | prepend: site.baseurl }}">Code of Conduct</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<!-- Please don't delete this line-->
|
||||
<div class="col-md-6">
|
||||
<p class="copyright">
|
||||
© 2014 Designed and created by <a href="https://plus.google.com/+OlehZasadnyy/about">Oleh Zasadnyy</a> · <a href="http://lviv.gdg.org.ua" target="_blank">GDG Lviv</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<!-- End Footer -->
|
64
_includes/head.html
Normal file
64
_includes/head.html
Normal file
|
@ -0,0 +1,64 @@
|
|||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
|
||||
<meta name="author" content="Oleh Zasadnyy, GDG Lviv">
|
||||
<meta name="description" content="{{ site.description }}">
|
||||
<meta name="keywords" content="{{ site.metaKeywords }}">
|
||||
<link rel="canonical" href="{{ site.url }}">
|
||||
<!-- Social: Google+ / Schema.org -->
|
||||
<meta itemprop="name" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
|
||||
<meta itemprop="description" content="{{ site.description }}">
|
||||
<meta itemprop="image" content="{{ site.socialImageSrcGooglePlus | prepend: site.baseurl | prepend: site.url }}">
|
||||
<!-- Social: Twitter -->
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:site" content="{{ site.twitterAccount }}">
|
||||
<meta name="twitter:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
|
||||
<meta name="twitter:description" content="{{ site.description }}">
|
||||
<meta name="twitter:image:src" content="{{ site.socialImageSrcTwitter | prepend: site.baseurl | prepend: site.url }}">
|
||||
<!-- Social: Facebook / Open Graph -->
|
||||
<meta property="og:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}" />
|
||||
<meta property="og:site_name" content="{{ site.title }}" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="{{ site.url }}" />
|
||||
<meta property="og:image" content="{{ site.socialImageSrcFacebook | prepend: site.baseurl | prepend: site.url }}" />
|
||||
<meta property="og:description" content="{{ site.description }}" />
|
||||
|
||||
|
||||
<title>{% if page.title %}{{ page.title }} • {{ site.title }}{% else %}{{ site.title }}{% endif %}</title>
|
||||
<link rel="shortcut icon" href="{{ "/img/favicons/favicon.ico" | prepend: site.baseurl }}">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="{{ "/img/favicons/apple-touch-icon-152x152.png" | prepend: site.baseurl }}">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="{{ "/img/favicons/apple-touch-icon-144x144.png" | prepend: site.baseurl }}">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="{{ "/img/favicons/apple-touch-icon-120x120.png" | prepend: site.baseurl }}">
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="{{ "/img/favicons/apple-touch-icon-114x114.png" | prepend: site.baseurl }}">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="{{ "/img/favicons/apple-touch-icon-76x76.png" | prepend: site.baseurl }}">
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="{{ "/img/favicons/apple-touch-icon-72x72.png" | prepend: site.baseurl }}">
|
||||
<link rel="apple-touch-icon" sizes="60x60" href="{{ "/img/favicons/apple-touch-icon-60x60.png" | prepend: site.baseurl }}">
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="{{ "/img/favicons/apple-touch-icon-57x57.png" | prepend: site.baseurl }}">
|
||||
<link rel="icon" type="image/png" href="{{ "/img/favicons/favicon-196x196.png" sizes="196x196" | prepend: site.baseurl }}">
|
||||
<link rel="icon" type="image/png" href="{{ "/img/favicons/favicon-160x160.png" sizes="160x160" | prepend: site.baseurl }}">
|
||||
<link rel="icon" type="image/png" href="{{ "/img/favicons/favicon-96x96.png" sizes="96x96" | prepend: site.baseurl }}">
|
||||
<link rel="icon" type="image/png" href="{{ "/img/favicons/favicon-32x32.png" sizes="32x32" | prepend: site.baseurl }}">
|
||||
<link rel="icon" type="image/png" href="{{ "/img/favicons/favicon-16x16.png" sizes="16x16" | prepend: site.baseurl }}">
|
||||
<meta name="msapplication-TileColor" content="#2b5797">
|
||||
<meta name="msapplication-TileImage" content="{{ "/img/favicons/mstile-144x144.png" | prepend: site.baseurl }}">
|
||||
<meta name="msapplication-config" content="{{ "/img/favicons/browserconfig.xml" | prepend: site.baseurl }}">
|
||||
|
||||
<link href='http://fonts.googleapis.com/css?family=Roboto:100,300,400,500&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
|
||||
|
||||
<!-- Bootstrap -->
|
||||
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
|
||||
<!-- TODC Bootstrap theme -->
|
||||
<!-- <link href="{{ "/css/todc-bootstrap.min.css" | prepend: site.baseurl }}" rel="stylesheet">-->
|
||||
<link href="{{ "/css/animate.min.css" | prepend: site.baseurl }}" rel="stylesheet">
|
||||
<link href="{{ "/css/waves.min.css" | prepend: site.baseurl }}" rel="stylesheet">
|
||||
<link href="{{ "/css/style.min.css" | prepend: site.baseurl }}" rel="stylesheet">
|
||||
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
</head>
|
13
_includes/header.html
Normal file
13
_includes/header.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
<!-- Begin Top Section -->
|
||||
<section id="top-section">
|
||||
<div class="gradient-overlay"></div>
|
||||
|
||||
{% include navigation.html %}
|
||||
|
||||
<div class="jumbotron text-left">
|
||||
<div class="animated hiding" data-animation="fadeInLeft" data-delay="500">
|
||||
<h1>{{ page.title }}</h1>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Top Section -->
|
21
_includes/hero.html
Normal file
21
_includes/hero.html
Normal file
|
@ -0,0 +1,21 @@
|
|||
<!-- Begin Top Section -->
|
||||
<section id="top-section-hero" style="background-image: url('{{ site.baseurl }}/img/hero.jpg');">
|
||||
|
||||
{% include navigation.html %}
|
||||
|
||||
<div class="jumbotron">
|
||||
<div class="animated hiding" data-animation="fadeInDown" data-delay="500">
|
||||
<h1>GDG DevFest <span id="typeout-text"></span> 2014</h1>
|
||||
<p>{{site.eventDate}}</p>
|
||||
<span class="btn btn-primary waves-element waves-button waves-light waves-will-raise">
|
||||
<a href="{{ site.c4pUrl }}" target="_blank">Become a speaker</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#about" class="explore">
|
||||
<svg class="icon icon-arrow-down" viewBox="0 0 32 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-arrow-down"></use>
|
||||
</svg>
|
||||
</a>
|
||||
</section>
|
||||
<!-- End Top Section -->
|
18
_includes/latest-news.html
Normal file
18
_includes/latest-news.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!-- Begin Latest News Section -->
|
||||
<section id="latest-news">
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-10 col-lg-offset-1">
|
||||
<h3>Latest news</h3>
|
||||
<article class="row">
|
||||
{% for post in site.posts limit:2 %}
|
||||
{% assign postUrl = site.baseurl | append: post.url %}
|
||||
<div class="post col-md-6 col-sm-6 text-left animated hiding" data-animation="fadeInDown" data-delay="500">
|
||||
<h6>{{ post.title }}</h6>
|
||||
<p class="post-body">{{ post.content | strip_html | truncate: 250 }} <a href="{{ postUrl }}">continue reading</a></p>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Latest News Section -->
|
30
_includes/location-map.html
Normal file
30
_includes/location-map.html
Normal file
|
@ -0,0 +1,30 @@
|
|||
<!-- Begin Location Section -->
|
||||
<section id="location">
|
||||
<div id="canvas-map"></div>
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-3 col-md-4 col-sm-6 col-md-offset-1 animated hiding location-description text-left" data-animation="fadeInLeft" data-delay="0">
|
||||
<div class="row">
|
||||
<div class="pull-left">
|
||||
<h3>Location</h3>
|
||||
<ul itemscope="" itemtype="http://schema.org/PostalAddress">
|
||||
{% if site.eventLocationName %}
|
||||
<li itemprop="name">{{site.eventLocationName}}</li>{% endif %}
|
||||
<li itemprop="address">{{site.eventLocationAddress}}</li>
|
||||
<li itemprop="email"><a href="mailto:{{site.email}}">{{site.email}}</a>
|
||||
</li>
|
||||
<li itemscope="" itemtype="http://schema.org/Event">
|
||||
<time itemprop="startDate" datetime="{{site.eventStartTime}}">{{site.eventStartTimeHumanReadable}}</time>-
|
||||
<time itemprop="endDate" datetime="{{site.eventEndTime}}">{{site.eventEndTimeHumanReadable}}</time>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<a href="{{ site.baseurl | append: '/logistics/#findyourway' }}" class="pull-right">
|
||||
<svg class="icon icon-direction" viewBox="0 0 32 32">
|
||||
<use xlink:href="img/sprites/sprites.svg#icon-direction"></use>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Location Section -->
|
34
_includes/navigation.html
Normal file
34
_includes/navigation.html
Normal file
|
@ -0,0 +1,34 @@
|
|||
<header id="top-header" class="col-lg-10 col-sm-12">
|
||||
<svg id="menu-trigger" class="icon icon-menu visible-xs" viewBox="0 0 32 32" data-effect="st-effect">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-menu"></use>
|
||||
</svg>
|
||||
<a href="{{ site.baseurl }}/" id="logo-header" class="logo-header logo-light"></a>
|
||||
<nav class="st-menu st-effect" id="menu">
|
||||
<div class="logo-navbar logo-dark visible-xs"></div>
|
||||
<ul>
|
||||
<li><a {% if page.permalink == '/' %} class="current" {% endif %} href="{{ site.baseurl }}/">Home</a>
|
||||
</li>
|
||||
<li><a {% if page.permalink == '/blog/' %} class="current" {% endif %} href="{{ site.baseurl }}/blog/">Blog</a>
|
||||
</li>
|
||||
<!-- <li><a href="#">Schedule</a>
|
||||
</li> -->
|
||||
<li><a {% if page.permalink == '/speakers/' %} class="current" {% endif %} href="{{ site.baseurl }}/speakers/">Speakers</a>
|
||||
</li>
|
||||
<li><a {% if page.permalink == '/team/' %} class="current" {% endif %} href="{{ site.baseurl }}/team/">Team</a>
|
||||
</li>
|
||||
<!-- <li><a href="#">Hackathon</a>
|
||||
</li> -->
|
||||
<li><a {% if page.permalink == '/logistics/' %} class="current" {% endif %} href="{{ site.baseurl }}/logistics/">Logistics</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul id="bottom-navlinks" class="bottom-navlinks visible-xs">
|
||||
<!-- <li><a href="#">Buy tickets</a>
|
||||
</li> -->
|
||||
<li><a href="{{ site.c4pUrl }}" target="_blank">Become a speaker</a>
|
||||
</li>
|
||||
</ul>
|
||||
<span id="buy-tickets-button" class="btn btn-primary waves-element waves-button waves-light waves-will-raise pull-right hidden-xs hidden-sm hidden">
|
||||
<a href="{{ site.c4pUrl }}" target="_blank">Become a speaker</a>
|
||||
</span>
|
||||
</nav>
|
||||
</header>
|
35
_includes/organizers.html
Normal file
35
_includes/organizers.html
Normal file
|
@ -0,0 +1,35 @@
|
|||
<!-- Begin Organizers Section -->
|
||||
<section id="sponsors">
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-10 col-lg-offset-1">
|
||||
<!-- <h3>Organizers</h3> -->
|
||||
<h5>Main organizer</h5>
|
||||
<ul class="list-inline">
|
||||
<li>
|
||||
<a href="http://lviv.gdg.org.ua/" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-lviv.svg" alt="Google Developers Group Lviv">
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h5>Co-organizers</h5>
|
||||
<ul class="list-inline">
|
||||
<li>
|
||||
<a href="http://kyiv.gdg.org.ua/" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-kyiv.png" alt="Google Developers Group Kyiv">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://cherkassy.gdg.org.ua/" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-cherkassy.png" alt="Google Developers Group Cherkassy">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://dnipro.gdg.org.ua/" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-dnipropetrovsk.png" alt="Google Developers Group Dnipropetrovs'k">
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Organizers Section -->
|
77
_includes/post.html
Normal file
77
_includes/post.html
Normal file
|
@ -0,0 +1,77 @@
|
|||
<!-- Begin Post-->
|
||||
<section id="post-section">
|
||||
<div class="content-wrapper text-left">
|
||||
<div class="col-md-10 col-sm-10 col-lg-offset-2 col-md-offset-2 col-sm-offset-1">
|
||||
<div class="col-lg-8 col-md-10 col-xs-12">
|
||||
|
||||
<article class="row post">
|
||||
|
||||
{% if include.isStaticPost == false %}
|
||||
<div class="post-header">
|
||||
<div class="published pull-left">
|
||||
<span class="caption">Posted:</span>
|
||||
<span class="publish-date" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</span>
|
||||
</div>
|
||||
<div class="share pull-right">
|
||||
<ul class="social-links">
|
||||
<li>
|
||||
<a href="https://plus.google.com/share?url={{ postUrl }}" onclick="window.open('https://plus.google.com/share?url={{ postUrl }}', 'newwindow', 'width=600, height=500'); return false;">
|
||||
<svg class="icon icon-google-plus" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-google-plus"></use>
|
||||
</svg>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://twitter.com/home?status={{ postUrl }}" onclick="window.open('https://twitter.com/home?status={{ postUrl }}', 'newwindow', 'width=600, height=250'); return false;">
|
||||
<svg class="icon icon-twitter" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-twitter"></use>
|
||||
</svg>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.facebook.com/sharer/sharer.php?u={{ postUrl }}" onclick="window.open('https://www.facebook.com/sharer/sharer.php?u={{ postUrl }}', 'newwindow', 'width=600, height=500'); return false;">
|
||||
<svg class="icon icon-facebook" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-facebook"></use>
|
||||
</svg>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="post-body">{{ content }}</div>
|
||||
|
||||
<div id="page-navigation">
|
||||
<div class="left pull-left">
|
||||
{% if page.next.url %}
|
||||
<a href="{{page.next.url}}" title="{{page.next.title | strip_html }}">« {{page.next.title | strip_html | truncate: 15 }}</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="right pull-right">
|
||||
{% if page.previous.url %}
|
||||
<a href="{{page.previous.url}}" title="{{page.previous.title | strip_html }}">{{page.previous.title | strip_html | truncate: 15 }} »</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% if include.isStaticPost == false %}
|
||||
<div class="comments">
|
||||
{% if site.blogCommentsEnabled %} {% include disqus-comments.html %} {% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
</article>
|
||||
|
||||
{% if include.isStaticPost == false %}
|
||||
<div class="row text-center">
|
||||
<p class="rss-subscribe">Subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}" target="_blank">via RSS</a>
|
||||
</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Post -->
|
26
_includes/rockstar-speakers.html
Normal file
26
_includes/rockstar-speakers.html
Normal file
|
@ -0,0 +1,26 @@
|
|||
<!-- Begin Rockstar Speakers Section -->
|
||||
<section id="top-speakers" class="parallax" style="background-image: url({{ site.baseurl }}/img/top-speakers.jpg);">
|
||||
<div class="overlay"></div>
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-10 col-lg-offset-1 rockstar-speakers-list">
|
||||
<h3>Rockstar speakers</h3>
|
||||
{% for speaker in site.data.speakers %}
|
||||
{% if speaker.rockstar %}
|
||||
<div id="rockstar-speaker-{{ speaker.id }}" class="col-md-3 col-sm-3 col-xs-6 hidden rockstar-speakers-item animated hiding increment-animation" data-id="{{ speaker.id }}" data-animation="fadeInUp" data-delay="500">
|
||||
<div class="top-speaker-item">
|
||||
<div class="flow-img img-circle top-speaker-img" style="background-image: url({{ site.baseurl | append: site.thumbnailsFolder | append: speaker.thumbnailUrl }})"></div>
|
||||
<div class="name">{{ speaker.name }} {{ speaker.surname }}</div>
|
||||
<div class="sub">{{ speaker.company }}</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
<div class="clearfix"></div>
|
||||
<span class="waves-element waves-button waves-light bordered">
|
||||
<a href="{{ site.baseurl }}/speakers/" class="bottom-section-link">See all speakers</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Rockstar Speakers Section -->
|
45
_includes/speakers-list-2.html
Normal file
45
_includes/speakers-list-2.html
Normal file
|
@ -0,0 +1,45 @@
|
|||
<!-- Begin Speakers List 2-->
|
||||
<section id="speakers">
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-10 col-lg-offset-1">
|
||||
{% for speaker in site.data.speakers %}
|
||||
<div class="team-item-wrapper col-md-4 col-sm-6 col-xs-12">
|
||||
<div class="team-item animated waves-element waves-block waves-light hiding increment-animation" data-animation="fadeInUp" data-delay="50" data-toggle="modal" data-target="#speakerDetail-{{ speaker.id }}">
|
||||
<figure class="flow-img" style="background-image: url({{ site.baseurl | append: site.thumbnailsFolder | append: speaker.thumbnailUrl }})">
|
||||
<div class="overlay"></div>
|
||||
{% if speaker.ribbon != null %}
|
||||
<ul class="speaker-ribbon-wrapper">
|
||||
{% for ribbon in speaker.ribbon %}
|
||||
<li class="{{ ribbon["abbr"] | downcase }}">
|
||||
<p class="speaker-ribbon abbr">{{ ribbon["abbr"] }}</p>
|
||||
<p class="speaker-ribbon full-title">{{ ribbon["title"] }}</p>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
<figcaption>
|
||||
<div class="col-md-8 col-xs-8 text-left">
|
||||
<h2 class="name">{{ speaker.name }} <span>{{ speaker.surname }}</span></h2>
|
||||
<div class="clearfix"></div>
|
||||
<span class="position">{{ speaker.company }}</span>
|
||||
</div>
|
||||
{% for social in speaker.social %}
|
||||
<a href="{{ social["link"] }}" target="_blank">
|
||||
<svg class="icon icon-{{ social["name"] }}" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-{{ social["name"] }}"></use>
|
||||
</svg>
|
||||
</a>
|
||||
{% endfor %}
|
||||
</figcaption>
|
||||
<p class="bio">{{ speaker.bio | strip_html }}</p>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<span class="btn btn-primary waves-element waves-button waves-light waves-will-raise" style="margin-top: 25px;">
|
||||
<a class="bottom-section-link" href="{{ site.c4pUrl }}" target="_blank">Become a speaker</a>
|
||||
</span>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Speakers List 2 -->
|
57
_includes/speakers-list.html
Normal file
57
_includes/speakers-list.html
Normal file
|
@ -0,0 +1,57 @@
|
|||
<!-- Begin Speakers List-->
|
||||
<section id="speakers">
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-10 col-lg-offset-1">
|
||||
<div class="row text-left">
|
||||
{% for speaker in site.data.speakers %}
|
||||
<div class="team-item-wrapper col-md-4 col-sm-6 col-xs-12">
|
||||
<div class="speaker-item animated hiding increment-animation" data-animation="fadeInUp" data-delay="50">
|
||||
<div class="speaker-head waves-element waves-block waves-light" data-toggle="modal" data-target="#speakerDetail-{{ speaker.id }}">
|
||||
<figure class="flow-img" style="background-image: url({{ site.baseurl | append: site.thumbnailsFolder | append: speaker.thumbnailUrl }})">
|
||||
<div class="overlay"></div>
|
||||
{% if speaker.ribbon != null %}
|
||||
<ul class="speaker-ribbon-wrapper">
|
||||
{% for ribbon in speaker.ribbon %}
|
||||
<li class="{{ ribbon["abbr"] | downcase }}">
|
||||
<p class="speaker-ribbon abbr">{{ ribbon["abbr"] }}</p>
|
||||
<p class="speaker-ribbon full-title">{{ ribbon["title"] }}</p>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% if site.showSessions %}
|
||||
<figcaption>
|
||||
<h2 class="name">{{ speaker.name }} <span>{{ speaker.surname }}</span></h2>
|
||||
<p class="position">{{ speaker.company }}</p>
|
||||
</figcaption>
|
||||
{% endif %}
|
||||
</figure>
|
||||
</div>
|
||||
<div class="speaker-bottom">
|
||||
<ul class="slider">
|
||||
{% if site.showSessions %}
|
||||
{% for session in site.data.sessions %}
|
||||
{% for session_speaker in session.speakers %}
|
||||
{% if session_speaker == speaker.id %}
|
||||
<li class="title slider-item animated fadeInRight hidden">{{ session.title }}</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<h2 class="name">{{ speaker.name }} <span>{{ speaker.surname }}</span></h2>
|
||||
<p class="position">{{ speaker.company }}</p>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
<a href="#" class="slider-next-item hidden">Next</a>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<span class="btn btn-primary waves-element waves-button waves-light waves-will-raise" style="margin-top: 25px;">
|
||||
<a class="bottom-section-link" href="{{ site.c4pUrl }}" target="_blank">Become a speaker</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Speakers List -->
|
65
_includes/speakers-modals.html
Normal file
65
_includes/speakers-modals.html
Normal file
|
@ -0,0 +1,65 @@
|
|||
<!-- Begin Speakers Modals -->
|
||||
<div class="modals">
|
||||
{% for speaker in site.data.speakers %}
|
||||
{% if page.modal == "all" or (page.modal == 'team' and (speaker.team != null or speaker.subTeam != null)) %}
|
||||
<div class="modal fade text-left speaker-modal" id="speakerDetail-{{ speaker.id }}" tabindex="-1" role="dialog" aria-labelledby="speakerDetailLabel-{{ speaker.id }}" aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-body">
|
||||
<div class="close">
|
||||
<svg class="icon icon-cross" viewBox="0 0 32 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-cross"></use>
|
||||
</svg>
|
||||
<div class="close-mask" data-dismiss="modal"></div>
|
||||
</div>
|
||||
{% if site.showSessions %}
|
||||
{% for session in site.data.sessions %}
|
||||
{% for session_speaker in session.speakers %}
|
||||
{% if session_speaker == speaker.id %}
|
||||
<h4>{{ session.title }}</h4>
|
||||
<span class="theme-language"><span class="caption">Language: </span>{{session.language}}</span>
|
||||
<p class="theme-description">{{ session.description }}</p>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
<hr>
|
||||
{% endif %}
|
||||
<div class="speaker-details">
|
||||
<div class="row">
|
||||
<div class="col-md-2 col-sm-2">
|
||||
<div class="flow-img img-circle speaker-img" style="background-image: url({{ site.baseurl | append: site.thumbnailsFolder | append: speaker.thumbnailUrl }})"></div>
|
||||
</div>
|
||||
<div class="col-md-10 col-sm-10 details">
|
||||
<p class="name">{{ speaker.name }} {{ speaker.surname }}
|
||||
<span class="position">{{ speaker.title }}, {{ speaker.company }}</span>
|
||||
</p>
|
||||
{% if speaker.ribbon != null %}
|
||||
<div class="modal-ribbon-wrapper">
|
||||
{% for ribbon in speaker.ribbon %}
|
||||
<a class="modal-ribbon" href="ribbon["url"]" target="_blank">{{ ribbon["title"] }}</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endif %}
|
||||
<p class="about">{{ speaker.bio }}</p>
|
||||
<ul class="social">
|
||||
{% for social in speaker.social %}
|
||||
<li>
|
||||
<a href="{{ social["link"] }}" target="_blank">
|
||||
<svg class="icon icon-{{ social["name"] }}" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-{{ social["name"] }}"></use>
|
||||
</svg>
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
<!-- End Speakers Modals -->
|
106
_includes/sponsors.html
Normal file
106
_includes/sponsors.html
Normal file
|
@ -0,0 +1,106 @@
|
|||
<!-- Begin Sponsors Section -->
|
||||
<section id="sponsors">
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-10 col-lg-offset-1">
|
||||
<h3>Sponsors</h3>
|
||||
<h5>Platium</h5>
|
||||
<ul class="list-inline">
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/google.svg" alt="sponsor-1">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-lviv.svg" alt="sponsor-2">
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h5>Gold</h5>
|
||||
<ul class="list-inline">
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/google.svg" alt="sponsor-1">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-lviv.svg" alt="sponsor-2">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-x.svg" alt="sponsor-3">
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h5>Information partners</h5>
|
||||
<ul class="list-inline">
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/google.svg" alt="sponsor-1">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-lviv.svg" alt="sponsor-2">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-x.svg" alt="sponsor-3">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/google.svg" alt="sponsor-1">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-lviv.svg" alt="sponsor-2">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-x.svg" alt="sponsor-3">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/google.svg" alt="sponsor-1">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-lviv.svg" alt="sponsor-2">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-x.svg" alt="sponsor-3">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/google.svg" alt="sponsor-1">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-lviv.svg" alt="sponsor-2">
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" target="_blank">
|
||||
<img src="{{ site.baseurl }}/img/sponsors/gdg-x.svg" alt="sponsor-3">
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="btn btn-primary waves-element waves-button waves-light waves-will-raise">
|
||||
<a href="{{ site.baseurl | append: site.c4sponsorsUrl }}">Become a sponsor</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Sponsors Section -->
|
43
_includes/statistics.html
Normal file
43
_includes/statistics.html
Normal file
|
@ -0,0 +1,43 @@
|
|||
<!-- Begin Statistic Section -->
|
||||
<section id="statistic" class="parallax" style="background-image: url({{ site.baseurl }}/img/statistic.jpg);">
|
||||
<div class="overlay"></div>
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-10 col-lg-offset-1">
|
||||
<div class="col-md-3 col-sm-3 col-xs-6">
|
||||
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="0">
|
||||
<div class="stat"><span class="timer" data-from="0" data-to="350">350</span>+</div>
|
||||
<div class="stat-info">attendees</div>
|
||||
<hr>
|
||||
<p class="small">from everywhere</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3 col-sm-3 col-xs-6">
|
||||
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="500">
|
||||
<div class="stat"><span class="timer" data-from="0" data-to="48">48</span>+
|
||||
</div>
|
||||
<div class="stat-info">hours</div>
|
||||
<hr>
|
||||
<p class="small">of pure Google technologies</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3 col-sm-3 col-xs-6">
|
||||
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="1000">
|
||||
<div class="stat"><span class="timer" data-from="0" data-to="20">20</span>+</div>
|
||||
<div class="stat-info">speakers</div>
|
||||
<hr>
|
||||
<p class="small">from country and beyond</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3 col-sm-3 col-xs-6">
|
||||
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="1500">
|
||||
<div class="stat"><span class="timer" data-from="0" data-to="3">3</span>
|
||||
</div>
|
||||
<div class="stat-info">parallel tracks</div>
|
||||
<hr>
|
||||
<p class="small">plus entertainment lounge</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Statistic Section -->
|
32
_includes/subscribe.html
Normal file
32
_includes/subscribe.html
Normal file
|
@ -0,0 +1,32 @@
|
|||
<!-- Begin Subscribe Section -->
|
||||
<section id="subscribe" class="parallax" style="background-image: url({{ site.baseurl }}/img/subscribe.jpg);">
|
||||
<div class="overlay"></div>
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-8 col-lg-offset-2 animated hiding" data-animation="fadeInUp" data-delay="0">
|
||||
<h3>Subscribe for updates</h3>
|
||||
<div id="mc_embed_signup" class="col-lg-8 col-sm-8 col-lg-offset-2 col-sm-offset-2">
|
||||
<form action="{{site.subscribeAction}}" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
|
||||
<div class="mc-field-group col-lg-9 col-sm-9 col-xs-12">
|
||||
<span class="email waves-element waves-button waves-light bordered">
|
||||
<input type="email" value="" name="EMAIL" class="required" id="mce-EMAIL" placeholder="your@email.com" autocomplete="off">
|
||||
</span>
|
||||
</div>
|
||||
<div id="mce-responses" class="clear">
|
||||
<div class="response" id="mce-error-response" style="display:none"></div>
|
||||
<div class="response" id="mce-success-response" style="display:none"></div>
|
||||
</div>
|
||||
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
|
||||
<div style="position: absolute; left: -5000px;">
|
||||
<input type="text" name="b_9fc8aa205b0521b5f05fc8e1e_ae0fb459fc" tabindex="-1" value="">
|
||||
</div>
|
||||
<div class="mc-submit-group clear col-lg-3 col-sm-3 col-xs-12">
|
||||
<span class="button waves-element waves-button waves-light bordered">
|
||||
<input type="submit" value="Submit" name="subscribe" id="mc-embedded-subscribe">
|
||||
</span>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Subscribe Section -->
|
63
_includes/team.html
Normal file
63
_includes/team.html
Normal file
|
@ -0,0 +1,63 @@
|
|||
<!-- Begin Team List-->
|
||||
<section id="team">
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-10 col-lg-offset-1">
|
||||
<h3>About us</h3>
|
||||
<p class="text-left animated hiding" data-animation="fadeInUp" data-delay="0">{{ site.aboutUs }}</p>
|
||||
</div>
|
||||
<div class="col-lg-10 col-lg-offset-1 row-centered">
|
||||
<h4 class="text-left animated hiding" data-animation="fadeInUp" data-delay="0">Organizers</h4>
|
||||
{% for speaker in site.data.team %} {% if speaker.team != null %}
|
||||
<div class="team-item-wrapper col-md-4 col-sm-6 col-xs-12 cols-centered">
|
||||
<div class="team-item animated waves-element waves-block waves-light hiding increment-animation" data-animation="fadeInUp" data-delay="100" data-toggle="modal" data-target="#speakerDetail-{{ speaker.id }}">
|
||||
<figure class="flow-img" style="background-image: url({{ site.baseurl | append: site.thumbnailsFolder | append: speaker.thumbnailUrl }})">
|
||||
<div class="overlay"></div>
|
||||
<figcaption>
|
||||
<div class="col-md-8 col-xs-8 text-left">
|
||||
<h2 class="name">{{ speaker.name }} <span>{{ speaker.surname }}</span></h2>
|
||||
<div class="clearfix"></div>
|
||||
<span class="position">{{ speaker.title }}</span>
|
||||
</div>
|
||||
{% for social in speaker.social %}
|
||||
<a href="{{ social["link"] }}" target="_blank">
|
||||
<svg class="icon icon-{{ social["name"] }}" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-{{ social["name"] }}"></use>
|
||||
</svg>
|
||||
</a>
|
||||
{% endfor %}
|
||||
</figcaption>
|
||||
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %} {% endfor %}
|
||||
<div class="clearfix"></div>
|
||||
<h4 class="text-left animated hiding" data-animation="fadeInUp" data-delay="0">Program committee</h4>
|
||||
{% for speaker in site.data.team %} {% if speaker.subTeam != null %}
|
||||
<div class="team-item-wrapper col-md-4 col-sm-6 col-xs-12 cols-centered">
|
||||
<div class="team-item animated waves-element waves-block waves-light hiding increment-animation" data-animation="fadeInUp" data-delay="100" data-toggle="modal" data-target="#speakerDetail-{{ speaker.id }}">
|
||||
<figure class="flow-img" style="background-image: url({{ site.baseurl | append: site.thumbnailsFolder | append: speaker.thumbnailUrl }})">
|
||||
<div class="overlay"></div>
|
||||
<figcaption>
|
||||
<div class="col-md-8 col-xs-8 text-left">
|
||||
<h2 class="name">{{ speaker.name }} <span>{{ speaker.surname }}</span></h2>
|
||||
<div class="clearfix"></div>
|
||||
<span class="position">{{ speaker.title }}</span>
|
||||
</div>
|
||||
{% for social in speaker.social %}
|
||||
<a href="{{ social["link"] }}" target="_blank">
|
||||
<svg class="icon icon-{{ social["name"] }}" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-{{ social["name"] }}"></use>
|
||||
</svg>
|
||||
</a>
|
||||
{% endfor %}
|
||||
</figcaption>
|
||||
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %} {% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Team List -->
|
15
_includes/twitter-feed.html
Normal file
15
_includes/twitter-feed.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!-- Begin Twitter Feed Section -->
|
||||
<section id="twitter-feed" class="parallax" style="background-image: url({{ site.baseurl }}/img/twitter-feed.jpg);">
|
||||
<div class="overlay"></div>
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-6 col-md-8 col-lg-offset-3 col-md-offset-2">
|
||||
<svg class="icon" viewBox="0 0 30 32">
|
||||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-twitter"></use>
|
||||
</svg>
|
||||
<h3>What's Up? <a href="https://twitter.com/search?q=%23{{ site.twitterHashTag }}" target="_blank">#{{ site.twitterHashTag }}</a>
|
||||
</h3>
|
||||
<div id="tweets" class="tweets"></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Twitter Feed Section -->
|
35
_includes/venue.html
Normal file
35
_includes/venue.html
Normal file
|
@ -0,0 +1,35 @@
|
|||
<!-- Venue Section -->
|
||||
<section id="venue">
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-10 col-lg-offset-1">
|
||||
<h3>Venue</h3>
|
||||
<div class="row venue-row">
|
||||
<div class="col-md-8 col-sm-8 venue-col">
|
||||
<div class="venue-elem-wrapper">
|
||||
<div class="venue-elem venue-big-elem venue-img animated hiding" data-animation="fadeIn" data-delay="0" style="background-image: url({{ site.baseurl }}/img/venue/venue_0.jpg)"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 col-sm-4 venue-col venue-small-col">
|
||||
<div class="venue-elem-wrapper col-md-12 col-sm-12 col-xs-6">
|
||||
<div class="venue-elem venue-small-elem venue-img animated hiding" data-animation="fadeIn" data-delay="150" style="background-image: url({{ site.baseurl }}/img/venue/venue_1.jpg)"></div>
|
||||
</div>
|
||||
<div class="venue-elem-wrapper col-md-12 col-sm-12 col-xs-6">
|
||||
<div class="venue-elem venue-small-elem venue-text animated hiding" data-animation="fadeIn" data-delay="0">
|
||||
<h5>Kinopalace Cinema</h5>
|
||||
<p>3 huge cinema screens</p>
|
||||
<p>Doulby Digital Surround EX audio system</p>
|
||||
<p>Located directly in the city center</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="venue-elem-wrapper col-md-12 col-sm-12 col-xs-6">
|
||||
<div class="venue-elem venue-small-elem venue-img animated hiding" data-animation="fadeIn" data-delay="0" style="background-image: url({{ site.baseurl }}/img/venue/venue_2.jpg)"></div>
|
||||
</div>
|
||||
<div class="venue-elem-wrapper col-xs-6 visible-xs">
|
||||
<div class="venue-elem venue-small-elem venue-img animated hiding" data-animation="fadeIn" data-delay="0" style="background-image: url({{ site.baseurl }}/img/venue/venue_3.jpg)"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Venue Section -->
|
Loading…
Add table
Add a link
Reference in a new issue