diff --git a/Gemfile.lock b/Gemfile.lock index 3764501c..6fa6daa6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -94,7 +94,7 @@ GEM rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) mercenary (0.4.0) - mini_magick (4.13.0) + mini_magick (4.13.2) namae (1.2.0) racc (~> 1.7) pathutil (0.16.2) diff --git a/_layouts/bib.html b/_layouts/bib.html index 2977ddd4..d4c834b2 100644 --- a/_layouts/bib.html +++ b/_layouts/bib.html @@ -1,7 +1,7 @@ --- --- -{{ reference }} + {% assign urls = "" %} {% capture doi_url %}DOI|{% endcapture %} @@ -15,13 +15,31 @@ -
[{{urls | split: "|" | join: " | "}}]
-{% if entry.abstract %} - --{% endif %} +{% if entry.abstract or entry.keywords %} +{{ entry.abstract }}
+ {% endif %} + {% if entry.keywords %} +{{ entry.abstract }}
+ {% endif %} +Keywords: {{ entry.keywords }}
[{{urls | split: "|" | join: " | "}}]
+[{{urls | split: "|" | join: " | "}}]
+ {% endif %} + + + + -{% if entry.keywords %} --{% endif %} diff --git a/_sass/minima.scss b/_sass/minima.scss index 4ba1a729..ac55b9ee 100644 --- a/_sass/minima.scss +++ b/_sass/minima.scss @@ -56,5 +56,6 @@ $on-laptop: 800px !default; "minima/project.scss", "minima/post.scss", "minima/people", - "minima/navbar" + "minima/navbar", + "minima/publications" ; diff --git a/_sass/minima/_publications.scss b/_sass/minima/_publications.scss new file mode 100644 index 00000000..c3ebe23a --- /dev/null +++ b/_sass/minima/_publications.scss @@ -0,0 +1,40 @@ +.accordion-title.pub { + padding: 0rem; + border: none; + border-bottom: none; + font: 400 16px / 1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + color: #111; +} + +:last-child:not(.is-active)>.accordion-title.pub { + border-bottom: none; +} + +.accordion-content.pub { + padding: 0rem; + border: none; + border-bottom: none; + background-color: none; +} + +.pub_seperator{ + margin-bottom: 15px; +} + +.pub_seperator>a>span { + padding-right: 3rem; + display: inline-block; +} + +.accordion-title::before { + position: absolute; + top: 5%; + right: 1rem; + margin-top: -.25rem; + font-size: 30px; + font-weight: bold; +} + +.pub_unseperator{ + margin-bottom: 0px; +} \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js index 26cb3411..3b49a608 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -66,7 +66,7 @@ function process_CLI(cb) { async function update_packages(cb) { await create_command("npm ci") - await create_command("bundle install") + await create_command("bundle update") cb() }Keywords: {{ entry.keywords }}