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.

44 lines
2.9 KiB
Markdown

2 years ago
---
title: pickmy.org:~$
layout: default
2 years ago
permalink: /index.php
home: true
2 years ago
list:
---
<div class="logo">
1 year ago
<span style="">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;_&#160;&#160;&#160;&#160;&#160;&#160;__&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;__&#160;&#160;&#160;&#160;__&#160;&#160;&#160;&#160;&#160;&#160;__&#160;&#160;_&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span><br />
<span style="">&#160;&#160;&#160;&#160;____&#160;&#160;(_)____/&#160;/______&#160;___&#160;&#160;__&#160;&#160;__&#160;&#160;&#160;_/_/___/&#160;/___&#160;&#160;/&#160;/_|&#160;|&#160;&#160;&#160;____&#160;&#160;_________&#160;_</span><br />
<span style="">&#160;&#160;&#160;/&#160;__&#160;\/&#160;/&#160;___/&#160;//_/&#160;__&#160;`__&#160;\/&#160;/&#160;/&#160;/&#160;&#160;/&#160;//&#160;__&#160;&#160;/&#160;__&#160;\/&#160;__//&#160;/&#160;&#160;/&#160;__&#160;\/&#160;___/&#160;__&#160;`/</span><br />
<span style="">&#160;&#160;/&#160;/_/&#160;/&#160;/&#160;/__/&#160;,&lt;&#160;/&#160;/&#160;/&#160;/&#160;/&#160;/&#160;/_/&#160;/&#160;&#160;/&#160;//&#160;/_/&#160;/&#160;/_/&#160;/&#160;/_&#160;/&#160;/&#160;&#160;/&#160;/_/&#160;/&#160;/&#160;&#160;/&#160;/_/&#160;/&#160;</span><br />
<span style="">&#160;/&#160;.___/_/\___/_/|_/_/&#160;/_/&#160;/_/\__,&#160;/&#160;&#160;/&#160;/&#160;\__,_/\____/\__//_/&#160;&#160;&#160;\____/_/&#160;&#160;&#160;\__,&#160;/&#160;&#160;</span><br />
<span style="">/_/&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;/____/&#160;&#160;&#160;|_|&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;/_/&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;/____/&#160;&#160;&#160;</span><br />
1 year ago
</div>
<br>
We've ditched Wordpress and are now running Jekyll. Everything is now written in markdown and generated everytime I push a post to the repository. We're also still PHP because pickmy.org will never give up it's random lines of text. Take that "satic-site generator".<br>
#### ***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>
2 years ago
{{ post.excerpt }} | <a href="{{ post.url }}">Read More...</a>
2 years ago
{% 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>