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.
43 lines
3.0 KiB
Markdown
43 lines
3.0 KiB
Markdown
---
|
|
title: pickmy.org:~$
|
|
layout: default
|
|
permalink: /index.php
|
|
list:
|
|
---
|
|
|
|
<div style="font-family: monospace, fixed; font-weight: bold;">
|
|
<span style="">           _      __                       __    __      __  _                     </span><br />
|
|
<span style="">    ____  (_)____/ /______ ___  __  __   _/_/___/ /___  / /_| |   ____  _________ _</span><br />
|
|
<span style="">   / __ \/ / ___/ //_/ __ `__ \/ / / /  / // __  / __ \/ __// /  / __ \/ ___/ __ `/</span><br />
|
|
<span style="">  / /_/ / / /__/ ,< / / / / / / /_/ /  / // /_/ / /_/ / /_ / /  / /_/ / /  / /_/ / </span><br />
|
|
<span style=""> / .___/_/\___/_/|_/_/ /_/ /_/\__, /  / / \__,_/\____/\__//_/   \____/_/   \__, /  </span><br />
|
|
<span style="">/_/                          /____/   |_|               /_/               /____/   </span><br />
|
|
</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:***
|
|
<ul>
|
|
{% for post in site.posts limit:3 %}
|
|
<li>
|
|
<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 }} | <a href="{{ post.url }}">Read More...</a>
|
|
{% endif %}
|
|
</li><br>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
#### *Less Recent Posts:*
|
|
|
|
<ul>
|
|
{% for post in site.posts offset:3 limit:3 %}
|
|
<li>
|
|
<a href="/{{ post.categories }}">/{{ post.categories }}</a>: <a href="{{ post.url }}">{{ post.title }} | {{ post.date | date: "%d-%^b-%Y" }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|