12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {% extends "base.html" %}
- {% load wagtailcore_tags navigation_tags wagtailimages_tags %}
- {% block content %}
- {% include "base/include/header-index.html" %}
- <div class="container">
- {% if tag %}
- <div class="row">
- <div class="col-md-12">
- <p>Viewing all blog posts by <span class="outline">{{ tag }}</span></p>
- </div>
- </div>
- {% endif %}
- {% if page.get_child_tags %}
- <ul class="blog-tags tags list-inline">
- {% for tag in page.get_child_tags %}
- <li><a href="{{ tag.url }}">{{ tag }}</a></li>
- {% endfor %}
- </ul>
- {% endif %}
- <div class="row row-eq-height blog-list">
- {% if posts %}
- {% for blog in posts %}
- <li class="col-xs-12 col-sm-6 col-md-3 blog-list-item">
- <a href="{% pageurl blog %}">
- <div class="image">
- {% image blog.image fill-850x450-c50 as image %}
- <img src="{{ image.url }}" width="{{ image.width }}" height="{{ image.height }}" alt="{{ image.alt }}" class="" />
- </div>
- <div class="text">
- <h2 class="blog-list-title">{{ blog.title }}</h2>
- <p>{{ blog.introduction|truncatewords:15 }}</p>
- </div>
- <div class="small footer">
- {% if blog.date_published %}
- {{ blog.date_published }} by
- {% endif %}
- {% for author in blog.authors %}
- {{ author }}{% if not forloop.last %}, {% endif %}
- {% endfor %}
- </div>
- </a>
- </li>
- {% endfor %}
- {% else %}
- <div class="col-md-12">
- <p>Oh, snap. Looks like we were too busy baking to write any blog posts. Sorry.</p>
- </div>
- {% endif %}
- </div>
- </div>
- {% endblock content %}
|