X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FAboutPage.java;h=b69ac28c2505335a8420e861854b7150a573c323;hb=00d6cb2688d8dda20ce55d71825b4446701a3a7a;hp=74c6a039c5d4a5057b33ba98e2247ffc275960dc;hpb=69bde20c9d91feada988690d3a5a59bc3e086fce;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/AboutPage.java b/src/main/java/net/pterodactylus/sone/web/AboutPage.java index 74c6a03..b69ac28 100644 --- a/src/main/java/net/pterodactylus/sone/web/AboutPage.java +++ b/src/main/java/net/pterodactylus/sone/web/AboutPage.java @@ -31,18 +31,20 @@ public class AboutPage extends SoneTemplatePage { private final Version version; private final int year; + private final String homepage; - public AboutPage(Template template, WebInterface webInterface, Version version, int year) { + public AboutPage(Template template, WebInterface webInterface, Version version, int year, String homepage) { super("about.html", template, "Page.About.Title", webInterface, false); this.version = version; this.year = year; + this.homepage = homepage; } @Override - protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException { - super.processTemplate(request, templateContext); + protected void processSonePage(FreenetRequest request, TemplateContext templateContext) throws RedirectException { templateContext.set("version", version); templateContext.set("year", year); + templateContext.set("homepage", homepage); } }