{% liquid if shop.permanent_domain contains 'ks-' assign limit = 6 else assign limit = section.settings.limit endif %}
{% paginate blog.articles by limit %} {% if blog.articles.size == 0 %}

{{ 'general.blog.empty' | t }}

{% else %}
{% if section.settings.show_article_count %}

{{ 'general.blog.count_articles' | t: count: blog.articles_count }}

{% endif %} {% if section.settings.show_tags %} {% endif %}
{% for article in blog.articles %}
{% render 'article-card', article: article %}
{% endfor %}
{% render 'pagination', paginate: paginate %} {% endif %} {% endpaginate %}

{{ 'general.blog.tags_title' | t }}

{% schema %} { "name": "Blog", "settings": [ { "type": "header", "content": "Styling" }, { "type": "select", "id": "bg_color", "label": "Background color", "default": "bg-body", "options": [ { "value": "bg-primary", "label": "Primary" }, { "value": "bg-secondary", "label": "Secondary" }, { "value": "bg-body", "label": "Body" }, { "value": "bg-white", "label": "White" } ] }, { "type": "range", "id": "bg_opacity", "label": "Background opacity", "min": 0, "max": 100, "step": 1, "default": 100, "unit": "%" }, { "type": "select", "id": "bg_gradient", "label": "Background gradient", "options": [ { "value": "bg-gradient", "label": "Yes" }, { "value": "", "label": "No" } ], "default": "" }, { "type": "select", "id": "text_color", "label": "Text color", "default": "text-body", "options": [ { "value": "text-primary", "label": "Primary" }, { "value": "text-secondary", "label": "Secondary" }, { "value": "text-body", "label": "Body" }, { "value": "text-white", "label": "White" } ] }, { "type": "range", "id": "border_top_width", "label": "Border top width", "default": 0, "min": 0, "max": 16, "step": 1, "unit": "px" }, { "type": "range", "id": "border_bottom_width", "label": "Border bottom width", "default": 0, "min": 0, "max": 16, "step": 1, "unit": "px" }, { "type": "select", "id": "border_color", "label": "Border color", "default": "border-body", "options": [ { "value": "border-primary", "label": "Primary" }, { "value": "border-secondary", "label": "Secondary" }, { "value": "border-body", "label": "Body" }, { "value": "border-white", "label": "White" } ] }, { "type": "range", "id": "border_opacity", "label": "Border opacity", "min": 0, "max": 100, "step": 1, "default": 100, "unit": "%" }, { "type": "text", "id": "container_max_width", "label": "Container max-width (px)", "info": "Leave empty to use the global container width" }, { "type": "header", "content": "General" }, { "type": "range", "id": "limit", "label": "Limit articles", "min": 2, "max": 50, "default": 48, "step": 1 }, { "type": "checkbox", "id": "show_article_count", "label": "Show count", "default": true }, { "type": "checkbox", "id": "show_tags", "label": "Show tags", "default": true }, { "type": "select", "id": "tags_btn_color", "label": "Tags button color", "default": "btn-outline-primary", "options": [ { "group": "Solid", "value": "btn-primary", "label": "Primary" }, { "group": "Solid", "value": "btn-secondary", "label": "Secondary" }, { "group": "Solid", "value": "btn-white", "label": "White" }, { "group": "Light", "value": "btn-light-primary", "label": "Primary" }, { "group": "Light", "value": "btn-light-secondary", "label": "Secondary" }, { "group": "Light", "value": "btn-light-white", "label": "White" }, { "group": "Outline", "value": "btn-outline-primary", "label": "Primary" }, { "group": "Outline", "value": "btn-outline-secondary", "label": "Secondary" }, { "group": "Outline", "value": "btn-outline-white", "label": "White" } ] }, { "type": "header", "content": "Article card" }, { "type": "select", "id": "article_card_text_align", "label": "Text align", "default": "text-center", "options": [ { "value": "text-start", "label": "Left" }, { "value": "text-center", "label": "Center" } ] }, { "type": "select", "id": "article_card_img_orientation", "label": "Image orientation", "default": "ratio-4x3", "options": [ { "group": "Adapt", "value": "adapt", "label": "Adapt" }, { "group": "Square", "value": "ratio-1x1", "label": "1x1" }, { "group": "Horizontal", "value": "ratio-4x3", "label": "4x3" }, { "group": "Horizontal", "value": "ratio-16x9", "label": "16x9" }, { "group": "Horizontal", "value": "ratio-21x9", "label": "21x9" } ] }, { "type": "select", "id": "article_card_img_border", "label": "Image border", "default": "img-thumbnail", "options": [ { "value": "", "label": "None" }, { "value": "rounded", "label": "Rounded" }, { "value": "img-thumbnail", "label": "Thumbnail" } ] }, { "type": "select", "id": "article_card_title_size", "label": "Title font-size", "default": "fs-xl", "options": [ { "value": "fs-sm", "label": "sm" }, { "value": "fs-md", "label": "md" }, { "value": "fs-lg", "label": "lg" }, { "value": "fs-xl", "label": "xl" }, { "value": "fs-xxl", "label": "xxl" } ] }, { "type": "checkbox", "id": "article_card_meta", "label": "Show author/date", "default": true }, { "type": "checkbox", "id": "article_card_tags", "label": "Show tags", "default": true }, { "type": "checkbox", "id": "article_card_excerpt", "label": "Show excerpt", "default": true }, { "type": "header", "content": "Breakpoints", "info": "Adjust items per row based on the screen resolution" }, { "type": "range", "id": "breakpoint_mobile", "label": "Mobile (<600px)", "min": 1, "max": 3, "step": 1, "default": 2 }, { "type": "range", "id": "breakpoint_tablet", "label": "Tablet (≥600px)", "min": 1, "max": 4, "step": 1, "default": 3 }, { "type": "range", "id": "breakpoint_desktop", "label": "Desktop (≥1200px)", "min": 1, "max": 6, "step": 1, "default": 4 }, { "type": "header", "content": "Spacing" }, { "type": "range", "id": "pt", "label": "Top", "min": 0, "max": 20, "step": 1, "default": 10 }, { "type": "range", "id": "pb", "label": "Bottom", "min": 0, "max": 20, "step": 1, "default": 10 } ], "templates": ["blog"], "presets": [ { "name": "Blog" } ] } {% endschema %}