Code ▸ Projects ▸ webint-posts ▸ Files ▸ webint_posts ▸ templates ▸ month.html Raw 1 2 3 4 5 6 7 8 9 10 $def with (year, month, posts) $var title: $month $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>