<html> <body> <table> <g:each in="${dogs}"> <tr> <td>${it.name}</td> <td>${it.age}</td> </tr> </g:each> </table> </body> </html>