day.html
$def with (year, month, day, posts) $ p = pendulum.date(year, month, day) $var breadcrumbs = (p.format("MM"), p.format("MMMM")) $var title: $month $day $year <ul> $for post in sorted(posts, key=operator.itemgetter("url")): <li><a href=$post["url"][0]>$post["url"][0]</a> $if name := post.get("name"): $name[0] </li> </ul> |