Skip to content

Latest commit

 

History

History
68 lines (59 loc) · 2.5 KB

blog.md

File metadata and controls

68 lines (59 loc) · 2.5 KB
layout permalink pagination title
page
/blog/
enabled
true
Blog

{% if paginator.page > 1 %}

Page {{ paginator.page }}

{% endif %}

This is my blog, I call it, The Gospel According to jden, I write about my projects, obersvations about technology and the arts and cultural sector, with a specific focus on the Australian realm.

Subscribe to the newsletter to recieve an email once a week with new blog posts.


Filter the archive by: year, category, or by tag.


{% for post in paginator.posts %}

{% if post.external_url %} {{ post.title }}  {% else %} {{ post.title }} {% endif %}

{{ post.date | date: "%A, %-d %B %Y" }} {% if post.content contains '' %} {{ post.content | split:'' | first }} Continue reading. {% else %} {% assign truncatedContent = '' %} {% assign paragraphs = post.content | split:'

' %} {% if paragraphs.size > 3 %} {% for paragraph in paragraphs limit:3 %} {{ truncatedContent | append: paragraph }} {{ truncatedContent | append: '

' }} {% endfor %} Continue reading → {% endif %} {% endif %}
{% endfor %}
{% if paginator.total_pages > 1 %} {% if paginator.next_page %} Older {% else %} Older {% endif %} {% if paginator.previous_page %} Newer {% else %} Newer {% endif %} {% endif %}