Skip to content

Latest commit

 

History

History
117 lines (87 loc) · 2.37 KB

File metadata and controls

117 lines (87 loc) · 2.37 KB
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
<style> .blog-thumbnail{ width: 600px; } </style>

Happy Blogging

Welcome to the Happy Coding blog!


Latest Blog Post

{% for post in site.categories.blog limit:1 %}

{% if post.meta-image %} {% endif %}

{{ post.meta-description }}

(read more)

{% endfor %}

Favorite Blog Posts

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 %}

Personal Blog Posts

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 %}

Dev Logs

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 %}

New Years

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 %}

Site Updates

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 %}

All Blog Posts

Every blog post I've ever written.

{% for post in site.categories.blog %} {% include url-thumbnail.html url=post.url showDate=true %} {% endfor %}