My current ISP is SFR with an FTTLA connection, sometimes called “fake fiber” (client-side is coaxial): this is the historical Numerical network, the two having merged in 2014.

No complaints about quality of service, however relative DNS requests are systematically suffixed with numericable.fr, no matter which DNS server is specified:

In Grav, we can process YAML front matter from Twig templates. This can be very useful for elegantly handling list of items:

---
title: Foo
things:
  - bar
  - baz
---
<ul class="things">
{% for thing in page.header.things %}
  <li>{{ thing|raw }}</li>
{% endfor %}
</ul>

Result:

<ul class="things">
  <li>bar</li>
  <li>baz</li>
</ul>

What if we wanted to add some Markdown?