Added Link styles to feed & added a no javascript checkbox! -> that changes size of the divs.

Its a trick where you can use checkbox :checked psuedoclass and use the sibling selector : ~ to select neighbouring elements and change their css. No js required :)

input:checked~div { max-width: 1200px; }

Also added a clause to not render any blocks named draft, so I can have private "unpublished" text blocks in the channel.

if (block.title == "DRAFT") continue