Files @ fa9bb1a9f9d2
Branch filter:

Location: symposion_app/pinaxcon/templates/cms_pages/home_page_blocks/basic_content_text_and_links.html

Christopher Neugebauer
Adds mobile-friendly schedule view and paged schedule view (#81)

* Adds responsive mobile CSS for schedule timetable

* Adds by-day schedule view

* Displays content_override in schedule

* Adds twitter/homepage links for speakers.
{% load lca2017_tags %}

{% if value.link.page %}
  {% define value.link.page.url as url %}
{% else %}
  {% define value.link.url as url %}
{% endif %}

<div class="panel--2-3">
  <h2>{{ value.heading }}</h2>
  <p class="lede">{{ value.body }}</p>
  <div class="btn-group">
    {% if value.panel_type == "blue_left" %}
      <a href="{{ url }}" class="btn btn__white">{{ value.link.title }}</a>
    {% elif value.panel_type == "white_right" %}
      <a href="{{ url }}" class="btn">{{ value.link.title }}</a>
    {% endif %}
    {% for link in value.external_links %}
      {{ link }}
    {% endfor %}
  </div>
</div>