pages/_includes/selected_papers.html
Yue Gao 39d1f5e522
Fixed hard-coded bib files in templates (#1373)
The bibliography filename `papers.bib` is hard coded in templates, and
the equivalent setting in `_config.yml` is not used anywhere. So
changing the bib filename in `_config.yml` won't have any effects.

This PR replaces hard-coded filenames with the value from `_config.yml`.
2023-04-27 11:55:57 -03:00

5 lines
143 B
HTML

<div class="publications">
{% bibliography -f {{ site.scholar.bibliography }} -q @*[selected=true]* %}
</div>