Creates a HtmlView corresponding to a dynamic HtmlPage with a model and default indentation on. @param out Output PrintStream. @param template Function that consumes an HtmlView to produce HTML elements. @param Type of the model rendered with this view.
(Appendable out, HtmlTemplate template)
| 144 | * @param <M> Type of the model rendered with this view. |
| 145 | */ |
| 146 | public static <M> HtmlView<M> view(Appendable out, HtmlTemplate template) { |
| 147 | return HtmlFlow.view(out, template, true, false, true, false); |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * Creates a HtmlView corresponding to a dynamic HtmlPage with a model and default indentation on. |