From 360245c1d8279c7495785e1cfbeb087b3100e42d Mon Sep 17 00:00:00 2001 From: Thomas Wood <thomas.wood09@imperial.ac.uk> Date: Tue, 2 Feb 2016 18:02:29 +0000 Subject: [PATCH] Better bibliography table entry style --- _config.yml | 2 ++ _includes/publication-authors.html | 1 + _includes/publication-venue.html | 1 + _layouts/publication-entry.html | 8 ++++++++ assets/blog.scss | 18 ++++++++++++++++++ 5 files changed, 30 insertions(+) create mode 100644 _includes/publication-authors.html create mode 100644 _includes/publication-venue.html create mode 100644 _layouts/publication-entry.html diff --git a/_config.yml b/_config.yml index ef7ec9b..fd51f38 100644 --- a/_config.yml +++ b/_config.yml @@ -37,6 +37,8 @@ defaults: scholar: source: . bibliography: publications.bib + bibliography_template: publication-entry + details_link: "" details_dir: publications details_layout: publication.html diff --git a/_includes/publication-authors.html b/_includes/publication-authors.html new file mode 100644 index 0000000..fbad0b7 --- /dev/null +++ b/_includes/publication-authors.html @@ -0,0 +1 @@ +{{ entry.author }} diff --git a/_includes/publication-venue.html b/_includes/publication-venue.html new file mode 100644 index 0000000..f3d125e --- /dev/null +++ b/_includes/publication-venue.html @@ -0,0 +1 @@ +{% if entry.jorurnal %}{{ entry.journal }}{% elsif entry.booktitle %}{{ entry.booktitle }}{% elsif entry.institution %}{{ entry.institution }}{% elsif entry.school %}{{ entry.school }}{% endif %} diff --git a/_layouts/publication-entry.html b/_layouts/publication-entry.html new file mode 100644 index 0000000..021a912 --- /dev/null +++ b/_layouts/publication-entry.html @@ -0,0 +1,8 @@ +<div class="btn-group pull-xs-right" role="group"> + <a class="btn btn-secondary" role="button" href="{{ details }}"><i class="fa fa-info-circle"></i></a> + {% if link %}<a class="btn btn-secondary" role="button" href="{{ link }}"><i class="fa fa-file-text-o"></i></a>{% endif %} +</div> +<p class="pub-title h4"><a href="{{ details }}">{{ entry.title }}</a></p> +<p class="pub-authors">{% include publication-authors.html %}</p> +<p class="pub-venue">{% include publication-venue.html %}</p> + diff --git a/assets/blog.scss b/assets/blog.scss index 90ed04b..8669a68 100644 --- a/assets/blog.scss +++ b/assets/blog.scss @@ -145,6 +145,24 @@ h6, .h6 { } } +.bibliography { + padding: 0; + + > li { + list-style: none; + border-top: 1px solid #eee; + padding: 1em; + } + + .pub-title a { + color: black; + } + + p { + margin-bottom: 0.25rem; + } +} + /* * Blog name and description */ -- GitLab