Mercurial Hosting > nabble
view src/global/HtmlGlobalUtils.jtp @ 7:a04508136174
add ads to homepage for verification
author | Raymond <mazdarulez@hotmail.com> |
---|---|
date | Thu, 25 Jul 2019 11:40:07 +0000 |
parents | 7ecd1a4ef557 |
children | e424dc827823 |
line wrap: on
line source
<% package global; import global.web.Terms; import nabble.view.lib.HtmlViewUtils; import nabble.model.Init; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.PrintWriter; import java.util.Calendar; public class HtmlGlobalUtils { public static final String nabbleHost = (String)Init.get("nabbleHost"); public static final String nabbleContextUrl = "http://" + nabbleHost; private static final int cssVersion = 13; public static final String nabbleSupportUrl = "http://support.nabble.com/"; public static void head(HttpServletRequest request, HttpServletResponse response, String title) throws IOException { PrintWriter out = response.getWriter(); %> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Nabble • <%=title%></title> <link href='https://fonts.googleapis.com/css?family=Lato|Oswald' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="/assets/font-awesome/css/font-awesome.min.css?<%=cssVersion%>"> <link rel="stylesheet" href="/assets/global.css?<%=cssVersion%>"> <% HtmlViewUtils.googleAnalytics(out); } public static void header(HttpServletRequest request,HttpServletResponse response) throws IOException { PrintWriter out = response.getWriter(); %> <div header center> <a href="/"><img src="/assets/images/logo_nabble_home.png" width="236" height="50" alt="Nabble"/></a> </div> <% } public static void footer(HttpServletRequest request,HttpServletResponse response) throws IOException { PrintWriter out = response.getWriter(); %> <div dark full marginTop center footer> <div content> <a href="<%=HtmlGlobalUtils.nabbleContextUrl%>/help/Index.jtp" title="Nabble help articles">Help</a> <a href="/PoweredBy.jtp" rel="nofollow">Powered by</a> <a href="<%=Terms.path(false)%>" rel="nofollow">Terms of Use</a> <a href="/PrivacyPolicy.jtp" rel="nofollow">Privacy Policy</a> <a href="/ContactUs.jtp">Contact Us</a> <div>© 2005-<%=Calendar.getInstance().get(Calendar.YEAR)%> Nabble, LLC.</div> </div> </div> <% } private HtmlGlobalUtils() {} // never } %>