-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprocess.xsl
44 lines (39 loc) · 1.46 KB
/
process.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
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns="http://www.w3.org/1999/xhtml" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output
method="html"
version="1.0"
encoding="utf-8"
indent="no"
cdata-section-elements="script"
/>
<xsl:param name="css" select="'xv.css'"/>
<xsl:param name="custom_css" select="''"/>
<xsl:param name="options_url" select="'options.html'"/>
<xsl:template match="/">
<html lang="en-US">
<head>
<meta charset="UTF-8"/>
<xsl:comment>
<xsl:value-of select="concat(system-property('xsl:version'), '/', system-property('xsl:vendor'), '/', system-property('xsl:vendor-url'))"/>
</xsl:comment>
<link rel="stylesheet" type="text/css" href="{$css}" media="all" />
<style type="text/css">
<xsl:value-of select="$custom_css"/>
</style>
</head>
<body>
<div class="xv-search-panel">
<input type="search" class="xv-search-field" spellcheck="false" placeholder="Search by 990-PF section name" />
<span class="xv-search-xpath-result"></span>
<span class="xv-options-download"><a href="" download="">Download XML File</a></span>
<span class="xv-options-href">An open source tool from your friends at <a href="https://smartergiving.org" target="_blank">SmarterGiving</a></span>
<!-- <a href="{$options_url}" class="xv-options-href" target="_blank">Options</a> -->
</div>
<div class="xv-source-pane">
<div class="xv-source-pane-inner"></div>
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>