Dear All,

I have modified our breadcrumb trail to link to our main website. How can I
modify this so that whenever I click on this link, it will open in a new
window or tab? Below is the content of my modify-trail.xsl.

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
                xmlns:dri="http://di.tamu.edu/DRI/1.0/";>

    <xsl:template match="*">
        <xsl:copy>
            <xsl:copy-of select="@*"/>
            <xsl:apply-templates/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="dri:pageMeta">
        <xsl:copy>
            <dri:trail target="http://www.our.website.org/";>
                Our Main Website
            </dri:trail>
            <xsl:apply-templates/>
        </xsl:copy>
    </xsl:template>

</xsl:stylesheet>

Thanks in advance,
Elvi
------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
DSpace-tech mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Reply via email to