-
Notifications
You must be signed in to change notification settings - Fork 0
/
elections.xsl
70 lines (59 loc) · 1.75 KB
/
elections.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
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html"/>
<xsl:template match="/">
<table>
<tr>
<td>
<a href="#list">List of races</a>
</td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>
<a href="http://www.krgv.com/story/31209491/early-voting-locations">Early Voting Polling Locations</a>
</td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>
Read propositions: <a href="http://www.krgv.com/story/31224893/2016-primary-ballot-propositions">Democrat</a> | <a href="http://www.krgv.com/story/31225533/2016-republican-general-primary-ballot-propositions">Republican</a>
</td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>
<a href="http://www.votetexas.gov/register-to-vote/need-id/">Acceptable forms of photo ID</a>
</td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<xsl:element name="iframe">
<xsl:attribute name="width">500</xsl:attribute>
<xsl:attribute name="height">2000</xsl:attribute>
<xsl:attribute name="src">http://ftpcontent5.worldnow.com/krgv/elections/elections.html</xsl:attribute>
<xsl:attribute name="frameborder">0</xsl:attribute>
</xsl:element>
</xsl:template>
</xsl:stylesheet>