Skip to content

Commit

Permalink
Fix copyright year in LICENSE
Browse files Browse the repository at this point in the history
  • Loading branch information
calzoneman committed Feb 2, 2019
1 parent dfb7177 commit a81e4d1
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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:

Expand Down
1 change: 0 additions & 1 deletion src/web/pug.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
2 changes: 1 addition & 1 deletion templates/footer.pug
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ mixin footer
footer#footer
.container
p.text-muted.credit.
Copyright &copy; 2013-2018 Calvin Montgomery&nbsp;&middot; <a href="https://github.com/calzoneman/sync" target="_blank" rel="noreferrer noopener">GitHub</a>&nbsp;&middot; <a href="/contact" target="_blank">Contact</a>&nbsp;&middot; <a href="https://github.com/calzoneman/sync/wiki" target="_blank" rel="noopener noreferrer">Wiki</a>
Powered by CyTube, available on <a href="https://github.com/calzoneman/sync" target="_blank" rel="noreferrer noopener">GitHub</a>&nbsp;&middot; <a href="/contact" target="_blank">Contact</a>&nbsp;&middot; <a href="https://github.com/calzoneman/sync/wiki" target="_blank" rel="noopener noreferrer">Wiki</a>
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
Expand Down
1 change: 0 additions & 1 deletion templates/head.pug
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit a81e4d1

Please sign in to comment.