FileOutputStream out = new FileOutputStream(temp);
out.write(("<p>@foreach{index : alphabetical}<a href=\"@{index.uri}\">@{index.description}</a>@end{}</p>").getBytes());
out.close();
final String location = temp.getAbsolutePath();
Yoke yoke = new Yoke(this);
yoke.engine("mvel", new MVELEngine(""));
yoke.use(new Middleware() {
@Override
public void handle(YokeRequest request, Handler<Object> next) {
List<Map<String, String>> list = new ArrayList<>();
Map<String, String> item = new HashMap<>();
item.put("uri", "a");