From 6d7bfc58c86228085ed23ce0f7d2be43e82cb497 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Tue, 16 Apr 2024 00:10:34 -0500 Subject: [PATCH] add copyright and license tags to CSS and templates Signed-off-by: Brian S. Stephan --- incorporealcms/static/css/base.css | 5 +++++ incorporealcms/static/css/dark.css | 5 +++++ incorporealcms/static/css/light.css | 5 +++++ incorporealcms/static/css/plain.css | 5 +++++ incorporealcms/templates/400.html | 5 +++++ incorporealcms/templates/404.html | 5 +++++ incorporealcms/templates/500.html | 5 +++++ incorporealcms/templates/base-wide.html | 5 +++++ incorporealcms/templates/base.html | 5 +++++ 9 files changed, 45 insertions(+) diff --git a/incorporealcms/static/css/base.css b/incorporealcms/static/css/base.css index 341e922..628de3e 100644 --- a/incorporealcms/static/css/base.css +++ b/incorporealcms/static/css/base.css @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: © 2020 Brian S. Stephan + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + html { font-family: sans-serif; padding: 0; diff --git a/incorporealcms/static/css/dark.css b/incorporealcms/static/css/dark.css index 7aff88d..4303aa1 100644 --- a/incorporealcms/static/css/dark.css +++ b/incorporealcms/static/css/dark.css @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: © 2020 Brian S. Stephan + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + /* common styling via the base.css, used in light and dark */ @import '/static/css/base.css'; diff --git a/incorporealcms/static/css/light.css b/incorporealcms/static/css/light.css index 896d1e8..350da1b 100644 --- a/incorporealcms/static/css/light.css +++ b/incorporealcms/static/css/light.css @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: © 2020 Brian S. Stephan + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + /* common styling via the base.css, used in light and dark */ @import '/static/css/base.css'; diff --git a/incorporealcms/static/css/plain.css b/incorporealcms/static/css/plain.css index c51f1f7..c2aa6c3 100644 --- a/incorporealcms/static/css/plain.css +++ b/incorporealcms/static/css/plain.css @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: © 2020 Brian S. Stephan + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + /* specify almost no styling, just fix some image and nav rendering */ div.header { display: flex; diff --git a/incorporealcms/templates/400.html b/incorporealcms/templates/400.html index 5f629bf..a574d89 100644 --- a/incorporealcms/templates/400.html +++ b/incorporealcms/templates/400.html @@ -1,3 +1,8 @@ + + {% extends "base.html" %} {% block header %} diff --git a/incorporealcms/templates/404.html b/incorporealcms/templates/404.html index 76c97a7..a656d0c 100644 --- a/incorporealcms/templates/404.html +++ b/incorporealcms/templates/404.html @@ -1,3 +1,8 @@ + + {% extends "base.html" %} {% block header %} diff --git a/incorporealcms/templates/500.html b/incorporealcms/templates/500.html index 4d31af2..b5eac15 100644 --- a/incorporealcms/templates/500.html +++ b/incorporealcms/templates/500.html @@ -1,3 +1,8 @@ + + {% extends "base.html" %} {% block header %} diff --git a/incorporealcms/templates/base-wide.html b/incorporealcms/templates/base-wide.html index e5cdb42..4fc366a 100644 --- a/incorporealcms/templates/base-wide.html +++ b/incorporealcms/templates/base-wide.html @@ -1,2 +1,7 @@ + + {% extends "base.html" %} {% block site_class %}class="site-wrap site-wrap-double-width"{% endblock %} diff --git a/incorporealcms/templates/base.html b/incorporealcms/templates/base.html index 7f7f40e..867b38d 100644 --- a/incorporealcms/templates/base.html +++ b/incorporealcms/templates/base.html @@ -1,3 +1,8 @@ + + {{ title }}