doh
parent
c91fbb8c09
commit
d1dbb7c4f2
@ -1,36 +0,0 @@
|
|||||||
---
|
|
||||||
title: pickmy.org:~$
|
|
||||||
layout: default
|
|
||||||
permalink: /
|
|
||||||
list:
|
|
||||||
---
|
|
||||||
# Welcome to the new pickmy.org
|
|
||||||
|
|
||||||
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:***
|
|
||||||
<ul>
|
|
||||||
{% for post in site.posts limit:3 %}
|
|
||||||
<li>
|
|
||||||
<a href="{{ post.url }}">{{ post.title }} - /{{ post.categories }}</a>
|
|
||||||
{{ post.excerpt }}
|
|
||||||
{% if post.excerpt == post.content %}
|
|
||||||
<a href="{{ post.url }}">Posted: {{ post.date | date: "%d-%^b-%Y" }}</a>
|
|
||||||
{% else %}
|
|
||||||
<a href="{{ post.url }}">Posted: {{ post.date | date: "%d-%^b-%Y" }} | Read More...</a>
|
|
||||||
{% endif %}
|
|
||||||
</li><br>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
# *Less Recent Posts:*
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
{% for post in site.posts offset:3 limit:3 %}
|
|
||||||
<li>
|
|
||||||
/{{ post.categories }}: <a href="{{ post.url }}">{{ post.title }} | {{ post.date | date: "%d-%^b-%Y" }}</a>
|
|
||||||
</li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
Loading…
Reference in New Issue