Link on rss design in full

main
Inga 🏳‍🌈 14 years ago
parent ab56c0b0d9
commit 98d490d110
  1. 2
      Builder/IISMainHandler/build.txt
  2. BIN
      static/images/rss-disabled.png
  3. BIN
      static/images/rss.png
  4. 1
      templates/Full/AllPosts.xslt
  5. 31
      templates/Full/elems/Header.xslt

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -5,6 +5,7 @@
<xsl:template name="specificTitle"> <xsl:template name="specificTitle">
<xsl:text>Âñå ñîîáùåíèÿ</xsl:text> <xsl:text>Âñå ñîîáùåíèÿ</xsl:text>
</xsl:template> </xsl:template>
<xsl:template name="isRssEnabled">true</xsl:template>
<xsl:template name="specific"> <xsl:template name="specific">
<table width="95%" align="center" cellpadding="1" cellspacing="1" class="tablesurround"> <table width="95%" align="center" cellpadding="1" cellspacing="1" class="tablesurround">
<tr> <tr>

@ -5,6 +5,7 @@
<xsl:import href="UploadHeader.xslt"/> <xsl:import href="UploadHeader.xslt"/>
<xsl:template name="isLiteEnabled">false</xsl:template> <xsl:template name="isLiteEnabled">false</xsl:template>
<xsl:template name="isRssEnabled">false</xsl:template>
<xsl:template name="headerLink"> <xsl:template name="headerLink">
<xsl:param name="url"/> <xsl:param name="url"/>
@ -71,6 +72,9 @@
<xsl:variable name="isLiteEnabled"> <xsl:variable name="isLiteEnabled">
<xsl:call-template name="isLiteEnabled"/> <xsl:call-template name="isLiteEnabled"/>
</xsl:variable> </xsl:variable>
<xsl:variable name="isRssEnabled">
<xsl:call-template name="isRssEnabled"/>
</xsl:variable>
<xsl:variable name="prefix"> <xsl:variable name="prefix">
<xsl:text>https://</xsl:text> <xsl:text>https://</xsl:text>
<xsl:value-of select="url/host"/> <xsl:value-of select="url/host"/>
@ -97,6 +101,33 @@
</xsl:attribute> </xsl:attribute>
</img> </img>
</a> </a>
<a>
<xsl:if test="$isRssEnabled='true'">
<xsl:attribute name="href">
<xsl:value-of select="$prefix"/>
<xsl:text>449</xsl:text>
<xsl:value-of select="currentUrl"/>
</xsl:attribute>
</xsl:if>
<img>
<xsl:attribute name="src">
<xsl:text>/static/images/rss</xsl:text>
<xsl:if test="not($isRssEnabled='true')">
<xsl:text>-disabled</xsl:text>
</xsl:if>
<xsl:text>.png</xsl:text>
</xsl:attribute>
</img>
</a>
<xsl:if test="$isRssEnabled='true'">
<link rel="alternate" type="application/rss+xml" title="RSS">
<xsl:attribute name="href">
<xsl:value-of select="$prefix"/>
<xsl:text>449</xsl:text>
<xsl:value-of select="currentUrl"/>
</xsl:attribute>
</link>
</xsl:if>
</span> </span>
</td> </td>
</tr> </tr>

Loading…
Cancel
Save