diff --git a/source/_includes/front-page-blog.html b/source/_includes/front-page-blog.html index 65580da0..42009c4a 100644 --- a/source/_includes/front-page-blog.html +++ b/source/_includes/front-page-blog.html @@ -1,73 +1,18 @@
- {% for post in paginator.posts %} - {% if post.link %} - - {% else %} -
-
-

- - {{ post.title }} - -

- -
- - {% comment %} - {{ post.excerpt | split: '
' | first }} - - {% endcomment %} - - {{ post.content }} - -

- -
- {% endif %} - {% endfor %} - +

Most recent blog posts

+ + All blog posts →
+ diff --git a/source/assets/css/style.css b/source/assets/css/style.css index e9b161c9..35ea18cb 100644 --- a/source/assets/css/style.css +++ b/source/assets/css/style.css @@ -701,7 +701,7 @@ figure figcaption em { .bio { border: 1px solid #ac4142; padding: 1rem; - margin-bottom: 4rem; + margin-bottom: 2rem; } .bio p { @@ -730,3 +730,30 @@ figure figcaption em { sup { line-height: 1em; } + +#recent-posts { + list-style-type: none; + padding-left: 0; +} + +#recent-posts li { + width: 100%; + margin-bottom: 0.75rem; +} + +#recent-posts li a { + max-width: 70%; + display: inline-block; +} + +#recent-posts .posttime { + float: right; + text-align: right; + clear: both; + color: #999; + min-width: 20% +} + +.more-posts { + font-weight: bold; +}