PluginProbe
wpForo Forum / 3.2.0
wpForo Forum v3.2.0
3.2.0 3.1.7 3.1.6 3.1.5 3.1.4 3.1.2 3.1.1 3.1.0 3.0.9 3.0.8 3.0.7 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.10 1.4.11 All 140 releases
wpforo / assets / css / wpforo-sitemap.xsl

wpforo-sitemap.xsl in wpForo Forum 3.2.0, at assets/css/wpforo-sitemap.xsl

102 lines 4.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="2.0"
3 xmlns:html="http://www.w3.org/TR/REC-html40"
4 xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
5 xmlns:sitemap="http://www.sitemaps.org/schemas/sitemap/0.9"
6 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
7 <xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
8 <xsl:template match="/">
9 <html xmlns="http://www.w3.org/1999/xhtml">
10 <head>
11 <title>Forum Sitemap</title>
12 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
13 <style type="text/css">
14 body {font-family: Arial, Helvetica, sans-serif;font-size: 14px;color: #666666;margin-top: 30px;}
15 h2 {font-size: 20px;font-family: Verdana;}
16 table {border: 1px solid #666666;border-collapse: collapse;}
17 #sitemap tr td {padding: 5px 10px;}
18 #sitemap tr th {padding: 10px 10px;}
19 #sitemap tr:nth-child(odd) td {background-color: #badfd6 !important;}
20 #sitemap tbody tr:hover td {background-color: #badfd6;}
21 #sitemap tbody tr:hover td, #sitemap tbody tr:hover td a {color: #000;}
22 #content {margin: 0 auto;width: 1000px;}
23 .desc a {color: #000000;}
24 .desc a:visited {color: #1c90da;}
25 a {color: #000000;text-decoration: none;}
26 a:visited {color: #666666;}
27 a:hover {text-decoration: underline;}
28 table { width: 100%;}
29 td { font-size: 11px; }
30 th { text-align: left; padding-right: 30px; font-size: 14px;}
31 thead th { border-bottom: 1px solid #666666; background-color: #f5f5f5; }
32 @media screen and (max-width:1024px) { #content {margin: 0 auto;width: 90%;} }
33 </style>
34 </head>
35 <body>
36 <div id="content">
37 <h2>Forum Sitemap</h2>
38 <p class="desc">
39 This is an XML Sitemap designed to increase forum content indexing speed.<br />Generated by wpForo for search engines. More information on <a href="http://sitemaps.org" target="_blank" rel="noopener noreferrer">sitemaps.org</a>.
40 </p>
41 <xsl:if test="count(sitemap:sitemapindex/sitemap:sitemap) &gt; 0">
42 <p class="desc">
43 This sitemap index contains <xsl:value-of select="count(sitemap:sitemapindex/sitemap:sitemap)"/> sitemaps.
44 </p>
45 <table id="sitemap" cellpadding="3">
46 <thead>
47 <tr>
48 <th width="100%">Sitemaps</th>
49 </tr>
50 </thead>
51 <tbody>
52 <xsl:for-each select="sitemap:sitemapindex/sitemap:sitemap">
53 <xsl:variable name="sitemapURL">
54 <xsl:value-of select="sitemap:loc"/>
55 </xsl:variable>
56 <tr>
57 <td>
58 <a href="{$sitemapURL}"><xsl:value-of select="sitemap:loc"/></a>
59 </td>
60 </tr>
61 </xsl:for-each>
62 </tbody>
63 </table>
64 </xsl:if>
65 <xsl:if test="count(sitemap:sitemapindex/sitemap:sitemap) &lt; 1">
66 <p class="desc">
67 This sitemap contains <xsl:value-of select="count(sitemap:urlset/sitemap:url)"/> URLs.
68 </p>
69 <table id="sitemap" cellpadding="3">
70 <thead>
71 <tr>
72 <th width="80%">URL</th>
73 <th title="Last Modification Time" width="20%">Last modified date</th>
74 </tr>
75 </thead>
76 <tbody>
77 <xsl:variable name="lower" select="'abcdefghijklmnopqrstuvwxyz'"/>
78 <xsl:variable name="upper" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>
79 <xsl:for-each select="sitemap:urlset/sitemap:url">
80 <tr>
81 <td>
82 <xsl:variable name="itemURL">
83 <xsl:value-of select="sitemap:loc"/>
84 </xsl:variable>
85 <a href="{$itemURL}">
86 <xsl:value-of select="sitemap:loc"/>
87 </a>
88 </td>
89 <td>
90 <xsl:value-of select="concat(substring(sitemap:lastmod,0,11),concat(' ', substring(sitemap:lastmod,12,5)),concat(' ', substring(sitemap:lastmod,20,6)))"/>
91 </td>
92 </tr>
93 </xsl:for-each>
94 </tbody>
95 </table>
96 </xsl:if>
97 </div>
98 </body>
99 </html>
100 </xsl:template>
101 </xsl:stylesheet>
102