diff --git a/source/blog.html b/source/blog.html
index f26a43d1..3abadec3 100644
--- a/source/blog.html
+++ b/source/blog.html
@@ -9,13 +9,18 @@ use: [posts]
{% block content %}
Blog
-
+
{% for post in page.pagination.items %}
- -
- {{ include('post/header', {
- page: post,
- title_tag: 'h2'
- }) }}
+
-
+
+
+
+
{{ post.date|date('j F Y') }}
+
{% include 'post/intro-image' with { page: post } %}
@@ -27,10 +32,6 @@ use: [posts]
{{ post.blocks.content|markdown }}
{% endif %}
-
-
- Read more →
-
{% endfor %}
diff --git a/tailwind.js b/tailwind.js
index 50a89736..c72f30fe 100644
--- a/tailwind.js
+++ b/tailwind.js
@@ -291,9 +291,64 @@ module.exports = {
'100': '1',
},
- packages: {
+ svgFill: {
+ 'current': 'currentColor',
},
+ svgStroke: {
+ 'current': 'currentColor',
+ },
+
+ modules: {
+ appearance: ['responsive'],
+ backgroundAttachment: ['responsive'],
+ backgroundColors: ['responsive', 'hover'],
+ backgroundPosition: ['responsive'],
+ backgroundRepeat: ['responsive'],
+ backgroundSize: ['responsive'],
+ borderColors: ['responsive', 'hover'],
+ borderRadius: ['responsive'],
+ borderStyle: ['responsive'],
+ borderWidths: ['responsive'],
+ cursor: ['responsive'],
+ display: ['responsive'],
+ flexbox: ['responsive'],
+ float: ['responsive'],
+ fonts: ['responsive'],
+ fontWeights: ['responsive', 'hover'],
+ height: ['responsive'],
+ leading: ['responsive'],
+ lists: ['responsive'],
+ margin: ['responsive'],
+ maxHeight: ['responsive'],
+ maxWidth: ['responsive'],
+ minHeight: ['responsive'],
+ minWidth: ['responsive'],
+ negativeMargin: ['responsive'],
+ opacity: ['responsive'],
+ overflow: ['responsive'],
+ padding: ['responsive'],
+ pointerEvents: ['responsive'],
+ position: ['responsive'],
+ resize: ['responsive'],
+ shadows: ['responsive'],
+ svgFill: [],
+ svgStroke: [],
+ textAlign: ['responsive'],
+ textColors: ['responsive', 'hover', 'focus'],
+ textSizes: ['responsive'],
+ textStyle: ['responsive', 'hover', 'focus'],
+ tracking: ['responsive'],
+ userSelect: ['responsive'],
+ verticalAlign: ['responsive'],
+ visibility: ['responsive'],
+ whitespace: ['responsive'],
+ width: ['responsive'],
+ zIndex: ['responsive'],
+ },
+
+ plugins: [],
+
options: {
important: true,
separator: ':',