-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '394-reconcilePage' of https://github.com/hbz/lobid-gnd
Resolves #394 See https://lobid.org/gnd/reconcile
- Loading branch information
Showing
5 changed files
with
135 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
@* Copyright 2015-2024 Fabian Steeg, hbz. Licensed under the EPL 2.0 *@ | ||
|
||
@(title: String)(content: Html) | ||
|
||
<!DOCTYPE html> | ||
|
||
<html lang="de"> | ||
<head> | ||
<title>@title</title> | ||
<link rel="stylesheet" media="all" href="@controllers.routes.Assets.versioned("stylesheets/bootstrap.min.css")"> | ||
<link rel="stylesheet" media="all" href="@controllers.routes.Assets.versioned("stylesheets/octicons.css")"> | ||
<link rel="stylesheet" media="all" href="@controllers.routes.Assets.versioned("stylesheets/jquery-ui.min.css")"> | ||
<link rel="stylesheet" media="all" href='@controllers.routes.Assets.versioned("stylesheets/font-awesome.min.css")'> | ||
<link rel="stylesheet" media="all" href="@controllers.routes.Assets.versioned("stylesheets/main.css")"> | ||
<link rel="shortcut icon" type="image/png" href="@controllers.routes.Assets.versioned("images/gnd.png")"> | ||
<script src="@controllers.routes.Assets.versioned("javascripts/jquery-1.10.2.min.js")"></script> | ||
<script src="@controllers.routes.Assets.versioned("javascripts/jquery-ui.min.js")"></script> | ||
<script src="@controllers.routes.Assets.versioned("javascripts/bootstrap.min.js")"></script> | ||
<script src="@controllers.routes.Assets.versioned("javascripts/main.js")"></script> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE10"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<p/> | ||
<div class="navbar navbar-default" role="navigation"> | ||
<div class="container-fluid" id="header-gnd"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#resources-nav"> | ||
<span class="sr-only">Navigation ein/ausblenden</span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="https://lobid.org/gnd"> | ||
<img id="small-logo" src='@controllers.routes.Assets.versioned("images/favicon.png")' alt="lobid-gnd"/> | ||
</a> | ||
<a class="navbar-brand" id="small-gnd-logo-link" href="https://gnd.network"> | ||
<img id="small-logo" src='@controllers.routes.Assets.versioned("images/gnd.png")' alt="gnd.network"/> | ||
</a> | ||
</div> | ||
<div class="navbar-collapse collapse" id="resources-nav"> | ||
|
||
<ul class="nav navbar-nav navbar-right"> | ||
<li class="divider"></li> | ||
<li @if(title.contains("Dataset")){class="active"} class="dropdown"> | ||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" title="Info" style='color:white'><span class="glyphicon glyphicon-info-sign"></span><b class="caret"></b></a> | ||
<ul class="dropdown-menu"> | ||
<li class="dropdown-header">Dokumentation</li> | ||
<li><a href="http://lobid.org/usage-policy" target="_blank">Richtlinien zur API-Nutzung</a></li> | ||
<li class="divider"></li> | ||
<li class="dropdown-header">Kontakt</li> | ||
<li><a href="mailto:lobid-admin@@hbz-nrw.de?subject=Feedback%20zum%20GND-Reconciliation-Service">Feedback zum Reconciliation-Service</a></li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</div><!--/.nav-collapse --> | ||
</div><!--/.container-fluid --> | ||
</div> | ||
@content | ||
<div class="panel panel-default footer-gnd"> | ||
<div class="panel-body"> | ||
<span class="pull-left"> | ||
<img id='small-logo' src='@controllers.routes.Assets.versioned("images/gnd.png")' alt="GND-Logo"/> | ||
GND Reconciliation | ein Dienst im <a href='https://gnd.network'>gnd.network</a> | ||
</span> | ||
<span class="pull-right"> | ||
<a href="http://lobid.org/warranty">Gewährleistung</a> | | ||
<a href="http://www.hbz-nrw.de/impressum">Impressum</a> | | ||
<a href="https://github.com/hbz/lobid/blob/master/conf/Datenschutzerklaerung_lobid.textile">Datenschutz</a> | | ||
<a href="http://github.com/hbz/lobid-gnd"><i class="fa-brands fa-github" aria-hidden="true"></i> GitHub</a> | ||
<a href="https://wiki.dnb.de/pages/viewrecentblogposts.action?key=GND"><i class="fa fa-pencil" aria-hidden="true"></i> Blog</a> | ||
</span> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters