diff --git a/_assets/pub.md b/_assets/pub.md
new file mode 100644
index 0000000..c51da3b
--- /dev/null
+++ b/_assets/pub.md
@@ -0,0 +1,4 @@
+---
+nocite: |
+ @ramirezreyesSpontaneousCyclogenesisRadiative2021a,
+...
diff --git a/research/index.md b/research/index.md
index 279e545..a4eb831 100644
--- a/research/index.md
+++ b/research/index.md
@@ -1,77 +1,2 @@
-# Research
-
-
-
-~~~
-
-
-
-
-
Recent Publications
-
-
-
-
-
-~~~
+## Peer-reviewed papers
+{{pub}}
diff --git a/utils.jl b/utils.jl
index 20eea28..1085882 100644
--- a/utils.jl
+++ b/utils.jl
@@ -33,7 +33,7 @@ end
twitter="", gscholar="", github="", linkedin="", email="")
io = IOBuffer()
write(io, html("
"))
- isempty(name) || write(io, html("
$name
"))
+ isempty(name) || write(io, html("$name
"))
isempty(job) || write(io, html("$job
"))
if !isempty(link)
if isempty(linkname)
@@ -297,6 +297,9 @@ function hfun_allposts()
return show_posts(all_posts(), byyear=true)
end
+function hfun_pub()
+ read(`pandoc -f markdown+yaml_metadata_block+citations+raw_html -C _assets/pub.md --bibliography=_assets/MyAuthoredPapers.bib --mathjax`,String)
+end
# --------------------------------- #
# Working with Javascript Libraries #