This repository has been archived on 2023-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
autonomic.zone/src/_includes/blog.html

19 lines
785 B
HTML
Raw Normal View History

2017-09-22 09:46:39 +00:00
<section id="two" class="wrapper alt style2">
{% assign posts = site.categories.values | concat: site.categories.howto | sort:"date" | reverse %}
2017-09-22 09:46:39 +00:00
{% for post in posts %}
<section class="spotlight">
2019-11-14 02:23:09 +00:00
<div class="image">
{% if post.image %}
<img src="{% if site.featured-image-source %}{{ post.image | prepend: site.featured-image-source | absolute_url }}{% else %}{{ "" | absolute_url }}/assets/images/{{ post.image }}{% endif %}" alt="" loading="lazy">
{% endif %}
</div>
<div class="content">
<h2><a href="{{ post.url | relative_url }}" class="link">{{ post.title }}</a></h2>
<p class="h5">{{ post.date | date: '%B %d, %Y' }}</p>
<p>{{ post.description }}</p>
</div>
</section>
2017-09-24 17:58:01 +00:00
{% endfor %}
2017-09-22 09:46:39 +00:00
</section>