36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
---
|
|
layout: default
|
|
pagination:
|
|
data: collections.posts
|
|
size: 8
|
|
reverse: true
|
|
alias: posts
|
|
meta:
|
|
site:
|
|
name: 'Cory Dransfeldt'
|
|
description: "I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 rescue dogs, technology, automation, music, writing, reading and tv and movies."
|
|
url: https://coryd.dev
|
|
logo:
|
|
src: https://coryd.dev/assets/img/logo.webp
|
|
width: 2000
|
|
height: 2000
|
|
language: en-US
|
|
title: 'Cory Dransfeldt'
|
|
description: 'Husband, dad, developer, music nerd.'
|
|
url: https://coryd.dev
|
|
image:
|
|
src: https://coryd.dev/assets/img/avatar.webp
|
|
---
|
|
{% if pagination.pageNumber == 0 %}{% include "partials/now/topper.liquid" status:status %}{% endif %} {% for post in pagination.items %} {% if post.data.published %}
|
|
<article class="h-entry">
|
|
<a class="no-underline" href="{{ post.url }}">
|
|
<h2 class="flex--centered">{{ post.data.title }}</h2>
|
|
</a>
|
|
<span class="p-author h-card hidden">{{ meta.siteName }}</span>
|
|
<time class="dt-published" datetime="{{ post.date }}">
|
|
{{ post.date | date: "%m.%Y" }}
|
|
</time>
|
|
<div class="p-summary hidden">{{ post.data.post_excerpt }}</div>
|
|
{{ post.data.post_excerpt | markdown }}
|
|
</article>
|
|
{% endif %} {% endfor %} {% include "partials/paginator.liquid" %}
|