Merge pull request #21 from andrwcnln/dev
--ISO DATES-- [24/01/29] Creating weeklinks category, homepage now displays categories
This commit is contained in:
commit
3c14e42ea6
10
_config.yml
10
_config.yml
@ -28,8 +28,18 @@ defaults:
|
||||
permalink: til/:title/
|
||||
category: til
|
||||
layout: post
|
||||
# weeklinks
|
||||
- scope:
|
||||
path: "_posts/weeklinks"
|
||||
type: posts
|
||||
values:
|
||||
permalink: blog/:year/:month/:day/:title/
|
||||
category: weeklinks
|
||||
layout: post
|
||||
|
||||
|
||||
feed:
|
||||
categories:
|
||||
- blog
|
||||
- til
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Weeklinks 001 - Philosophy, grief and macaques
|
||||
category: blog
|
||||
category: weeklinks
|
||||
layout: post
|
||||
---
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Weeklinks 002 - Trains, iPods and plagiarism
|
||||
category: blog
|
||||
category: weeklinks
|
||||
layout: post
|
||||
---
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Weeklinks 003 - Bryan, Cory and Mickey
|
||||
category: blog
|
||||
category: weeklinks
|
||||
layout: post
|
||||
---
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Weeklinks 004 - Obfuscation, dial-up and tiny chess
|
||||
category: blog
|
||||
category: weeklinks
|
||||
layout: post
|
||||
---
|
||||
|
27
index.html
27
index.html
@ -14,9 +14,10 @@ email: <a href="mailto:andrew@andrewconl.in">andrew@andrewconl.in</a><br>
|
||||
masto: <a rel="me" href="https://mastodon.scot/@andrwcnln">andrwcnln@mastodon.scot</a><br>
|
||||
github: <a href="https://github.com/andrwcnln">@andrwcnln</a><br>
|
||||
--<br>
|
||||
<a href="/til">til</a> · <a href="/feed/blog.xml">rss</a><br>
|
||||
<a href="/feed/blog.xml">rss</a><br>
|
||||
<br>
|
||||
<hr>
|
||||
<h2>Posts</h2>
|
||||
<ul style="list-style-type:none;margin:0;padding:0;">
|
||||
{% for post in site.posts %}
|
||||
{% assign category = post.category %}
|
||||
@ -27,3 +28,27 @@ github: <a href="https://github.com/andrwcnln">@andrwcnln</a><br>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<hr>
|
||||
<h2>Weeklinks</h2>
|
||||
<ul style="list-style-type:none;margin:0;padding:0;">
|
||||
{% for post in site.posts %}
|
||||
{% assign category = post.category %}
|
||||
{% if category == 'weeklinks' %}
|
||||
<li>
|
||||
<p><a href="{{ post.url }}">{{ post.title }}</a> -- {{ post.date | date_to_string }}</p>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<hr>
|
||||
<h2>TIL</h2>
|
||||
<ul style="list-style-type:none;margin:0;padding:0;">
|
||||
{% for post in site.posts %}
|
||||
{% assign category = post.category %}
|
||||
{% if category == 'til' %}
|
||||
<li>
|
||||
<p><a href="{{ post.url }}">{{ post.title }}</a> -- {{ post.date | date_to_string }}</p>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
22
til.html
22
til.html
@ -1,22 +0,0 @@
|
||||
---
|
||||
layout: default
|
||||
title: TILs
|
||||
permalink: /til/
|
||||
backlink: true
|
||||
---
|
||||
|
||||
My collection of TILs (Today-I-Learned). I use this mainly to collect solutions to weird errors I have faced, and detail the little projects that I work on. This has its own atom feed (above) as they are typically very different from my other posts. All TILs are blog posts but not all blog posts are TILs.<br>
|
||||
--<br>
|
||||
<a href="/feed/til.xml">rss</a><br>
|
||||
<br>
|
||||
<hr>
|
||||
<ul style="list-style-type:none;margin:0;padding:0;">
|
||||
{% for post in site.posts %}
|
||||
{% assign category = post.category %}
|
||||
{% if category == 'til' %}
|
||||
<li>
|
||||
<p><a href="{{ post.url }}">{{ post.title }}</a> -- {{ post.date | date_to_string }}</p>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
Loading…
x
Reference in New Issue
Block a user