當前位於Shopify的我的博客頁面中,博客文章作爲列表項在UL中一個接一個地顯示。Shopify Dev - 顯示行中的博客文章
我想他們中的4代碼,我目前行顯示的是:
<ul id="blog-articles" class="desktop-4 tablet-4 mobile-2">
{% for article in blog.articles %}
<li class="single-article">
<div class="article-body desktop-12">
<h2><a href="{{ article.url }}">{{ article.title }}</a></h2>
<a href="{{ article.url }}">
<div class="article-content">
{% if article.image %}<img class="article-image" src="{{ article.image | img_url: 'grande' }}" alt="{{ article.title }}">{% endif %}
<div class="clear"></div>
</div>
</a>
</div>
</li>
{% endfor %}
</ul>
所以它顯然循環中的文章,但我不知道如何顯示它們留下來右,4每一行...
我的網站是在這裏:https://www.okuhstudios.com/blogs/news和我的新代碼排在所有<hr>
線下方的頁面底部...