Looking at the default template, all output is returned by functions. If we wanted to output HTML markup (or anything else)… well I’m not sure the best approach.
Do we jump out of php and write the HTML directly? Or do we have to create oodles of functions to return the output? Or should we save the functions output to a variable like $out.= function_that_returns_stuff(); and return $out in the end like the old SP coding?
Your thoughts are appreciated.