summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2023-01-05 12:43:00 +0100
committerLibravatar GitHub <noreply@github.com>2023-01-05 12:43:00 +0100
commit0dbe6c514fb742b727694a6c8152fbd2a9caf035 (patch)
tree351cb411dd3aa71fb218fbe8495fe713fbfc91a2 /web
parent[chore] Fix emoji notnull constraint on initial gtsmodel (#1303) (diff)
downloadgotosocial-0dbe6c514fb742b727694a6c8152fbd2a9caf035.tar.xz
[chore] Update/add license headers for 2023 (#1304)
Diffstat (limited to 'web')
-rw-r--r--web/source/css/_colors.css2
-rw-r--r--web/source/css/base.css2
-rw-r--r--web/source/css/profile.css2
-rw-r--r--web/source/css/status.css2
-rw-r--r--web/source/frontend/index.js2
-rw-r--r--web/source/index.js2
-rw-r--r--web/source/settings/admin/actions.js2
-rw-r--r--web/source/settings/admin/emoji/category-select.jsx2
-rw-r--r--web/source/settings/admin/emoji/local/detail.js2
-rw-r--r--web/source/settings/admin/emoji/local/index.js2
-rw-r--r--web/source/settings/admin/emoji/local/new-emoji.js2
-rw-r--r--web/source/settings/admin/emoji/local/overview.js2
-rw-r--r--web/source/settings/admin/emoji/remote/index.js2
-rw-r--r--web/source/settings/admin/emoji/remote/parse-from-toot.js2
-rw-r--r--web/source/settings/admin/federation.js2
-rw-r--r--web/source/settings/admin/settings.js2
-rw-r--r--web/source/settings/components/back-button.jsx2
-rw-r--r--web/source/settings/components/combo-box.jsx2
-rw-r--r--web/source/settings/components/error.jsx2
-rw-r--r--web/source/settings/components/fake-profile.jsx2
-rw-r--r--web/source/settings/components/fake-toot.jsx2
-rw-r--r--web/source/settings/components/form-fields.jsx2
-rw-r--r--web/source/settings/components/form/combobox.jsx2
-rw-r--r--web/source/settings/components/form/file.jsx2
-rw-r--r--web/source/settings/components/form/index.js2
-rw-r--r--web/source/settings/components/form/text.jsx2
-rw-r--r--web/source/settings/components/languages.jsx2
-rw-r--r--web/source/settings/components/loading.jsx2
-rw-r--r--web/source/settings/components/login.jsx2
-rw-r--r--web/source/settings/components/mutation-button.jsx2
-rw-r--r--web/source/settings/components/nav-button.jsx2
-rw-r--r--web/source/settings/components/submit.jsx2
-rw-r--r--web/source/settings/index.js2
-rw-r--r--web/source/settings/lib/api/admin.js2
-rw-r--r--web/source/settings/lib/api/index.js2
-rw-r--r--web/source/settings/lib/api/oauth.js2
-rw-r--r--web/source/settings/lib/api/user.js2
-rw-r--r--web/source/settings/lib/errors.js2
-rw-r--r--web/source/settings/lib/get-views.js2
-rw-r--r--web/source/settings/lib/query/base.js2
-rw-r--r--web/source/settings/lib/query/custom-emoji.js2
-rw-r--r--web/source/settings/lib/query/index.js2
-rw-r--r--web/source/settings/lib/submit.js2
-rw-r--r--web/source/settings/redux/index.js2
-rw-r--r--web/source/settings/redux/reducers/admin.js2
-rw-r--r--web/source/settings/redux/reducers/instances.js2
-rw-r--r--web/source/settings/redux/reducers/oauth.js2
-rw-r--r--web/source/settings/redux/reducers/temporary.js2
-rw-r--r--web/source/settings/redux/reducers/user.js2
-rw-r--r--web/source/settings/style.css2
-rw-r--r--web/source/settings/user/profile.js2
-rw-r--r--web/source/settings/user/settings.js2
-rw-r--r--web/template/404.tmpl18
-rw-r--r--web/template/authorize.tmpl18
-rw-r--r--web/template/confirmed.tmpl18
-rw-r--r--web/template/email_confirm_html.tmpl18
-rw-r--r--web/template/email_confirm_text.tmpl18
-rw-r--r--web/template/email_reset_html.tmpl18
-rw-r--r--web/template/email_reset_text.tmpl18
-rw-r--r--web/template/error.tmpl18
-rw-r--r--web/template/finalize.tmpl18
-rw-r--r--web/template/footer.tmpl18
-rw-r--r--web/template/frontend.tmpl18
-rw-r--r--web/template/header.tmpl18
-rw-r--r--web/template/index.tmpl18
-rw-r--r--web/template/oob.tmpl18
-rw-r--r--web/template/profile.tmpl18
-rw-r--r--web/template/sign-in.tmpl18
-rw-r--r--web/template/status.tmpl18
-rw-r--r--web/template/thread.tmpl18
70 files changed, 376 insertions, 52 deletions
diff --git a/web/source/css/_colors.css b/web/source/css/_colors.css
index 70c12486e..ca17f5798 100644
--- a/web/source/css/_colors.css
+++ b/web/source/css/_colors.css
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/css/base.css b/web/source/css/base.css
index da2ad8f2b..340052b5a 100644
--- a/web/source/css/base.css
+++ b/web/source/css/base.css
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/css/profile.css b/web/source/css/profile.css
index 3de2f4387..5576610f1 100644
--- a/web/source/css/profile.css
+++ b/web/source/css/profile.css
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/css/status.css b/web/source/css/status.css
index ed0075976..92a158614 100644
--- a/web/source/css/status.css
+++ b/web/source/css/status.css
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/frontend/index.js b/web/source/frontend/index.js
index 7cf396035..5be3e0ec1 100644
--- a/web/source/frontend/index.js
+++ b/web/source/frontend/index.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/index.js b/web/source/index.js
index a96e663cd..7ad57104b 100644
--- a/web/source/index.js
+++ b/web/source/index.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/admin/actions.js b/web/source/settings/admin/actions.js
index 915b8aee1..66caa1794 100644
--- a/web/source/settings/admin/actions.js
+++ b/web/source/settings/admin/actions.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/admin/emoji/category-select.jsx b/web/source/settings/admin/emoji/category-select.jsx
index 3a2ace89b..d22534ea8 100644
--- a/web/source/settings/admin/emoji/category-select.jsx
+++ b/web/source/settings/admin/emoji/category-select.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/admin/emoji/local/detail.js b/web/source/settings/admin/emoji/local/detail.js
index 179ee7c7c..cc3ce6a70 100644
--- a/web/source/settings/admin/emoji/local/detail.js
+++ b/web/source/settings/admin/emoji/local/detail.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/admin/emoji/local/index.js b/web/source/settings/admin/emoji/local/index.js
index 1ccdece72..4160fe41d 100644
--- a/web/source/settings/admin/emoji/local/index.js
+++ b/web/source/settings/admin/emoji/local/index.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/admin/emoji/local/new-emoji.js b/web/source/settings/admin/emoji/local/new-emoji.js
index 985be2d32..6701dbf5a 100644
--- a/web/source/settings/admin/emoji/local/new-emoji.js
+++ b/web/source/settings/admin/emoji/local/new-emoji.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/admin/emoji/local/overview.js b/web/source/settings/admin/emoji/local/overview.js
index 7a5cfaad6..ebfb89695 100644
--- a/web/source/settings/admin/emoji/local/overview.js
+++ b/web/source/settings/admin/emoji/local/overview.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/admin/emoji/remote/index.js b/web/source/settings/admin/emoji/remote/index.js
index ae59673a5..fb1e05083 100644
--- a/web/source/settings/admin/emoji/remote/index.js
+++ b/web/source/settings/admin/emoji/remote/index.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/admin/emoji/remote/parse-from-toot.js b/web/source/settings/admin/emoji/remote/parse-from-toot.js
index 75ff8bf7a..963ae1a80 100644
--- a/web/source/settings/admin/emoji/remote/parse-from-toot.js
+++ b/web/source/settings/admin/emoji/remote/parse-from-toot.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/admin/federation.js b/web/source/settings/admin/federation.js
index 0547c97ca..b7658f444 100644
--- a/web/source/settings/admin/federation.js
+++ b/web/source/settings/admin/federation.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/admin/settings.js b/web/source/settings/admin/settings.js
index ae9207f36..c3b8e9d91 100644
--- a/web/source/settings/admin/settings.js
+++ b/web/source/settings/admin/settings.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/back-button.jsx b/web/source/settings/components/back-button.jsx
index b3034a8cc..d95f82a73 100644
--- a/web/source/settings/components/back-button.jsx
+++ b/web/source/settings/components/back-button.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/combo-box.jsx b/web/source/settings/components/combo-box.jsx
index d69df55b1..07d4abb6c 100644
--- a/web/source/settings/components/combo-box.jsx
+++ b/web/source/settings/components/combo-box.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/error.jsx b/web/source/settings/components/error.jsx
index dd1551c36..5d808c467 100644
--- a/web/source/settings/components/error.jsx
+++ b/web/source/settings/components/error.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/fake-profile.jsx b/web/source/settings/components/fake-profile.jsx
index c69e52b76..8afccf2cc 100644
--- a/web/source/settings/components/fake-profile.jsx
+++ b/web/source/settings/components/fake-profile.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/fake-toot.jsx b/web/source/settings/components/fake-toot.jsx
index f79e24eb9..836ac62f8 100644
--- a/web/source/settings/components/fake-toot.jsx
+++ b/web/source/settings/components/fake-toot.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/form-fields.jsx b/web/source/settings/components/form-fields.jsx
index 6393b1d5c..7b393b3ef 100644
--- a/web/source/settings/components/form-fields.jsx
+++ b/web/source/settings/components/form-fields.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/form/combobox.jsx b/web/source/settings/components/form/combobox.jsx
index d21a8c3f3..aeee38fc2 100644
--- a/web/source/settings/components/form/combobox.jsx
+++ b/web/source/settings/components/form/combobox.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/form/file.jsx b/web/source/settings/components/form/file.jsx
index 0d28cb699..4dd0e5162 100644
--- a/web/source/settings/components/form/file.jsx
+++ b/web/source/settings/components/form/file.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/form/index.js b/web/source/settings/components/form/index.js
index e226a4b04..a9f333e0e 100644
--- a/web/source/settings/components/form/index.js
+++ b/web/source/settings/components/form/index.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/form/text.jsx b/web/source/settings/components/form/text.jsx
index c24628dd7..3cd7e2d25 100644
--- a/web/source/settings/components/form/text.jsx
+++ b/web/source/settings/components/form/text.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/languages.jsx b/web/source/settings/components/languages.jsx
index 177947d8a..f353d92c9 100644
--- a/web/source/settings/components/languages.jsx
+++ b/web/source/settings/components/languages.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/loading.jsx b/web/source/settings/components/loading.jsx
index 51ce3a18b..f5648285b 100644
--- a/web/source/settings/components/loading.jsx
+++ b/web/source/settings/components/loading.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/login.jsx b/web/source/settings/components/login.jsx
index c67e99acd..4774423fc 100644
--- a/web/source/settings/components/login.jsx
+++ b/web/source/settings/components/login.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/mutation-button.jsx b/web/source/settings/components/mutation-button.jsx
index 9a8c9d089..2d0f2a2b4 100644
--- a/web/source/settings/components/mutation-button.jsx
+++ b/web/source/settings/components/mutation-button.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/nav-button.jsx b/web/source/settings/components/nav-button.jsx
index 3c76711fb..127193471 100644
--- a/web/source/settings/components/nav-button.jsx
+++ b/web/source/settings/components/nav-button.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/components/submit.jsx b/web/source/settings/components/submit.jsx
index 0187fc81f..2a1b864e3 100644
--- a/web/source/settings/components/submit.jsx
+++ b/web/source/settings/components/submit.jsx
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/index.js b/web/source/settings/index.js
index b087f945c..fb9eb79f7 100644
--- a/web/source/settings/index.js
+++ b/web/source/settings/index.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/lib/api/admin.js b/web/source/settings/lib/api/admin.js
index 7df3093fd..848772db7 100644
--- a/web/source/settings/lib/api/admin.js
+++ b/web/source/settings/lib/api/admin.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/lib/api/index.js b/web/source/settings/lib/api/index.js
index 8af7d5b43..89f12cc80 100644
--- a/web/source/settings/lib/api/index.js
+++ b/web/source/settings/lib/api/index.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/lib/api/oauth.js b/web/source/settings/lib/api/oauth.js
index 9410b4d8a..68095cac5 100644
--- a/web/source/settings/lib/api/oauth.js
+++ b/web/source/settings/lib/api/oauth.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/lib/api/user.js b/web/source/settings/lib/api/user.js
index e9f73158a..41031d489 100644
--- a/web/source/settings/lib/api/user.js
+++ b/web/source/settings/lib/api/user.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/lib/errors.js b/web/source/settings/lib/errors.js
index c2f781cb2..85302f18e 100644
--- a/web/source/settings/lib/errors.js
+++ b/web/source/settings/lib/errors.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/lib/get-views.js b/web/source/settings/lib/get-views.js
index 96ab17404..99644ea90 100644
--- a/web/source/settings/lib/get-views.js
+++ b/web/source/settings/lib/get-views.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/lib/query/base.js b/web/source/settings/lib/query/base.js
index 4023e9fbd..a782be54a 100644
--- a/web/source/settings/lib/query/base.js
+++ b/web/source/settings/lib/query/base.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/lib/query/custom-emoji.js b/web/source/settings/lib/query/custom-emoji.js
index 593556620..e62931cb2 100644
--- a/web/source/settings/lib/query/custom-emoji.js
+++ b/web/source/settings/lib/query/custom-emoji.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/lib/query/index.js b/web/source/settings/lib/query/index.js
index 5b15fd252..4bd0ff100 100644
--- a/web/source/settings/lib/query/index.js
+++ b/web/source/settings/lib/query/index.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/lib/submit.js b/web/source/settings/lib/submit.js
index f268b5cf9..6bb8836fc 100644
--- a/web/source/settings/lib/submit.js
+++ b/web/source/settings/lib/submit.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/redux/index.js b/web/source/settings/redux/index.js
index 43f5c007d..d7a2e6449 100644
--- a/web/source/settings/redux/index.js
+++ b/web/source/settings/redux/index.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/redux/reducers/admin.js b/web/source/settings/redux/reducers/admin.js
index 57ca83d7e..52fbe65e5 100644
--- a/web/source/settings/redux/reducers/admin.js
+++ b/web/source/settings/redux/reducers/admin.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/redux/reducers/instances.js b/web/source/settings/redux/reducers/instances.js
index 3ad5bb7cb..c58f068ca 100644
--- a/web/source/settings/redux/reducers/instances.js
+++ b/web/source/settings/redux/reducers/instances.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/redux/reducers/oauth.js b/web/source/settings/redux/reducers/oauth.js
index c332a7d06..129115c9e 100644
--- a/web/source/settings/redux/reducers/oauth.js
+++ b/web/source/settings/redux/reducers/oauth.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/redux/reducers/temporary.js b/web/source/settings/redux/reducers/temporary.js
index c887d2eee..0155f097a 100644
--- a/web/source/settings/redux/reducers/temporary.js
+++ b/web/source/settings/redux/reducers/temporary.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/redux/reducers/user.js b/web/source/settings/redux/reducers/user.js
index 861f519d1..21177ebdc 100644
--- a/web/source/settings/redux/reducers/user.js
+++ b/web/source/settings/redux/reducers/user.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/style.css b/web/source/settings/style.css
index 7ed2fb725..1b655146b 100644
--- a/web/source/settings/style.css
+++ b/web/source/settings/style.css
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/user/profile.js b/web/source/settings/user/profile.js
index 5637642fd..8e3b0b9e8 100644
--- a/web/source/settings/user/profile.js
+++ b/web/source/settings/user/profile.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/source/settings/user/settings.js b/web/source/settings/user/settings.js
index 3efd82ceb..59994ede3 100644
--- a/web/source/settings/user/settings.js
+++ b/web/source/settings/user/settings.js
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/web/template/404.tmpl b/web/template/404.tmpl
index 7153bfd40..3c1769210 100644
--- a/web/template/404.tmpl
+++ b/web/template/404.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
{{ template "header.tmpl" .}}
<main>
<section>
diff --git a/web/template/authorize.tmpl b/web/template/authorize.tmpl
index 68a6a2f29..5e3bb1204 100644
--- a/web/template/authorize.tmpl
+++ b/web/template/authorize.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
{{ template "header.tmpl" .}}
<main>
<form action="/oauth/authorize" method="POST">
diff --git a/web/template/confirmed.tmpl b/web/template/confirmed.tmpl
index 920f7d3b2..4c8832c6a 100644
--- a/web/template/confirmed.tmpl
+++ b/web/template/confirmed.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
{{ template "header.tmpl" .}}
<main>
<section>
diff --git a/web/template/email_confirm_html.tmpl b/web/template/email_confirm_html.tmpl
index 0a9907921..3fb9b234b 100644
--- a/web/template/email_confirm_html.tmpl
+++ b/web/template/email_confirm_html.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
<!DOCTYPE html>
<html>
</head>
diff --git a/web/template/email_confirm_text.tmpl b/web/template/email_confirm_text.tmpl
index 8682cc49c..738f6fd37 100644
--- a/web/template/email_confirm_text.tmpl
+++ b/web/template/email_confirm_text.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
Hello {{.Username}}!
You are receiving this mail because you've requested an account on {{.InstanceURL}}.
diff --git a/web/template/email_reset_html.tmpl b/web/template/email_reset_html.tmpl
index 7318c6a45..4da26de15 100644
--- a/web/template/email_reset_html.tmpl
+++ b/web/template/email_reset_html.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
<!DOCTYPE html>
<html>
</head>
diff --git a/web/template/email_reset_text.tmpl b/web/template/email_reset_text.tmpl
index ccac3bf75..378bf3f7e 100644
--- a/web/template/email_reset_text.tmpl
+++ b/web/template/email_reset_text.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
Hello {{.Username}}!
You are receiving this mail because a password reset has been requested for your account on {{.InstanceURL}}.
diff --git a/web/template/error.tmpl b/web/template/error.tmpl
index c7df695dd..eb5645c2a 100644
--- a/web/template/error.tmpl
+++ b/web/template/error.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
{{ template "header.tmpl" .}}
<main>
<section class="error">
diff --git a/web/template/finalize.tmpl b/web/template/finalize.tmpl
index 5ab4f97dc..5b6b5f474 100644
--- a/web/template/finalize.tmpl
+++ b/web/template/finalize.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
{{ template "header.tmpl" .}}
<main>
<form action="/oauth/finalize" method="POST">
diff --git a/web/template/footer.tmpl b/web/template/footer.tmpl
index 11e14ba4d..b4627b5ea 100644
--- a/web/template/footer.tmpl
+++ b/web/template/footer.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
<!-- footer.tmpl -->
</div>
<footer>
diff --git a/web/template/frontend.tmpl b/web/template/frontend.tmpl
index 20c1d61c9..5c1b494e8 100644
--- a/web/template/frontend.tmpl
+++ b/web/template/frontend.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
{{ template "header.tmpl" .}}
<main class="lightgray">
<div id="root">
diff --git a/web/template/header.tmpl b/web/template/header.tmpl
index 2fd25e292..8f0cc2ee5 100644
--- a/web/template/header.tmpl
+++ b/web/template/header.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
<!DOCTYPE html>
<!-- header.tmpl -->
diff --git a/web/template/index.tmpl b/web/template/index.tmpl
index fbdb7269c..f70f29388 100644
--- a/web/template/index.tmpl
+++ b/web/template/index.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
{{ template "header.tmpl" .}}
<section class="excerpt-top">
home to <span class="count">{{.instance.Stats.user_count}}</span> users
diff --git a/web/template/oob.tmpl b/web/template/oob.tmpl
index 2081ae8e4..0328df9bd 100644
--- a/web/template/oob.tmpl
+++ b/web/template/oob.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
{{ template "header.tmpl" .}}
<main>
<h1>Hi {{ .user }}!</h1>
diff --git a/web/template/profile.tmpl b/web/template/profile.tmpl
index 6cb1daf08..e484bd618 100644
--- a/web/template/profile.tmpl
+++ b/web/template/profile.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
{{ template "header.tmpl" .}}
<main>
<div class="profile">
diff --git a/web/template/sign-in.tmpl b/web/template/sign-in.tmpl
index 3385d5d4a..1df1cf459 100644
--- a/web/template/sign-in.tmpl
+++ b/web/template/sign-in.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
{{ template "header.tmpl" .}}
<main>
<section class="login">
diff --git a/web/template/status.tmpl b/web/template/status.tmpl
index 2c81a2a54..46a1cbbc3 100644
--- a/web/template/status.tmpl
+++ b/web/template/status.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
<div data-nosnippet class="contentgrid">
<a href="{{.Account.URL}}" class="avatar"><img src="{{.Account.Avatar}}" alt=""></a>
<a href="{{.Account.URL}}" class="displayname">{{if .Account.DisplayName}}{{emojify .Account.Emojis (escape .Account.DisplayName)}}{{else}}{{.Account.Username}}{{end}}</a>
diff --git a/web/template/thread.tmpl b/web/template/thread.tmpl
index 09f3e06c7..cb1040659 100644
--- a/web/template/thread.tmpl
+++ b/web/template/thread.tmpl
@@ -1,3 +1,21 @@
+{{- /*
+ GoToSocial
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/ -}}
+
{{ template "header.tmpl" .}}
<main>
<div data-nosnippet class="thread">