{{/* Bibliography List - You can change the citationStyle in the site's `config.yml` file. - Citation template files must match the name of the style (e.g. `apa` => `apa-style.html`) and must be located inside the `layouts/partials/bibliography/` directory. - This partial expects a map with the following property: references: references CSL-JSON spec: https://citeproc-js.readthedocs.io/en/latest/csl-json/markup.html */}} {{- $errorMissingPartialStyle := dict "Style de citation" "q-cite" "message" "Aucun modèle ne correspond au style de citation entré. Assurez-vous que le style explicité dans `.Site.params` se trouve dans `partials/bibliography`. Par exemple : " "example" "citationStyle: apa" -}} {{/* -------------------- 1. BEGIN CITATION STYLE BLOCK -------------------- */}} {{/* APA style by default */}} {{- $citationStyle := "apa" }} {{/* If the citationStyle is specified in the site config, use it. */}} {{- if $.Site.Params.citationStyle }} {{- $citationStyle = $.Site.Params.citationStyle }} {{- end }} {{/* Catch if there is no matching template for the style */}} {{- if not (templates.Exists (printf "partials/bibliography/%s-style.html" $citationStyle)) }} {{- errorf "The provided citationStyle does not exist: `%s`. Please make sure that a file named `%s-style.html` file exists in your layouts/partials/bibliography directory." $citationStyle $citationStyle }} {{- else }} {{/* -------------------- END CITATION STYLE BLOCK -------------------- */}} {{/* -------------------- 2. BEGIN REFERENCES BLOCK -------------------- */}} {{- $references := .references }} {{ if $references }}
{{- else }} {{ printf "Bibliography called, but no references" }} {{- end }} {{- end }} {{/* -------------------- END REFERENCES BLOCK -------------------- */}}