You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.3 KiB
Markdown

2 years ago
---
title: pickmy.org:~$
layout: default
permalink: /
list:
---
# Welcome To The New pickmy.org
2 years ago
We've ditched Wordpress and are now running Jekyll. I tried Hugo but I couldn't get it to do what I wanted easily. I still had to make some consessions with this site, but nothing that I can't work around. Everything is now static generated everytime I push a post to the repository.
I will slowly work on getting the original content over to the new site. I will likely be archiving the old site in some fashion as well. I have everything exported to Jekyll, but I have a lot of manual editing and checking to do.
#### ***Recent Posts:***
2 years ago
<ul>
{% for post in site.posts limit:3 %}
<li>
2 years ago
<a href="{{ post.url }}">{{ post.title }}</a> in: <a href="/{{ post.categories }}">/{{ post.categories }}</a> on {{ post.date | date: "%d-%^b-%Y" }}
{% if post.excerpt == post.content %}
{{ post.content }}
{% else %}
<br>
{{ post.excerpt | strip_html }} | <a href="{{ post.url }}">Read More...</a>
{% endif %}
</li><br>
2 years ago
{% endfor %}
</ul>
#### *Less Recent Posts:*
2 years ago
<ul>
2 years ago
{% for post in site.posts offset:3 limit:3 %}
2 years ago
<li>
2 years ago
<a href="/{{ post.categories }}">/{{ post.categories }}</a>: <a href="{{ post.url }}">{{ post.title }} | {{ post.date | date: "%d-%^b-%Y" }}</a>
2 years ago
</li>
{% endfor %}
</ul>