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.

2.9 KiB

title layout permalink home list
pickmy.org:~$ default /index.php true
           _      __                       __    __      __  _                     
    ____  (_)____/ /______ ___  __  __   _/_/___/ /___  / /_| |   ____  _________ _
   / __ \/ / ___/ //_/ __ `__ \/ / / /  / // __  / __ \/ __// /  / __ \/ ___/ __ `/
  / /_/ / / /__/ ,< / / / / / / /_/ /  / // /_/ / /_/ / /_ / /  / /_/ / /  / /_/ / 
 / .___/_/\___/_/|_/_/ /_/ /_/\__, /  / / \__,_/\____/\__//_/   \____/_/   \__, /  
/_/                          /____/   |_|               /_/               /____/   

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".

Recent Posts:

    {% for post in site.posts limit:3 %}
  • {{ post.title }} in: /{{ post.categories }} on {{ post.date | date: "%d-%^b-%Y" }} {% if post.excerpt == post.content %} {{ post.content }} {% else %}
    {{ post.excerpt }} | Read More... {% endif %}

  • {% endfor %}

Less Recent Posts:

    {% for post in site.posts offset:3 limit:3 %}
  • /{{ post.categories }}: {{ post.title }} | {{ post.date | date: "%d-%^b-%Y" }}
  • {% endfor %}