<ul id="update"></ul>
{% set Posts = wp_posts() %}
<h2 class="ttl mincho">新着情報</h2>
{% if Posts is not null %}
{% set cnt="1" %}
<div>
{% for Post in Posts %}
{% if cnt < 5 %}
<div>
<small>{{ Post.date|date("Y/m/d") }}</small><div class="h3"><a href="{{ Post.link }}" role="button" target="_blank" rel="noopener">{{ Post.title.rendered }}</a><hr></div>
</div>
{% set cnt = cnt +1 %}
{% endif %}
{% endfor %}
</div>
{% endif %}