From c0bcd3210ce8d7ce8371df9f277a570897186ccd Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sun, 11 Oct 2015 23:14:52 +0200 Subject: [PATCH] only show a post excerpt in the blog index --- ralf/_config.yml | 1 + ralf/_layouts/default.html | 2 +- ralf/_posts/2015-10-08-welcome.md | 2 ++ ralf/_posts/2015-10-09-breaking-all-the-way-out.md | 2 ++ ralf/blog/index.html | 4 +++- 5 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ralf/_config.yml b/ralf/_config.yml index 0d456be..d96c35d 100644 --- a/ralf/_config.yml +++ b/ralf/_config.yml @@ -2,6 +2,7 @@ baseurl: "" url: "https://www.ralfj.de" permalink: "/blog/:year/:month/:day/:title.html" +excerpt_separator: "" timezone: "Europe/Berlin" blog: diff --git a/ralf/_layouts/default.html b/ralf/_layouts/default.html index 721c6f0..3ac3dee 100644 --- a/ralf/_layouts/default.html +++ b/ralf/_layouts/default.html @@ -10,7 +10,7 @@ {% if page.vars %}{% include {{ page.vars | prepend: "vars/" }} %}{% endif %} {% if pretitle %}{{ pretitle }} • {% endif %}{{ title }} - {% if page.excerpt %}{% endif %} + {% if page.excerpt %}{% endif %} diff --git a/ralf/_posts/2015-10-08-welcome.md b/ralf/_posts/2015-10-08-welcome.md index 43b4e8b..6933024 100644 --- a/ralf/_posts/2015-10-08-welcome.md +++ b/ralf/_posts/2015-10-08-welcome.md @@ -6,4 +6,6 @@ categories: meta I'll use this blog to write random articles on things that matter to me, and that I want to share. So far, I don't know what this will end up being about - probably mostly about programming languages research and related topics, as that's what I do. + + In the mean time, you can check out my [research](https://www.mpi-sws.org/~jung/) and [project](/projects) pages. diff --git a/ralf/_posts/2015-10-09-breaking-all-the-way-out.md b/ralf/_posts/2015-10-09-breaking-all-the-way-out.md index 371561b..0c50fc9 100644 --- a/ralf/_posts/2015-10-09-breaking-all-the-way-out.md +++ b/ralf/_posts/2015-10-09-breaking-all-the-way-out.md @@ -8,6 +8,8 @@ for it somewhere, but not finding the right spot to put a link to that website? I certainly do, and, well... now that I have a blog, I finally do have a place for such links! + + So, without further ado, let me present to you [Breaking All the Way Out](/cs/cg), a video I created some time ago together with a friend. This project was our submission for the Computer Graphics course. diff --git a/ralf/blog/index.html b/ralf/blog/index.html index a59db4c..380aaaa 100644 --- a/ralf/blog/index.html +++ b/ralf/blog/index.html @@ -13,6 +13,8 @@ sort: 10 {% include post-header.html item=post %}

{{ post.title }}

- {{ post.content }} + {{ post.excerpt }} + +

Read more...

{% endif %} {% endfor %} -- 2.30.2