note description: "[ ]" class HOME_CMS_EXECUTION inherit CMS_EXECUTION create make feature -- Execution process -- Computed response message. local -- l_url: READABLE_STRING_8 b: STRING_8 do set_title ("Home") set_page_title (Void) create b.make_empty if attached service.storage.recent_nodes (1, 10) as l_nodes then across l_nodes as c loop b.append ("
") b.append (c.item.to_html (theme)) b.append ("
%N") end end -- b.append ("%N") debug ("cms") if attached controller.session as sess then b.append ("
Session#" + sess.uuid + "
%N") end end set_main_content (b) end end