layout | title | permalink |
---|---|---|
page |
All post |
/post/ |
{% assign number= 0 %}
{% for post in site.tags['english'] %}
{% if forloop.last %} {% assign number= forloop.index %} {% endif %}
{% endfor %}
{% for post in site.en %}
{% endfor %}
No | Title | Url | Date |
---|---|---|---|
{{ forloop.index }} | {{post.title}} | Click me | {{post.date| date: "%B %d, %Y"}} |
{{ forloop.index| plus: number }} | {{post.title}} | Click me | {{post.date| date: "%B %d, %Y"}} |
{% assign number= 0 %}
{% for post in site.tags['indonesian'] %}
{% if forloop.last %} {% assign number= forloop.index %} {% endif %}
{% endfor %}
{% for post in site.id %}
{% endfor %}
Nomor | Judul | Url | Tanggal |
---|---|---|---|
{{ forloop.index }} | {{post.title}} | Selengkapnya | {{post.date| date: "%B %d, %Y" }} |
{{ forloop.index| plus: number }} | {{post.title}} | Selengkapnya | {{post.date| date: "%b %d, %Y"}} |