List<List<Block>> blocks = new LinkedList<List<Block>>();
String[][] blockLocations = ThemeData.getTheme().getLocations();
for(String[] location : blockLocations)
blocks.add(BlockData.getBlocks(location[1], uri, userRoleKey));
page.serve(contents, blocks, ThemeData.getTheme());
}
}