TagHandler resolveApplicationTagHandler(String name) {
TagMetaModel tag = getChild(Key.of(name, TagMetaModel.class));
if (tag != null) {
TemplateMetaModel template = tag.getChild(TemplateMetaModel.KEY);
Path.Absolute path = template.getPath();
return new SimpleTag(name, path.getName().toString());
}
return null;
}