Skip to content
Snippets Groups Projects
Select Git revision
  • 373fdb12b08dac2823f102c8b1f37ce97536d19a
  • master default protected
  • feat/new-image-formats
  • clickable-select-chevron
  • 2.20.0
  • 2.19.0
  • 2.18.0
  • 2.17.0
  • 2.16.1
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.1
  • 2.11.0
  • 2.10.0
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.0
  • 2.5.2
  • 2.5.1
24 results

container.pcss

Blame
  • election_point_card_snippet.html 564 B
    {% load wagtailimages_tags %}
    
    <div class="card card--hoveractive">
      <a href="{{ election_point_page.url }}">
        {% image election_point_page.list_image width-192 as list_image %}
        <img src="{{ list_image.url }}" alt="{{ election_point_page.title }}" class="w-full h-48 object-fit">
      </a>
      <div class="card__body p-4">
        <h1 class="card-headline mb-2">
          <a href="{{ election_point_page.url }}">
            {{ election_point_page.title }}
          </a>
        </h1>
        <p class="card-body-text">
          {{ election_point_page.perex }}
        </p>
      </div>
    </div>