From f5546459319c86021ffcd5604dd1f610e7d3df4a Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Tue, 28 Jul 2020 11:18:02 +0200 Subject: Update information about IFL paper --- gulpfile.js | 8 +++++++- resources/pdf/ifl2019.pdf | Bin 0 -> 555152 bytes resources/pug/finals/index.pug | 14 +++++++++----- 3 files changed, 16 insertions(+), 6 deletions(-) create mode 100644 resources/pdf/ifl2019.pdf diff --git a/gulpfile.js b/gulpfile.js index 965371e..243a663 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -46,6 +46,11 @@ function img() { .pipe(gulp.dest('./build/assets/img')); } +function pdf() { + return gulp.src('./resources/pdf/*') + .pipe(gulp.dest('./build/assets/pdf')); +} + function fonts() { gulp.src('./node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands*') .pipe(gulp.dest('./build/assets/webfonts')); @@ -63,9 +68,10 @@ function watch() { exports.css = css; exports.html = html; exports.img = img; +exports.pdf = pdf; exports.fonts = fonts; exports.watch = watch; -var build = gulp.parallel(css, html, img, fonts); +var build = gulp.parallel(css, html, img, pdf, fonts); gulp.task('build', build); gulp.task('default', build); diff --git a/resources/pdf/ifl2019.pdf b/resources/pdf/ifl2019.pdf new file mode 100644 index 0000000..8c6c2fa Binary files /dev/null and b/resources/pdf/ifl2019.pdf differ diff --git a/resources/pug/finals/index.pug b/resources/pug/finals/index.pug index 3a71bc8..c6f1b21 100644 --- a/resources/pug/finals/index.pug +++ b/resources/pug/finals/index.pug @@ -42,7 +42,7 @@ block content if attributes.journal |' if attributes.url - a(href!=attributes.url, target="_blank")!= title + a(href!=attributes.url, target='_blank')!= title else | !{title} if attributes.journal @@ -60,13 +60,13 @@ block content - attributes.pages = attributes.pages.replace('-', '–') | , pp. !{attributes.pages} | . + if attributes.doi + | doi: + - var doiurl = 'https://doi.org/'+attributes.doi + a(href!=doiurl, target='_blank')!= attributes.doi h4 Refereed articles table.main_table.publications - tr - td Forthcoming - td - +pub('forthcoming', 'Lazy Interworking of Compiled and Interpreted Code for Sandboxing and Distributed Systems')(authors='Camil Staps, John van Groningen and Rinus Plasmeijer', booktitle='The 31st Symposium on Implementation and Application of Functional Languages, IFL \'19', editors='Jurriën Stutterheim and Wei Ngan Chin') tr td 2020 td @@ -75,6 +75,10 @@ block content td td +pub(2020, 'Prepositions and the Grammaticalization of Ancient Hebrew Bipartite Reciprocal Markers')(journal='Journal of Semitic Studies', volume=65, issue=1, pages='61-84', url='https://doi.org/10.1093/jss/fgz050') + tr + td 2019 + td + +pub(2019, 'Lazy Interworking of Compiled and Interpreted Code for Sandboxing and Distributed Systems')(authors='Camil Staps, John van Groningen and Rinus Plasmeijer', booktitle='Implementation and Application of Functional Languages (IFL \'19), September 25–27, 2019, Singapore, Singapore', editors='Jurriën Stutterheim and Wei Ngan Chin', doi='10.1145/3412932.3412941', url='/assets/pdf/ifl2019.pdf') tr td 2018 td -- cgit v1.2.3