From a28e81d2d7a5f1f88433110aa05de4af7eb5d32e Mon Sep 17 00:00:00 2001 From: Fabian Steeg Date: Fri, 14 Jun 2024 15:29:51 +0200 Subject: [PATCH] Remove lobid header from `/reconcile`, adapt for gnd.network (#394) --- app/views/gnd.scala.html | 74 ++++++++++++++++++++++++++++++++++ app/views/reconcile.scala.html | 2 +- public/stylesheets/main.css | 21 ++++++++++ 3 files changed, 96 insertions(+), 1 deletion(-) create mode 100644 app/views/gnd.scala.html diff --git a/app/views/gnd.scala.html b/app/views/gnd.scala.html new file mode 100644 index 0000000..05c1a8f --- /dev/null +++ b/app/views/gnd.scala.html @@ -0,0 +1,74 @@ +@* Copyright 2015-2024 Fabian Steeg, hbz. Licensed under the EPL 2.0 *@ + +@(title: String)(content: Html) + + + + + + @title + + + + + + + + + + + + + + +
+

+

+ @content + +
+ + diff --git a/app/views/reconcile.scala.html b/app/views/reconcile.scala.html index b153ee5..7f72c76 100644 --- a/app/views/reconcile.scala.html +++ b/app/views/reconcile.scala.html @@ -6,7 +6,7 @@
@Html(label)
@java.net.URLDecoder.decode(link.toString.replaceAll("[&?]format=json$", ""), "UTF-8")
} -@main("", "lobid-gnd - Reconcile") { +@gnd("GND Reconciliation") {
diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index 6f4ca9b..9b9b759 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -8,6 +8,17 @@ dd { background-repeat: repeat-x; } +#header-gnd { + width: 100%; + background: #0069b4; +} + +#small-gnd-logo { + height: 25px; + border: 2px solid white; + background: white; +} + #header #butterfly { height: 25px; } @@ -119,6 +130,16 @@ ul.facet li { margin-top: 30px; } +.footer-gnd { + margin-top: 30px; + background: #0069b4; + color: white; +} + +.footer-gnd a { + color: white; +} + .pagination { margin-top: 0px !important; margin-bottom: 0px !important;