From 6da4a70a1adb5657d1d4075e7d0501e1d2327439 Mon Sep 17 00:00:00 2001 From: GregTheMadMonk Date: Tue, 27 Sep 2022 02:04:18 +0300 Subject: [PATCH] Add 'All rights reserved' after 'SPC' to all footers --- src/main/kotlin/ru/mipt/spc/spcMisc.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/ru/mipt/spc/spcMisc.kt b/src/main/kotlin/ru/mipt/spc/spcMisc.kt index 36ca434..9da948d 100644 --- a/src/main/kotlin/ru/mipt/spc/spcMisc.kt +++ b/src/main/kotlin/ru/mipt/spc/spcMisc.kt @@ -137,7 +137,7 @@ context(WebPage) internal fun FlowContent.spcFooter() { // } } ul("copyright") { - li { +"""SPC""" } + li { +"""SPC. All rights reserved.""" } li { +"""Design:""" a { @@ -175,4 +175,4 @@ context(WebPage) internal fun FlowContent.wrapper(contentBody: FlowContent.() -> // Footer spcFooter() } -} \ No newline at end of file +}