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.
		
		
		
		
		
			
		
			
				
	
	
		
			47 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			Markdown
		
	
			
		
		
	
	
			47 lines
		
	
	
		
			7.5 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 />
 | |
| <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>
 |