From 08945dc3600aaea36c2445d98d4b6bcf657ea57c Mon Sep 17 00:00:00 2001
From: Jim Martens
Date: Mon, 25 Dec 2017 21:58:27 +0100
Subject: [PATCH] Made publications dynamic
Signed-off-by: Jim Martens
---
_data/author.yml | 5 +++++
cs/index.html | 34 ++++++++++++++++++++--------------
2 files changed, 25 insertions(+), 14 deletions(-)
diff --git a/_data/author.yml b/_data/author.yml
index 505081a..0928242 100644
--- a/_data/author.yml
+++ b/_data/author.yml
@@ -9,6 +9,11 @@ cv_link: /cv/
cv_pdf: /assets/pdf/cv.pdf
github_username: 2martens
twitter_username: 2martens
+publications:
+ - link: /assets/pdf/bachelor-thesis.pdf
+ title: Face Detection and Head Tracking for perspective rendering (Bachelor Thesis)
+ author: Jim Martens
+ date: 2016-07-19
skills:
- category: Languages
items:
diff --git a/cs/index.html b/cs/index.html
index 5315518..61bd349 100644
--- a/cs/index.html
+++ b/cs/index.html
@@ -12,21 +12,27 @@ sidebarboxes: author
Furthermore you will find here blog posts that cover topics related to the studies and Computer Science.
+{% if site.data.author.publications %}
Publications
-
+
+ {% for publication in site.data.author.publications %}
+ -
+
+
+
{{ publication.title }}
+
+ - Author: {{ publication.author }}
+ - Date:
+
+
+
+
+
+ {% endfor %}
+
+{% endif %}
Blog posts
\ No newline at end of file