-
Notifications
You must be signed in to change notification settings - Fork 7
/
hisnulWeb-old.xsl
50 lines (45 loc) · 1.37 KB
/
hisnulWeb-old.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
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" encoding="utf-8" indent="yes" />
<xsl:template match="/">
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Hisn al-Muslim</title>
<link rel="stylesheet" href="node_modules/bulma/css/bulma.min.css" class="css" />
<style>
</style>
</head>
<body>
<div class="container">
<ol class="dua start" />
<ol>
<xsl:for-each select="hisnulmuslim/group">
<li>
<h2>
<xsl:value-of select="title"/>
</h2>
<ol class="dua">
<xsl:for-each select="dua">
<li>
<div class="arabic">
<xsl:value-of select="arabic" />
</div>
<div class="translation">
<xsl:value-of select="translation" />
</div>
<div class="reference">
<xsl:value-of select="reference" />
</div>
</li>
<hr/>
</xsl:for-each>
</ol>
</li>
</xsl:for-each>
</ol>
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>