-
Notifications
You must be signed in to change notification settings - Fork 0
/
htm-tpl-struct-hgv.xsl
57 lines (50 loc) · 2.23 KB
/
htm-tpl-struct-hgv.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id: htm-tpl-struct-hgv.xsl 2517 2017-03-10 19:53:37Z sarcanon $ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:t="http://www.tei-c.org/ns/1.0" exclude-result-prefixes="t"
version="2.0">
<!-- Contains named templates for HGV file structure (aka "metadata" aka "supporting data") -->
<!-- Called from htm-tpl-structure.xsl -->
<xsl:template name="hgv-structure">
<xsl:param name="parm-leiden-style" tunnel="yes" required="no"></xsl:param>
<html>
<head>
<title>
<xsl:choose>
<xsl:when test="//t:sourceDesc//t:bibl/text()">
<xsl:value-of select="//t:sourceDesc//t:bibl"/>
</xsl:when>
<xsl:when test="//t:idno[@type='filename']/text()">
<xsl:value-of select="//t:idno[@type='filename']"/>
</xsl:when>
<xsl:otherwise>
<xsl:text></xsl:text>
</xsl:otherwise>
</xsl:choose>
</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<!-- Found in htm-tpl-cssandscripts.xsl -->
<xsl:call-template name="css-script"/>
</head>
<body>
<!-- Heading for a ddb style file -->
<xsl:if test="($parm-leiden-style = ('ddbdp','dclp','sammelbuch'))">
<h1>
<xsl:choose>
<xsl:when test="//t:sourceDesc//t:bibl/text()">
<xsl:value-of select="//t:sourceDesc//t:bibl"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="//t:idno[@type='filename']"/>
</xsl:otherwise>
</xsl:choose>
</h1>
</xsl:if>
<!-- Main text output -->
<xsl:apply-templates select="//div[@type='edition']"/>
<!-- Found in htm-tpl-license.xsl -->
<xsl:call-template name="license"/>
</body>
</html>
</xsl:template>
</xsl:stylesheet>