1

Add dates to posts

This commit is contained in:
Evan Pratten 2020-08-28 10:30:31 -04:00
parent 49a99df737
commit 949439903b
No known key found for this signature in database
GPG Key ID: 93AC7B3D071356D3
2 changed files with 4 additions and 19 deletions

View File

@ -2,7 +2,7 @@
layout: page
title: "Compiling AVR-C code with a modern build system"
description: "Bringing Bazel to 8-bit microcontrollers"
date: 2020-08-24 9:30:00
date: 2020-08-28 9:30:00
categories: avr embedded bazel
redirect_from:
- /post/68dk02l4/

View File

@ -15,25 +15,9 @@ Here is a list of things I find interesting, and writeups of projects I have wor
{% assign i = 0 %}
{% for post in site.posts %}
{% assign the_date = post.date | split: " " %}
{% if i == 0 %}
<!-- <div class="post-preview">
<div class="card">
<div class="card-header">
Featured Post
</div>
<div class="card-body">
<h5 class="card-title">{{post.title}}
{% if post.is_short %}
<span class="badge badge-secondary">Mini Post</span>
{% endif %}
</h5>
<p class="card-text">{{post.description}}</p>
<a href="{{post.url}}" class="btn btn-primary">View</a>
</div>
</div>
</div> -->
<a href="{{post.url}}" class="list-group-item list-group-item-action">
<div class="d-flex w-100 justify-content-between">
<div class="card-body">
@ -44,6 +28,7 @@ Here is a list of things I find interesting, and writeups of projects I have wor
</h5>
<p class="card-text">{{post.description}}</p>
</div>
<small style="color:gray;">{{the_date.first}}</small>
</div>
</a>
@ -54,7 +39,7 @@ Here is a list of things I find interesting, and writeups of projects I have wor
<a href="{{post.url}}" class="list-group-item list-group-item-action">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">{{post.title}}</h5>
<!-- <small>{{post.date}}</small> -->
<small style="color:gray;">{{the_date.first}}</small>
</div>
<p class="card-text">{{post.description}}</p>
</a>