diff --git a/LICENSE b/LICENSE index 88666214..ab089aa5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ /* The MIT License (MIT) -Copyright (c) 2013-2018 Calvin Montgomery and contributors +Copyright (c) 2013-2019 Calvin Montgomery and contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/src/web/pug.js b/src/web/pug.js index 542390a2..94ee042b 100644 --- a/src/web/pug.js +++ b/src/web/pug.js @@ -14,7 +14,6 @@ function merge(locals, res) { var _locals = { siteTitle: Config.get("html-template.title"), siteDescription: Config.get("html-template.description"), - siteAuthor: "Calvin 'calzoneman' 'cyzon' Montgomery", csrfToken: typeof res.req.csrfToken === 'function' ? res.req.csrfToken() : '', baseUrl: getBaseUrl(res), channelPath: Config.get("channel-path"), diff --git a/templates/footer.pug b/templates/footer.pug index bee54117..210e45a1 100644 --- a/templates/footer.pug +++ b/templates/footer.pug @@ -2,7 +2,7 @@ mixin footer footer#footer .container p.text-muted.credit. - Copyright © 2013-2018 Calvin Montgomery · GitHub · Contact · Wiki + Powered by CyTube, available on GitHub · Contact · Wiki script(src="/js/jquery-1.11.0.min.js") // Must be included before jQuery-UI since jQuery-UI overrides jQuery.fn.button // I should really abandon this crap one day diff --git a/templates/head.pug b/templates/head.pug index ac944a24..597e977b 100644 --- a/templates/head.pug +++ b/templates/head.pug @@ -4,7 +4,6 @@ mixin head() meta(charset="utf-8") meta(name="viewport", content="width=device-width, initial-scale=1.0") meta(name="description", content=siteDescription) - meta(name="author", content=siteAuthor) title= siteTitle link(href="/css/sticky-footer-navbar.css", rel="stylesheet")