{% for news in site.data.news %}
{{news.date}}
{{news.title[page.lang]}}
{% endfor %}
{{ page.content }}
import { Liquid } from 'liquidjs'
const engine = new Liquid()
const tpl = engine.parse('Welcome to {% raw %}{{v}}{% endraw %}!')
engine.render(tpl, {v: "Liquid"}).then(console.log)
// Outputs "Welcome to Liquid!"

{{__('index.contributors.title')}}

{{__('index.contributors.description')}}

{{ partial('partial/all-contributors') }}

{{__('index.backers.title')}}

{{__('index.backers.description')}}

{{__('index.sponsors.title')}}

{{__('index.sponsors.description')}}