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:sitemap="http://www.sitemaps.org/schemas/sitemap/0.9"
5
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
6
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
7
<xsl:template match="/">
8
<html xmlns="http://www.w3.org/1999/xhtml">
10
<title>XML Sitemap</title>
11
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
12
<style type="text/css">
13
body { font-family: "Consolas", "Lucida Console", monospace; font-size: 11pt; color: black; }
15
h1 { font-size: 20pt; }
16
#intro { margin: 5px; padding: 5px 15px; color:gray; line-height: 1.0; }
17
#intro span { color: black; font-weight: bold; }
18
th { text-align:left; padding-right:15px; font-size: 12pt; border-bottom:1px black solid; }
19
td { text-align:center; }
20
td.url { text-align:left; }
21
tr.even { background-color: #D6E0B7; }
22
tr.even a { color: #59662C; }
23
#footer { padding:2px; margin:10px; font-size: 10pt; color:gray; }
29
Вы наблюдаете слегка облагороженный сайтмап, пусть на голый XML роботы смотрят :)<br/>
30
Карта сайта содержит ссылок: <span><xsl:value-of select="count(sitemap:urlset/sitemap:url)"/></span>
33
<table cellpadding="5">
36
<th>Последнее изменение</th>
38
<xsl:for-each select="sitemap:urlset/sitemap:url">
40
<xsl:if test="position() mod 2 != 1">
41
<xsl:attribute name="class">even</xsl:attribute>
44
<xsl:variable name="itemURL">
45
<xsl:value-of select="sitemap:loc"/>
48
<xsl:value-of select="sitemap:loc"/>
52
<xsl:value-of select="concat(substring(sitemap:lastmod,0,11),' ', substring(sitemap:lastmod,12,5))"/>
59
Сгенерировано исключительно для красоты, хоть сюда всё равно никто смотреть и не будет.