Merge branch 'master' of git.pickmy.org:dewdude/pickmy-dot-org-jekyll-site
commit
6c4452519f
@ -0,0 +1,7 @@
|
||||
---
|
||||
layout: post
|
||||
title: "Fixed"
|
||||
---
|
||||
After realizing I'd made a couple of boneheaded moves; /blog, /pbx, and /dev all work as they should.
|
||||
|
||||
Yeah, I gotta learn to pay attention to the front matter. Trust the front matter.
|
@ -0,0 +1,18 @@
|
||||
---
|
||||
title: pickmy.org:~/blog$
|
||||
layout: default
|
||||
permalink: /blog/index.html
|
||||
list: bullet
|
||||
---
|
||||
|
||||
# pickmy.org:~/blog$
|
||||
|
||||
This is a master list of blog posts written since the new site (24-AUG) or imported from the old data. At some point this may have additional organization or fancier output. You get what you get.
|
||||
|
||||
<ul>
|
||||
{% for post in site.categories.blog %}
|
||||
<li>
|
||||
<a href="{{ post.url }}">{{ post.title }} | {{ post.date | date: "%d-%^b-%Y" }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
@ -0,0 +1,18 @@
|
||||
---
|
||||
title: pickmy.org:~/dev$
|
||||
layout: default
|
||||
permalink: /dev/index.html
|
||||
list: bullet
|
||||
---
|
||||
|
||||
# pickmy.org:~/dev$
|
||||
|
||||
All documentation related development that's not on my [Git](https://git.pickmy.org) will go here; and some of this may go more in depth than [Git](https://git.pickmy.org).
|
||||
|
||||
<ul>
|
||||
{% for post in site.categories.dev %}
|
||||
{% if post.url %}
|
||||
<li><a href="{{ post.url }}">{{ post.title }} | {{ post.date | date: "%d-%^b-%Y" }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
@ -0,0 +1,18 @@
|
||||
---
|
||||
title: pickmy.org:~/pbx$
|
||||
layout: default
|
||||
permalink: /pbx/index.html
|
||||
list: bullet
|
||||
---
|
||||
|
||||
# pickmy.org:~/pbx$
|
||||
|
||||
All documentation related Asterisk that's not on my [Git](https://git.pickmy.org) will go here; and some of this may go more in depth than [Git](https://git.pickmy.org).
|
||||
|
||||
<ul>
|
||||
{% for post in site.categories.pbx %}
|
||||
{% if post.url %}
|
||||
<li><a href="{{ post.url }}">{{ post.title }} | {{ post.date | date: "%d-%^b-%Y" }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
Loading…
Reference in New Issue