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`.
19 lines
443 B
Markdown
19 lines
443 B
Markdown
---
|
|
layout: page
|
|
permalink: /publications/
|
|
title: publications
|
|
description: publications by categories in reversed chronological order. generated by jekyll-scholar.
|
|
years: [1967, 1956, 1950, 1935, 1905]
|
|
nav: true
|
|
nav_order: 1
|
|
---
|
|
<!-- _pages/publications.md -->
|
|
<div class="publications">
|
|
|
|
{%- for y in page.years %}
|
|
<h2 class="year">{{y}}</h2>
|
|
{% bibliography -f {{ site.scholar.bibliography }} -q @*[year={{y}}]* %}
|
|
{% endfor %}
|
|
|
|
</div>
|