Example #1
0
 public cn.bran.japid.template.RenderResult render(String blogTitle, List<Post> allPost) {
   this.blogTitle = blogTitle;
   this.allPost = allPost;
   long t = -1;
   try {
     super.layout();
   } catch (RuntimeException e) {
     super.handleException(e);
   } // line 3
   return new cn.bran.japid.template.RenderResultPartial(
       getHeaders(), getOut(), t, actionRunners, sourceTemplate);
 }