}
private HtmlTable createPersonalCard(Person person, Class type) {
HtmlTable table = new HtmlTable();
HtmlTableRow row = table.createRow();
HtmlTableCell imageCell = row.createCell();
imageCell.setClasses(getPhotoCellClasses());
imageCell.setBody(createImageContainer(person));
HtmlTableCell dataCell = row.createCell();
dataCell.setBody(createInformationList(person, type));
dataCell.setClasses(getInfoCellClasses());