use liquid in Jekyll
12 Apr 2020 - Kovacs J Giulia
Please refere Liquid and Front matter (jekyllrb.com).
Insert in the index.html
the yellow lines:
---
title: Home
---
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{ page.title } }</title>
</head>
<body>
<h1>{{ "k.i.s.s." | capitalize } }</h1>
<p>
Keep it simple stupid.
</p>
</body>
</html>
It gives the following result:
jekyll