Easy way to generate a small, simple HTML page. Equivalent to makePage(null, title, subtitle, body). @param title What should be in the title tag of the page. @param subtitle Small sentence to use next to the TSD logo. @param body The body of the page (excluding the body
(final String title,
final String subtitle,
final String body)
| 912 | * @return A full HTML page. |
| 913 | */ |
| 914 | public static StringBuilder makePage(final String title, |
| 915 | final String subtitle, |
| 916 | final String body) { |
| 917 | return makePage(null, title, subtitle, body); |
| 918 | } |
| 919 | |
| 920 | /** |
| 921 | * Easy way to generate a small, simple HTML page. |
no test coverage detected