| layout | default |
|---|---|
| title | Blog |
| description | Latest updates, releases, and behind-the-scenes notes. |
| permalink | /blog/ |
Updates from the team — releases, dev logs, and tips.
{% assign all_tags = site.tags %}
{% for tag in all_tags %}
#{{ tag[0] }}
{% endfor %}
{% assign all_categories = site.categories %}
{% for category in all_categories %}
{{ category[0] }}
{% endfor %}
{% assign posts = site.posts | where_exp: 'p', 'p.published != false' %}
{% for post in posts %}
{{ post.date | date: "%B %d, %Y" }} • {{ post.author | default: site.site.name }}
{% if post.excerpt %}{{ post.excerpt }}
{% endif %} {% if post.tags %}
{% for tag in post.tags %}
#{{ tag }}
{% endfor %}
{% endif %}
Read More
{% endfor %}
{% if posts.size == 0 %}
<p class="muted">No posts yet. Stay tuned!</p>
{% endif %}