{% extends 'theme/base.html' %} {% load static %} {% block title %}Our Blogs - AL WASAY{% endblock %} {% block content %}
Blog Hero

Our BLOGS

Expert Insights, Tips & News from the Automotive World

{% if posts %} {% with post=posts.0 %}
{% if post.featured_image %} {{ post.title }} {% else %}
{% endif %}

{{ post.title }}

Category: {% if post.category %}{{ post.category.name }}{% else %}Posts{% endif %}

{{ post.published_at|date:"F d, Y" }}

{{ post.excerpt }}

Read More
{% endwith %} {% if featured_posts %}
{% for post in featured_posts %}

Category: {% if post.category %}{{ post.category.name }}{% else %}Events{% endif %}

{{ post.title|truncatewords:5 }}

Read More
{% endfor %}
{% endif %}
{% for post in posts %}
{% if post.featured_image %} {{ post.title }} {% else %}
{% endif %}

{% if post.category %}{{ post.category.name }}{% else %}Posts{% endif %}

{{ post.published_at|date:"F d, Y" }}

{{ post.title|truncatewords:5 }}

{{ post.excerpt|truncatewords:12 }}

Read More
{% endfor %}
{% if posts.has_other_pages %}
{% if posts.has_previous %} Previous {% endif %} Page {{ posts.number }} of {{ posts.paginator.num_pages }} {% if posts.has_next %} Next {% endif %}
{% endif %}
{% else %}

No Blog Posts Yet

We're working on creating amazing content for you. Check back soon for updates on auto parts, industry news, and more!

Back to Home
{% endif %} {% endblock %}