angular.module('app').run(['$templateCache', function($templateCache) {
'use strict';
$templateCache.put('directives/tag_cell.html',
"
\n" +
"\n" +
"{{tag.displayTitle}}\n" +
"
\n" +
"\n" +
"\n" +
"\n" +
"\n"
);
$templateCache.put('directives/tag_tree.html',
"\n" +
"
\n" +
"
\n" +
"
\n" +
"
\n" +
"{{tag.displayTitle}}\n" +
"
\n" +
"
\n" +
"\n" +
"
\n" +
"\n" +
"
\n" +
"
\n" +
"
\n" +
"
\n" +
"
\n"
);
$templateCache.put('home.html',
"\n"
);
}]);