Fetching data in Zola
Published: Sep 25, 2024
In Zola we can fetch data (remote content as titled in the documentation) using the load_data()
function.
{% set comments = load_data(
url="https://commentingsystem.com/api/v1/thread/1",
headers=["origin=https://eduardouribe.com"]
) %}
Comments • 0