| layout | single-content-section |
|---|---|
| title | Blog |
| meta-title | Happy Coding Blog |
| meta-description | Blogs about Happy Coding and random stuff I'm thinking about. |
| thumbnail | /images/logo-800x400.png |
| meta-image | /images/logo-800x400.png |
Welcome to the Happy Coding blog!
{% for post in site.categories.blog limit:1 %}
{% endfor %}Some of my favorite blog posts.
{% for post in site.categories.blog %}
{% if post.tags contains "favorite" %}
{% include url-thumbnail.html url=post.url showDate=true %}
{% endif %}
{% endfor %}
Random ramblings about random topics I've found interesting.
{% for post in site.categories.blog %}
{% if post.tags contains "personal" %}
{% include url-thumbnail.html url=post.url showDate=true %}
{% endif %}
{% endfor %}
Blog posts describing various projects I've worked on.
{% for post in site.categories.blog %}
{% if post.tags contains "dev-log" %}
{% include url-thumbnail.html url=post.url showDate=true %}
{% endif %}
{% endfor %}
Every year I reflect on the state of Happy Coding.
{% for post in site.categories.blog %}
{% if post.tags contains "new-year" %}
{% include url-thumbnail.html url=post.url showDate=true %}
{% endif %}
{% endfor %}
Blog posts announcing new features.
{% for post in site.categories.blog %}
{% if post.tags contains "site-update" %}
{% include url-thumbnail.html url=post.url showDate=true %}
{% endif %}
{% endfor %}
Every blog post I've ever written.
{% for post in site.categories.blog %}
{% include url-thumbnail.html url=post.url showDate=true %}
{% endfor %}