Files
website/blog.md
FreneticScribbler 04feea639b Convert Medium Posts
Gods there's a lot, much cleanup required
2020-04-23 04:42:59 +01:00

1.6 KiB

layout, title, permalink
layout title permalink
page Frenetic Scribblings (Blog) /blog/

Medium Posts converted with this. Love those moments when someone's already written a script you were about to write! :)

{% if site.paginate %} {% assign posts = paginator.posts %} {% else %} {% assign posts = site.posts %} {% endif %}

{%- if posts.size > 0 -%} {%- if page.list_title -%}

{{ page.list_title }}

{%- endif -%}
    {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%} {%- for post in posts -%}
  • {{ post.date | date: date_format }}

    {{ post.title | escape }}

    {%- if site.show_excerpts -%} {{ post.excerpt }} {%- endif -%}
  • {%- endfor -%}

{% if site.paginate %}

{%- endif %}

{%- endif -%}