mirror of
https://github.com/EyeTrackVR/EyeTrackVR-Docs.git
synced 2025-11-04 14:49:44 +08:00
14 lines
413 B
HTML
14 lines
413 B
HTML
<div class="recent-articles">
|
|
<h2>Recently Published</h2>
|
|
{% assign maxposts = 5 %}
|
|
<ul class="post-list text-muted list-unstyled">
|
|
{% for post in site.posts limit: maxposts %}
|
|
<li>
|
|
<p>
|
|
<a class="article-link" href="">
|
|
{{ post.title | escape }}</a>
|
|
</p>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div> |