mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
18 lines
408 B
HTML
18 lines
408 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<div class="posts">
|
|
{% for post in site.posts %}
|
|
<article class="post">
|
|
|
|
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
|
|
|
|
<div class="entry">
|
|
{{ post.content | strip_html | truncatewords: 100 }}...
|
|
</div>
|
|
|
|
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
|
|
</article>
|
|
{% endfor %}
|
|
</div>
|