Remark : 함수와 같은 기능
숫자 1 넘겨 처리
1 2 3 4 5 |
<xsl:call-template name="pictures"> <xsl:with-param name="number" select="'1'"/> </xsl:call-template> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<xsl:template match="*" name="pictures"> <xsl:param name="number"/> <div> <img alt="Image"> <xsl:attribute name="src"> <xsl:value-of select="File"/> </xsl:attribute> </img> </div> <div style="float: left;"> <a rel="$number"> <xsl:attribute name="href"> <xsl:value-of select="Picture"/> </xsl:attribute> </a> </div> </xsl:template> |