@include padding-left(1);
@include margin-top(1.5);
- border-left: 1px solid $color-black;
+ border-left: 1px solid $color-main;
& + .wys-highlighted-paragraph {
@include margin-bottom(4);
@include margin-top(0);
+ i {
+ display: inline-block;
+ @include margin-right(.5);
+ @include transition(all 0.5s ease-in-out);
+ }
+
+ a {
+ color: inherit;
+ @include transition(all 0.5s ease-in-out);
+ &:hover {
+ color: $color-main;
+ i {
+ @include transform(translateX(-50%));
+ }
+ }
+ }
+
&--uppercase {
text-transform: uppercase;
}
{% endblock %}
{% block page_title %}
- {% editable event.title %}
- <h1 class="dotted">{{ event.title }}</h1>
- {% endeditable %}
- {% if event.sub_title %}
- {% editable event.sub_title %}
- <div class="chapo">
- {{ event.sub_title }}
- </div>
- {% endeditable %}
- {% endif %}
-{% endblock %}
-
-{% block page_tags %}
- {% if event.departments.all.0 %}
- <div class="tag dashed">
- {{ event.departments.all.0.department.name }}
- </div>
- {% endif %}
- {% if event.category %}
- <div class="tag tag--category">
- {{ event.category }}
- </div>
- {% endif %}
+ <h1 class="section-title section-title--uppercase section-title--main"><a href=""><i class="fsl fa fa-angle-left"></i>{% trans "Back to events" %}</a></h1>
+ {% include 'agenda/includes/event_linecard.html' %}
{% endblock %}
{% block breadcrumb_menu %}