<%/* 遍历分类 */%>
<%for (const [className, items] of albumsMapping) {%>
<%:=className%>
<%/* 遍历相册 */%>
<%for (const album of items) {%>
<%:=album.name%>
<%:=album.likes ? album.likes.length : 0%>
<%:=album.custom_visitor ? album.custom_visitor.viewCount : 0%>
<%:=album.total%>
<%}%>
<%}%>