63 lines
1.8 KiB
Markdown
63 lines
1.8 KiB
Markdown
---
|
|
title: Blog Posts
|
|
layout: page
|
|
header_red: true
|
|
---
|
|
|
|
Here is a list of things I find interesting, and writeups of projects I have worked on.
|
|
|
|
<div class="list-group" id="posts">
|
|
<!-- <a href="#posts"
|
|
class="feature list-group-item list-group-item-action list-group-item-dark ">Featured
|
|
Post</a> -->
|
|
|
|
{% assign i = 0 %}
|
|
{% for post in site.posts %}
|
|
|
|
{% 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">
|
|
<h5 class="mb-1">{{post.title}}
|
|
{% if post.is_short %}
|
|
<span class="badge badge-secondary">Mini Post</span>
|
|
{% endif %}
|
|
</h5>
|
|
<p class="card-text">{{post.description}}</p>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
<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> -->
|
|
</div>
|
|
<p class="card-text">{{post.description}}</p>
|
|
</a>
|
|
|
|
{% endif %}
|
|
{% assign i = i | plus:1 %}
|
|
{% endfor %}
|
|
</div> |