!752 static S html(S subUri, Map params) { S id = params.get("id"); S slogan = params.get("slogan"); S sloganStyle = params.get("sloganStyle"); S bottomLink = params.get("bottomLink"); if (id == null) ret "please specify id"; S imgURL = snippetImageURL(id); new StringBuilder buf; buf.append("" + slogan + "\n" + "
"); buf.append(""); if (!empty(slogan)) { buf.append("


"); buf.append("" + slogan + ""); } if (!empty(bottomLink)) buf.append("
" + bottomLink); buf.append("
\n" + ""); ret str(buf); }