{% paginate blog.articles by 5 %} {% include 'breadcrumb' %}
{% if current_tags %}

{{ blog.title | link_to: blog.url }} — {{ current_tags.first }}

{% else %}

{{ blog.title }}

{% endif %} {% for article in blog.articles %}

{{ article.title }}

{% capture date %}{% endcapture %} {% capture author %}{{ article.author }}{% endcapture %} {{ 'blogs.article.author_on_date_html' | t: author: author, date: date }}

{% if article.image %} {% assign image_alt = article.title | escape %}

{{ article | img_url: '1024x1024' | img_tag: image_alt, 'article__image' | link_to: article.url }}

{% endif %} {% if article.excerpt.size > 0 %} {{ article.excerpt }} {% else %}

{{ article.content | strip_html | truncatewords: 100 }}

{% endif %}

{{ 'blogs.article.read_more' | t }} →

{% endfor %} {% if paginate.pages > 1 %}
{% include 'pagination-custom' %}
{% endif %}
{% endpaginate %}

{{ 'customer.account.title' | t }}

{{ 'layout.customer.log_out' | t | customer_logout_link }}

{{ 'customer.orders.title' | t }}

{% paginate customer.orders by 20 %} {% if customer.orders.size != 0 %} {% for order in customer.orders %} {% endfor %}
{{ 'customer.orders.order_number' | t }} {{ 'customer.orders.date' | t }} {{ 'customer.orders.payment_status' | t }} {{ 'customer.orders.fulfillment_status' | t }} {{ 'customer.orders.total' | t }}
{{ order.name | link_to: order.customer_url }} {{ order.created_at | date: format: 'month_day_year' }} {{ order.financial_status_label }} {{ order.fulfillment_status_label }} {{ order.total_price | money }}
{% else %}

{{ 'customer.orders.none' | t }}

{% endif %} {% if paginate.pages > 1 %}
{% include 'pagination-custom' %}
{% endif %} {% endpaginate %}