Many files in the repo have the UNIX executable permission bit set, which indicates to the OS that these are executable binaries. None of these files are executable, so they should not have the executable permission bit set.
35 lines
829 B
HTML
35 lines
829 B
HTML
{% if paginator.posts %}
|
|
|
|
<ul class="list list--posts">
|
|
{% for page in paginator.posts %}
|
|
<li class="item item--post">
|
|
<article class="article article--post typeset">
|
|
|
|
<h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h2>
|
|
{% include post-meta.html %}
|
|
{{ page.excerpt | markdownify | truncatewords: 60 }}
|
|
|
|
</article>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% include post-pagination.html %}
|
|
|
|
{% else %}
|
|
|
|
<ul class="list list--posts">
|
|
{% for page in site.posts %}
|
|
<li class="item item--post">
|
|
<article class="article article--post typeset">
|
|
|
|
<h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h2>
|
|
{% include post-meta.html %}
|
|
{{ page.excerpt | markdownify | truncatewords: 60 }}
|
|
|
|
</article>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endif %}
|