Most of texts are now in _config.yml, Knowledge Graph support

This commit is contained in:
Oleh Zasadnyy 2014-08-18 00:31:26 +03:00
parent c0f7dc3215
commit 4648f0dfc3
250 changed files with 1700 additions and 856 deletions

View file

@ -2,30 +2,22 @@
<section id="about" class="about">
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1">
<h3>About {{site.eventName}}</h3>
<h3>{{ site.aboutTitle }}</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>
{% assign animationDelay = 0 %}
{% for about in site.aboutBlock %}
{% assign colWidth = 12 | divided_by: forloop.length %}
<div class="col-md-{{ colWidth }} col-xs-6">
<div class="animated hiding" data-animation="fadeInDown" data-delay="{{ animationDelay }}">
<h5>{{ about.title }}</h5>
<img class="img-circle" src="{{ site.baseurl }}/img/{{ about.image }}" height="128" width="128" alt="{{ about.title }}">
<p>{{ about.text }}</p>
</div>
</div>
{% assign animationDelay = animationDelay | plus:500 %}
{% assign check = forloop.index | modulo:2 %}
{% if check == 0 %} <div class="clearfix visible-xs"></div> {% endif %}
{% endfor %}
</div>
</div>
</div>

View file

@ -2,13 +2,10 @@
<section id="blog" class="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>
<h3>{{ site.blogTitle }}</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">
@ -44,12 +41,9 @@
</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 %}
@ -65,7 +59,6 @@
{% endif %}
</div>
</div>
{% endif %}
<div class="row text-center">

View file

@ -2,50 +2,26 @@
<section id="buy-tickets" class="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>
<h3>{{ site.buyTicketsTitle }}</h3>
{% for ticketsOffer in site.ticketsOffers %}
{% assign colWidth = 12 | divided_by: forloop.length %}
{% assign check = forloop.index | modulo:2 %}
<div class="col-md-{{ colWidth }} col-sm-{{ colWidth }} pricing-col {% if ticketsOffer.featured != null %}pricing-col-featured{% endif %} animated hiding" data-animation="{% if forloop.index == 1 %}fadeInLeft{% elsif forloop.index == forloop.length %}fadeInRight{% else %}fadeInDown{% endif %}" data-delay="{% if check == 0 %}0{% else %}500{% endif %}">
{% if ticketsOffer.ribbon != null %}<div class="pricing-ribbon">{{ ticketsOffer.ribbon }}</div>{% endif %}
<div class="pricing-header">
<h3 class="title">{{ ticketsOffer.name }}</h3>
<h4 class="amount">{{ ticketsOffer.price }}</h4>
</div>
<div class="pricing-content">
<ul>
{% for listItem in ticketsOffer.ticketsOfferContentList %}
<li>{{ listItem }}</li>
{% endfor %}
</ul>
<a class="button" href="{{ ticketsOffer.buyButtonLink }}" target="_blank">{{ ticketsOffer.buyButtonText }}</a>
</div>
</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>
{% endfor %}
</div>
</div>
</section>

View file

@ -2,77 +2,42 @@
<section id="direction-details" class="direction-details">
<div class="content-wrapper">
<section class="image-section standart-height" style="background-image: url('{{ site.baseurl }}/img/direction-details.jpg');">
<h3>Get around Lviv</h3>
<h3>{{ site.directionDetailsTitle }}</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">
{% assign animationDelay = 0 %}
{% for card in site.directionDetailsCards %}
{% assign colWidth = 12 | divided_by: forloop.length %}
<div class="col-md-{{ colWidth }} col-xs-12 same-height animated hiding" data-animation="fadeInDown" data-delay="{{ animationDelay }}">
<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>
<h4>{{ card.title }}</h4>
<p>{{ card.information }}</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">
{% assign animationDelay = animationDelay | plus:500 %}
{% endfor %}
{% for wideCard in site.directionDetailsWideCards %}
<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>
<h4>{{ wideCard.title }}</h4>
{% for subCard in wideCard.subCards %}
{% assign wideCardColWidth = 12 | divided_by: forloop.length %}
<div class="col-md-{{ wideCardColWidth }} col-xs-12">
<h5>{{ subCard.title }}</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>
{% for linkElement in subCard.links %}
<li><a href="{% if linkElement.permalink != null %} {{ linkElement.permalink | prepend: site.baseurl }} {% else %} {{ linkElement.link }} {% endif %}" target="_blank">{{ linkElement.text }}</a></li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
</div-->
</div>
{% endfor %}
</div>
</div>
<div class="row">
</div>
</div>
</section>
<!-- End Direction Details -->

View file

@ -2,7 +2,7 @@
<section id="find-way" class="find-way">
<div id="canvas-map" class="canvas-map"></div>
<div class="content-wrapper text-left">
<h3 class="animated hiding" data-animation="fadeInUp" data-delay="0">Find your way here</h3>
<h3 class="animated hiding" data-animation="fadeInUp" data-delay="0">{{ site.findWayTitle }}</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">

View file

@ -2,62 +2,35 @@
<footer id="footer" class="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 class="g-plusone" data-size="medium" data-annotation="inline" data-width="300" data-href="{{ site.url }}"></div>
</div>
<div class="logo logo-footer logo-gray pull-right"></div>
</div>
<div class="row">
<div class="col-md-4 col-sm-4 col-xs-6">
<h5>Links</h5>
{% for block in site.footerBlocks %}
{% assign colWidth = 12 | divided_by: forloop.length %}
<div class="col-md-{{ colWidth }} col-xs-6">
<h5>{{ block.title }}</h5>
<ul>
<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>
{% for linkElement in block.links %}
<li><a href="{% if linkElement.permalink != null %} {{ linkElement.permalink | prepend: site.baseurl }} {% else %} {{ linkElement.link }} {% endif %}" target="_blank">{{ linkElement.text }}</a></li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
<div class="row">
<div class="col-md-6 col-xs-12">
<ul class="social-links">
{% for social in site.socialLinks %}
<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>
<a href="{{ social.link }}" target="_blank">
<svg class="icon icon-{{ social.icon }}" viewBox="0 0 30 32">
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-{{ social.icon }}"></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>
{% endfor %}
</ul>
</div>
</div>

View file

@ -1,12 +1,15 @@
<!-- Begin Top Section -->
<section id="top-section-hero" class="top-section-hero image-section" style="background-image: url('{{ site.baseurl }}/img/hero.jpg');">
<section id="top-section-hero" class="top-section-hero top-section image-section" 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>
<a href="{{ site.c4pUrl }}" class="btn btn-primary waves-effect waves-button waves-light waves-float" target="_blank">Become a speaker</a>
{% assign heroText = site.heroTitle | split:"<typeout>" %}
<h1>{{ heroText[0] }}<span id="typeout-text"></span>{{ heroText[1] }}</h1>
<p>{{ site.eventDate }}</p>
{% for button in site.heroButtons %}
<a href="{{ button.url }}" class="btn btn-primary waves-effect waves-button waves-light waves-float" target="_blank">{{ button.text }}</a>
{% endfor %}
</div>
</div>
<a href="#about" class="explore animated hidden fadeInDown">

View file

@ -2,7 +2,7 @@
<section id="latest-news" class="latest-news">
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1">
<h3>Latest news</h3>
<h3>{{ site.latestNewsTitle }}</h3>
<article class="row">
{% for post in site.posts limit:2 %}
{% assign postUrl = site.baseurl | append: post.url %}

View file

@ -5,16 +5,15 @@
<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>
<h3>{{ site.locationBlockTitle }}</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>
{% 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>
<time itemprop="startDate" datetime="{{ site.eventStartTime }}">{{ site.eventStartTimeHumanReadable }}</time>-
<time itemprop="endDate" datetime="{{ site.eventEndTime }}">{{ site.eventEndTimeHumanReadable }}</time>
</li>
</ul>
</div>

View file

@ -8,25 +8,23 @@
<nav class="st-menu st-effect" id="menu">
<div class="logo-navbar logo 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 {% if page.permalink == '/schedul/e' %} class="current" {% endif %} href="{{ site.baseurl }}/schedule/">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 {% if page.permalink == '/logistics/' %} class="current" {% endif %} href="{{ site.baseurl }}/logistics/">Logistics</a>
{% for navigationLink in site.navigationLinks %}
<li>
<a class="{% if page.permalink == navigationLink.permalink %}current{% endif %}" href="{% if navigationLink.permalink != null %} {{ navigationLink.permalink | prepend: site.baseurl }} {% else %} {{ navigationLink.link }} {% endif %}">{{ navigationLink.text}}</a>
</li>
{% endfor %}
</ul>
<ul id="bottom-navlinks" class="bottom-navlinks visible-xs">
<li><a href="{{ site.c4pUrl }}" target="_blank">Become a speaker</a>
{% for bottomNavigationLink in site.bottomNavigationLinks %}
<li>
<a href="{% if bottomNavigationLink.permalink != null %} {{ bottomNavigationLink.permalink | prepend: site.baseurl }} {% else %} {{ bottomNavigationLink.link }} {% endif %}" target="_blank">{{ bottomNavigationLink.text }}</a>
</li>
{% endfor %}
</ul>
<a id="right-nav-button" href="{{ site.c4pUrl }}" class="right-nav-button right-nav-button-hidden btn btn-primary waves-effect waves-button waves-light waves-float pull-right hidden-xs hidden-sm" target="_blank">
Become a speaker
{% for rightNavigationButton in site.rightNavigationButtons %}
<a href="{% if rightNavigationButton.permalink != null %} {{ rightNavigationButton.permalink | prepend: site.baseurl }} {% else %} {{ rightNavigationButton.link }} {% endif %}" class="right-nav-button right-nav-button-hidden btn btn-primary waves-effect waves-button waves-light waves-float pull-right hidden-xs hidden-sm" target="_blank">
{{ rightNavigationButton.text }}
</a>
{% endfor %}
</nav>
</header>

View file

@ -1,21 +0,0 @@
<!-- Begin Organizers Section -->
<section id="organizers" class="organizers">
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1">
<!-- <h3>Organizers</h3> -->
{% for organizer in site.data.organizers %}
<h5>{{ organizer.group }}</h5>
<ul class="list-inline">
{% for element in organizer.elements %}
<li>
<a href="{{ element.link }}" target="_blank">
<img src="{{ site.baseurl }}/img/organizers/{{ element.imageUrl }}" alt="{{ element.description }}">
</a>
</li>
{% endfor %}
</ul>
{% endfor %}
</div>
</div>
</section>
<!-- End Organizers Section -->

View file

@ -2,8 +2,9 @@
<section id="partners" class="partners">
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1">
<h3>{{ site.organizersTitle }}</h3>
{% for organizer in site.data.organizers %}
<h3>{{ organizer.group }}</h3>
<h5>{{ organizer.group }}</h5>
<ul class="list-inline">
{% for element in organizer.elements %}
<li>
@ -14,7 +15,7 @@
{% endfor %}
</ul>
{% endfor %}
<h3>Partners</h3>
<h3>{{ site.partnersTitle }}</h3>
{% for partner in site.data.partners %}
<h5>{{ partner.group }}</h5>
<ul class="list-inline">
@ -27,7 +28,7 @@
{% endfor %}
</ul>
{% endfor %}
<a href="{{ site.baseurl | append: site.c4sponsorsUrl }}" class="btn btn-primary waves-effect waves-button waves-light waves-float">Become a sponsor</a>
<a href="{{ site.c4sponsorsUrl | prepend: site.baseurl }}" class="btn btn-primary waves-effect waves-button waves-light waves-float">{{ site.partnersC4sponsorsButton }}</a>
</div>
</div>
</section>

View file

@ -5,7 +5,6 @@
<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">

View file

@ -3,7 +3,7 @@
<div class="overlay solid-overlay"></div>
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1 rockstar-speakers-list">
<h3>Rockstar speakers</h3>
<h3>{{ site.rockstarSpeakersTitle }}</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">
@ -15,10 +15,9 @@
</div>
{% endif %}
{% endfor %}
<div class="clearfix"></div>
<span class="bordered">
<a href="{{ site.baseurl }}/speakers/" class="bottom-section-link waves-effect waves-button waves-light">See all speakers</a>
<a href="{{ site.baseurl }}/speakers/" class="bottom-section-link waves-effect waves-button waves-light">{{ site.rockstarSpeakersButtonText }}</a>
</span>
</div>
</div>

View file

@ -42,7 +42,6 @@
<div class="slot-content" style="border-right-color: {{ day.tracks[slotIndex].color }}">
<h5 class="slot-title" itemprop="name">{{ session.title }}</h5>
<span class="slot-language">{{session.language | upcase}}</span>
<p class="slot-complexity">Complexity: <span>{{ session.complexity }}</span></p>
<ul class="slot-speakers">
{% for speaker in site.data.speakers %}
{% for session_speaker in session.speakers %}
@ -63,7 +62,6 @@
<div class="color-line"></div>
<div class="slot-content">
<h5 class="slot-title" itemprop="name">{{ session.title }}</h5>
</div>
</div>
{% endif %}

View file

@ -12,7 +12,8 @@
<div class="close-mask" data-dismiss="modal"></div>
</div>
<h4>{{ session.title }}</h4>
<span class="theme-language"><span class="caption">Language: </span>{{session.language}}</span>
<span class="theme-metadata"><span class="caption">Language: </span>{{ session.language }}</span>
<span class="theme-metadata"><span class="caption">Complexity: </span>{{ session.complexity }}</span>
<p class="theme-description">{{ session.description }}</p>
<hr>
<div class="people-details">

View file

@ -24,9 +24,9 @@
<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>
<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 %}

View file

@ -17,7 +17,8 @@
{% 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>
<span class="theme-metadata"><span class="caption">Language: </span>{{ session.language }}</span>
<span class="theme-metadata"><span class="caption">Complexity: </span>{{ session.complexity }}</span>
<p class="theme-description">{{ session.description }}</p>
{% endif %}
{% endfor %}

View file

@ -3,40 +3,21 @@
<div class="overlay solid-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>
{% assign animationDelay = 0 %}
{% for statistic in site.statisticBlock %}
{% assign colWidth = 12 | divided_by: forloop.length %}
<div class="col-md-{{ colWidth }} col-xs-6">
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="{{ animationDelay }}">
<div class="stat"><span class="timer" data-from="0" data-to="{{ statistic.count}}">{{ statistic.count}}</span>{{ statistic.specialCharacter}}</div>
<div class="stat-info">{{ statistic.info}}</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>
<p class="small">{{ statistic.detail}}</p>
</div>
</div>
{% assign animationDelay = animationDelay | plus:500 %}
{% assign check = forloop.index | modulo:2 %}
{% if check == 0 %} <div class="clearfix visible-xs"></div> {% endif %}
{% endfor %}
</div>
</div>
</section>

View file

@ -3,7 +3,7 @@
<div class="overlay solid-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>
<h3>{{ site.subscribeTitle }}</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">
@ -25,7 +25,7 @@
</i>
</div>
</form>
<span class="subscribe-info">Registration will be open around end of August. Number of tickets are limited. Stay tuned!</span>
<span class="subscribe-info">{{ site.subscribeInfo }}</span>
</div>
</div>
</div>

View file

@ -2,7 +2,7 @@
<section id="team" class="team">
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1">
<h3>About us</h3>
<h3>{{ site.teamBlockTitle }}</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 text-center">

View file

@ -6,7 +6,7 @@
<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{{ site.tweetsFeedTitle }} <a href="https://twitter.com/search?q=%23{{ site.twitterHashTag }}" target="_blank">#{{ site.twitterHashTag }}</a>
</h3>
<div id="tweets" class="tweets"></div>
</div>

View file

@ -2,7 +2,7 @@
<section id="venue">
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1">
<h3>Venue</h3>
<h3>{{ site.venueBlockTitle }}</h3>
<div class="row venue-row">
<div class="col-md-8 col-sm-8 venue-col">
<div class="venue-elem-wrapper">
@ -15,10 +15,10 @@
</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>
<h5>{{ site.venueTitle }}</h5>
{% for feature in site.venueFeatures %}
<p>{{ feature }}</p>
{% endfor %}
</div>
</div>
<div class="venue-elem-wrapper col-md-12 col-sm-12 col-xs-6">