{% for item in update_list %} {% assign post_url = item | split: "::" | last | prepend: "/posts/" | append: "/" %} {% assign post = site.posts | where: "url", post_url | first %} {% if post %} {% assign url = post.url | prepend: site.baseurl %}
  • {{ post.title }}
  • {% assign sum = sum | plus: 1 %} {% if sum >= MAX_SIZE %} {% break %} {% endif %} {% endif %} {% endfor %}