All links of one day
in a single page.
<Previous day - Next day>

rss_feedDaily RSS Feed
floral_left The Daily Shaarli floral_right
——————————— Tuesday 11, January 2022 ———————————
foreach - terraform -
thumbnail

foreach list of objects

[{
   name = "xxx"
   description = "xxx"
   param = "xxx"
},
...
]
for_each = {
    for item in var.items:
    item.name => item
  }

name = each.key OU each.value.name
description = each.value.description
-