The following Velocity snippet will print out entries for the same day under a heading of the format:
Day_Of_Week, Month Day_In_Month
... template code ... #set ($hasPrintedDateHeader = 0) #set ($currentDateFormat = "") #foreach ($entry in $BLOJSOM_ENTRIES) #if (!$currentDateFormat.equals($entry.getDateAsFormat("Mdyyyy"))) #set ($hasPrintedDateHeader = 0) #end #if ($hasPrintedDateHeader == 0) #set ($currentDateFormat = $entry.getDateAsFormat("Mdyyyy")) $entry.getDateAsFormat("EEEE, MMMM dd") #set ($hasPrintedDateHeader = 1) #end ... more template code to print out the title of the entry, body of the entry, etc ...