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.1 KiB

title layout permalink list
pickmy.org:~$ default /index.php
         _     __                             
   ___  (_)___/ /__ __ _  __ __ ___  _______ _
  / _ \/ / __/  '_//  ' \/ // // _ \/ __/ _ `/
 / .__/_/\__/_/\_\/_/_/_/\_, (_)___/_/  \_, / 
/_/                     /___/          /___/  

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 %}