z-index: 1;
text-decoration: none;
border-bottom: 1px solid $color-main;
- color: $color-main;
+ color: white;
@include transition(all 0.15s ease-in-out);
&:hover {
&__sidebar {
@include mq($until: sm) {
- background: white;
+ //background: white;
+ text-align: center;
+ @include margin-bottom(2);
}
}
&__meta-separator {
height: 1px;
- background: black;
+ background: $color-main;
width: 45px;
@include margin(1 0);
+ @include mq($until: sm) {
+ @include margin(1 auto);
+ }
+
&--small {
@include margin(.5 0);
}
&__meta-title {
- @include font-size(m);
+ @include font-size(s);
@include line-height(1);
- @include typeface(serif);
- font-weight: weight(heavy);
+ @include typeface(sans-serif);
+ text-transform: uppercase;
+ font-weight: weight(regular);
&--small {
@include font-size(s);
list-style-type: none;
padding: 0;
margin: 0;
- @include margin-top(2);
+ @include margin-top(0);
&__item {
- display: inline-block;
- font-size: 1.25rem;
- @include margin-right(.5);
+ display: block;
+ font-size: 2rem;
+ @include margin-bottom(.5);
+ color: white;
+
+ @include mq($until: sm) {
+ display: inline-block;
+ @include margin-right(.5);
+ }
+
+ a {
+ color: white;
+ @include transition(all 0.5s ease-in-out);
+
+ &:hover {
+ color: $color-main;
+ }
+ }
}
{% if child %}
{% with child.links.all as links %}
{% if links %}
- <div class="col-xs-6">
+ <div class="col-xs-8">
{% include 'core/inc/link.html' %}
</div>
{% endif %}
{% else %}
{% with event.links.all as links %}
{% if links %}
- <div class="col-xs-6">
+ <div class="col-xs-8">
{% include 'core/inc/link.html' %}
</div>
{% endif %}
{% endwith %}
{% endif %}
{% if event.mentions %}
- <div class="col-xs-6">
+ <div class="col-xs-8">
<div class="small-text">
{{ event.mentions }}
</div>
{% block page_person_list %}
{% if event.persons.all %}
- <div class="white-bg pb2">
- <hr class="mt0" />
+ <div class="pb2">
<div class="container">
<div class="row">
- <div class="col-sm-9 col-sm-push-3 col-lg-8 col-lg-push-2" data-summary-content>
- <h2 class="dotted">
- {% if event.trainings.all %}
- {% trans "Trainers" %}<br>
- {% else %}
- {% trans "Persons" %}<br>
- {% endif %}
- </h2>
+ <div class="col-xxs-16 col-md-10 col-md-push-3" data-summary-content>
+ <div class="tac">
+ <h2 class="section-title section-title--uppercase section-title--main section-title--underline">
+ {% if event.trainings.all %}
+ {% trans "Trainers" %}<br>
+ {% else %}
+ {% trans "Persons" %}<br>
+ {% endif %}
+ </h2>
+ </div>
</div>
</div>
</div>
<div class="container">
<div class="row">
- <div class="col-sm-9 col-sm-push-3 col-lg-8 col-lg-push-2">
- {% for person in event.persons.all %}
- {% with person.person as person %}
- {% include "network/inc/person/person_card_circle.html" %}
- {% endwith %}
- {% endfor %}
+ <div class="col-md-8 col-md-push-4">
+ <div class="row">
+ {% for person in event.persons.all %}
+ {% with person.person as person %}
+ <div class="col-md-8">
+ {% include "network/inc/person/person_card_square.html" %}
+ </div>
+ {% endwith %}
+ {% endfor %}
+ </div>
</div>
</div>
</div>
{% endblock %}
{% block page_sidebar %}
- <div class="page__meta" data-sticky data-sticky-parent="row" data-sticky-offset="100" data-sticky-detach-at="971">
- {% block event_detail_postedby %}
- {% editable event.start event.end event.location %}
- {% with True as unit_booking %}
- {% include 'agenda/includes/event_metainfo.html' %}
- {% endwith %}
- {% endeditable %}
- {% endblock %}
- {% set_short_url_for event %}
- {% with event as object %}
- {% with True as is_event %}
- {% include "includes/share_buttons.html" %}
- {% endwith %}
- {% endwith %}
+ <div class="" data-sticky data-sticky-parent="row" data-sticky-offset="100" data-sticky-detach-at="971">
+ {% include "includes/share_buttons.html" %}
</div>
{% endblock %}
{% load i18n mezzanine_tags keyword_tags organization_tags pages_tags %}
{% if concrete_objects %}
- <hr class="mt0 mb0" />
- <div class="white-bg pb2">
+ <div class="pb2">
<div class="container">
<div class="row tac">
- <div class="col-xs-12">
- <h2 class="dashed dashed--center mt2">{% if object.related_title.title %}{{ object.related_title.title }}{% else %}{% trans "Also discover" %}{% endif %}</h2>
+ <div class="col-xs-16">
+ <h2 class="section-title section-title--underline section-title--uppercase section-title--main">{% if object.related_title.title %}{{ object.related_title.title }}{% else %}{% trans "Also discover" %}{% endif %}</h2>
</div>
</div>
- <div class="row tac">
- {% for concrete_object in concrete_objects %}
- <div class="col-lg-3 col-md-4 col-sm-4 col-xs-6">
- {% with app_label=concrete_object|app_label_short classname=concrete_object|classname|lower object=concrete_object %}
- {% with app_label|add:"/"|add:classname|add:"/includes/"|add:classname|add:"_card.html" as template %}
- {% include template %}
- {% endwith %}
- {% endwith %}
+ <div class="row">
+ <div class="col-md-10 col-md-push-3 col-xxs-16">
+ <div class="row">
+ {% for concrete_object in concrete_objects %}
+ <div class="col-xs-8">
+ {% with app_label=concrete_object|app_label_short classname=concrete_object|classname|lower object=concrete_object %}
+ {% with app_label|add:"/"|add:classname|add:"/includes/"|add:classname|add:"_card.html" as template %}
+ {% include template %}
+ {% endwith %}
+ {% endwith %}
+ </div>
+ {% endfor %}
</div>
- {% endfor %}
+ </div>
</div>
</div>
</div>
{% endif %}
{% endblock %}
-{% block breadcrumb_menu %}
- {{ block.super }}
- <li class="breadcrumb__item active">{{ article.title }}</li>
-{% endblock %}
-
-{% block page_tags %}
-
- {% if department_name %}
- <div class="tag dashed dashed--gray">
- {{ department_name }}
- </div>
- {% endif %}
- <div class="tag tag--category">
- {% trans 'News' %}
- </div>
-
-{% endblock %}
-
{% block page_title %}
{% editable article.title %}
- <h1 class="dotted">{{ article.title }}</h1>
+ <h1 class="section-title section-title--uppercase section-title--main">{{ article.title }}</h1>
{% endeditable %}
{% if article.sub_title %}
{% endif %}
{% with article as object %}
- {% include "includes/share_buttons.html" %}
+ <div class="mt2">
+ {% include "includes/share_buttons.html" %}
+ </div>
{% endwith %}
</div>
<div class="row">
- <div class="mb2 col-sm-16 col-md-10 col-md-push-3 page__content" data-summary-content>
+ <div class="col-md-3 page__sidebar">
+
+ <div style="position: relative;">
+ {% block page_sidebar %}
+ {% endblock %}
+ </div>
+
+ </div>
+
+ <div class="mb2 col-sm-16 col-md-10 page__content" data-summary-content>
{% block page_content %}
{{ page.content }}
{% endblock %}