- new frontend style

- GetRecord also with metadata
- no error during publishing
- more home views (etc. help, introduction)
- help image compressed (for web usage)
This commit is contained in:
Arno Kaimbacher 2019-09-12 17:40:21 +02:00
parent 720aa57810
commit d9e295f039
27 changed files with 956 additions and 343 deletions

12
public/css/style.css vendored
View file

@ -126,7 +126,13 @@ section {
text-align: center;
padding: 80px 0;
}
section.normal {
text-align: left;
}
.content-container {
margin-top: 25px;
}
/*
Section with featured background image. Every section which will have this
@ -228,7 +234,6 @@ section {
position: fixed;
width: 100%;
z-index: 3;
border-bottom: 1px solid #dcdcdc;
}
.header .menu {
clear: both;
@ -261,6 +266,7 @@ section {
}
.navigation.active {
/* make visible visible */
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
@ -696,6 +702,8 @@ there.
-o-transform: translateX(0);
transform: translateX(0);
}
@ -729,7 +737,7 @@ there.
}
.navigation ul li.right {
float: none;
}
}
}
/* Larger than desktop */

View file

@ -268,17 +268,13 @@
<datestamp>
<xsl:choose>
<xsl:when test="ServerDateModified">
<xsl:value-of select="ServerDateModified/@Year"/>
-
<xsl:value-of select="format-number(ServerDateModified/@Month,'00')"/>
-
<xsl:value-of select="ServerDateModified/@Year"/>-
<xsl:value-of select="format-number(ServerDateModified/@Month,'00')"/>-
<xsl:value-of select="format-number(ServerDateModified/@Day,'00')"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="ServerDatePublished/@Year"/>
-
<xsl:value-of select="format-number(ServerDatePublished/@Month,'00')"/>
-
<xsl:value-of select="ServerDatePublished/@Year"/>-
<xsl:value-of select="format-number(ServerDatePublished/@Month,'00')"/>-
<xsl:value-of select="format-number(ServerDatePublished/@Day,'00')"/>
</xsl:otherwise>
</xsl:choose>
@ -290,9 +286,11 @@
<xsl:apply-templates select="SetSpec" />
</header>
<xsl:choose>
<!-- nicht bei ListIdentifiers-->
<xsl:when test="$oai_verb!='ListIdentifiers' and @ServerState!='deleted'">
<metadata>
<!-- nicht bei ListIdentifiers und auch nicht bei gelöschten Datensätzen-->
<xsl:when test="$oai_verb!='ListIdentifiers' and @ServerState!='deleted'">
<metadata>
<!-- <xsl:value-of select="$oai_metadataPrefix" /> -->
<xsl:choose>
<xsl:when test="$oai_metadataPrefix='oai_dc'">
<xsl:apply-templates select="." mode="oai_dc" />
@ -302,6 +300,7 @@
</xsl:when>
</xsl:choose>
</metadata>
</xsl:when>
</xsl:choose>
</xsl:template>
@ -453,7 +452,7 @@
<dc:date>
<xsl:choose>
<xsl:when test="PublishedDate">
<xsl:value-of select="PublishedDate/@Year"/>
<xsl:value-of select="PublishedDate/@Year"/>
- <xsl:value-of select="format-number(PublishedDate/@Month,'00')"/>
- <xsl:value-of select="format-number(PublishedDate/@Day,'00')"/>
</xsl:when>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 MiB

After

Width:  |  Height:  |  Size: 686 KiB

Before After
Before After

View file

@ -19,7 +19,7 @@
<!-- FONT
-->
<!-- <link href='http://fonts.googleapis.com/css?family=Raleway:400,300,600' rel='stylesheet' type='text/css'> -->
<link href="http://fonts.googleapis.com/css?family=Roboto:400,500,700,900" rel="stylesheet" type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,900" rel="stylesheet" type='text/css'>
<!-- CSS
-->
@ -50,7 +50,13 @@
<a href="#" class="menu-icon">
<i class="fa fa-bars"></i>
</a>
<div class="container">
<ul class="menu">
<!-- <li>
<a href="#" class="menu-icon">
<i class="fa fa-bars"></i>
</a>
</li> -->
<li><a href="#hero">Home</a></li>
<li><a href="#introduction">Introduction</a></li>
<li><a href="#work">Work</a></li>
@ -61,6 +67,7 @@
<li><a href="#contact">Contact</a></li> -->
<li class="right"><a href="#">Login</a></li>
</ul>
</div>
</nav>
</header>
@ -185,8 +192,7 @@
<img src="images/clients/logo_zamg.png" alt="Zamg Client">
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- About -->

File diff suppressed because one or more lines are too long