mirror of
https://github.com/stashapp/website.git
synced 2026-04-12 17:31:20 -05:00
11 lines
363 B
HTML
Executable File
11 lines
363 B
HTML
Executable File
{% for post in include.posts %}
|
|
<li class="blog-post">
|
|
<h3><a href="{% include relative-src.html src=post.url %}">{{ post.title }}</a></h3>
|
|
{% include post-title.html post=post %}
|
|
<div class="post-content">
|
|
{{ post.excerpt }}
|
|
<div class="button"><a href="{% include relative-src.html src=post.url %}">Read More</a></div>
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|