Added sitemap, fixed animation bug

This commit is contained in:
Oleh Zasadnyy 2014-08-25 13:52:17 +03:00
parent f056f8dcb3
commit 59106ff780
9 changed files with 43 additions and 21 deletions

View file

@ -116,7 +116,7 @@ subscribeInfo: "Registration will be open around end of August. Number of ticket
# Tickets Block # Tickets Block
ticketsTitle: "Pricetable" ticketsTitle: "Pricetable"
ticketsInfo: "Tickets grant access to all conference sections, coffee brakes, lunches and parties. Accommodation is NOT included in the ticket price." ticketsInfo: "Tickets grant access to all conference sections, coffee brakes, lunch and party. Accommodation is NOT included in the ticket price."
ticketsOffers: ticketsOffers:
- -
name: "Early Bird" name: "Early Bird"

View file

@ -1,6 +1,7 @@
<!-- Begin Hero Section --> <!-- Begin Hero Section -->
<section id="top-section-hero" class="top-section-hero top-section 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 %} {% include navigation.html %}
<div class="content-wrapper">
<div class="jumbotron"> <div class="jumbotron">
<div class="animated hiding" data-animation="fadeInDown" data-delay="500"> <div class="animated hiding" data-animation="fadeInDown" data-delay="500">
{% assign heroText = site.heroTitle | split:"<typeout>" %} {% assign heroText = site.heroTitle | split:"<typeout>" %}
@ -16,5 +17,6 @@
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-arrow-down"></use> <use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-arrow-down"></use>
</svg> </svg>
</a> </a>
</div>
</section> </section>
<!-- End Hero Section --> <!-- End Hero Section -->

View file

@ -13,13 +13,13 @@
{% if ticketsOffer.additionalInfo != null %} {% if ticketsOffer.additionalInfo != null %}
<span class="ticket-additional-info">{{ ticketsOffer.additionalInfo }}</span> <span class="ticket-additional-info">{{ ticketsOffer.additionalInfo }}</span>
{% endif %} {% endif %}
{% if ticketsOffer.disabled != true %}
{% assign ticketValidTo = ticketsOffer.validThrough | split: "T" %}
<span class="ticket-additional-info">Before {{ ticketValidTo[0] | date: "%-d %B %Y"}} {{ ticketValidTo[1] }} or {{ ticketsOffer.ticketsNumber }} tickets</span>
{% endif %}
</div> </div>
<div class="col-md-3 col-xs-12"> <div class="col-md-3 col-xs-12">
<p class="price">{{ ticketsOffer.price }} {{ ticketsOffer.priceCurrency }}</p> <p class="price">{{ ticketsOffer.price }} {{ ticketsOffer.priceCurrency }}</p>
{% if ticketsOffer.disabled != true %}
{% assign ticketValidTo = ticketsOffer.validThrough | split: "T" %}
<span class="ticket-sales">Before {{ ticketValidTo[0] | date: "%-d %B %Y"}} {{ ticketValidTo[1] }} or {{ ticketsOffer.ticketsNumber }} tickets</span>
{% endif %}
</div> </div>
<div class="col-md-3 col-xs-12"> <div class="col-md-3 col-xs-12">
{% if ticketsOffer.disabled != true %} {% if ticketsOffer.disabled != true %}

View file

@ -82,10 +82,6 @@ h6 {
time { time {
display: block; display: block;
} }
.content-wrapper {
position: relative;
z-index: 1;
}
.st-content, .st-container, .st-pusher { .st-content, .st-container, .st-pusher {
height: 100%; height: 100%;
} }

View file

@ -1,3 +1,8 @@
.content-wrapper {
position: relative;
z-index: 1;
height: 100%;
}
.bordered { .bordered {
display: inline-block; display: inline-block;
color: rgba(255, 255, 255, .6); color: rgba(255, 255, 255, .6);

View file

@ -28,12 +28,14 @@
} }
} }
.explore { .explore {
margin-left: -12px; margin-left: -16px;
position: absolute; position: absolute;
bottom: 25px; bottom: -25px;
left: 50%; left: 50%;
animation: callToAction 3.5s linear 0s infinite; animation: callToAction 3.5s linear 0s infinite;
@media (max-width: 767px) { @media (max-width: 767px) {
margin-left: -12.5px;
bottom: 30px;
animation: none; animation: none;
} }
} }

View file

@ -42,15 +42,7 @@ $border-color: rgba(51, 51, 51, .6);
text-align: center; text-align: center;
} }
} }
.ticket-sales {
@extend .ticket-additional-text;
padding: 0 10px;
@media (max-width: 767px) {
padding: 0;
}
}
.ticket-fallback { .ticket-fallback {
margin-top: 20px;
padding-top: 2px; padding-top: 2px;
line-height: 1.2;; line-height: 1.2;;
} }

4
css/main.min.css vendored

File diff suppressed because one or more lines are too long

25
sitemap.xml Normal file
View file

@ -0,0 +1,25 @@
---
title : "Sitemap"
sitemap_exclude: y
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
{% for page in site.pages %}
{% if page.sitemap_exclude != 'y' %}
<url>
<loc>{{ page.url | prepend: site.baseurl | prepend: site.url }}</loc>
</url>
{% endif %}
{% endfor %}
{% for post in site.posts %}
<url>
<loc>{{ post.url | prepend: site.baseurl | prepend: site.url }}</loc>
</url>
{% endfor %}
</urlset>