Changeset 3984104 for stylesheets/xhtml


Ignore:
Timestamp:
05/17/2004 06:26:42 AM (20 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
2ce613f
Parents:
1b658264
Message:

Update to style sheets; added tidy to Makefile

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2171 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • stylesheets/xhtml/lfs-navigational.xsl

    r1b658264 r3984104  
    4141          </div>
    4242        </xsl:if>
    43         <ul class="headerlinks">
     43        <div class="headerlinks">
    4444          <xsl:if test="count($prev)&gt;0 and $prev != $home">
    45             <li>
     45            <div class='prev'>
    4646              <a accesskey="p">
    4747                <xsl:attribute name="href">
     
    5252                <xsl:text>Prev</xsl:text>
    5353              </a>
    54             </li>
     54            </div>
    5555          </xsl:if>
    56           <li>
     56          <xsl:if test="count($next)&gt;0">
     57            <div class='next'>
     58              <a accesskey="n">
     59                <xsl:attribute name="href">
     60                  <xsl:call-template name="href.target">
     61                    <xsl:with-param name="object" select="$next"/>
     62                  </xsl:call-template>
     63                </xsl:attribute>
     64                <xsl:text>Next</xsl:text>
     65              </a>
     66            </div>
     67          </xsl:if>
     68          <div class='home'>
    5769            <a accesskey="h">
    5870              <xsl:attribute name="href">
     
    6375              <xsl:text>Home</xsl:text>
    6476            </a>
    65           </li>
    66           <xsl:if test="count($next)&gt;0">
    67             <li>
    68               <a accesskey="n">
    69                 <xsl:attribute name="href">
    70                   <xsl:call-template name="href.target">
    71                     <xsl:with-param name="object" select="$next"/>
    72                   </xsl:call-template>
    73                 </xsl:attribute>
    74                 <xsl:text>Next</xsl:text>
    75               </a>
    76             </li>
    77           </xsl:if>
    78         </ul>
     77          </div>
     78        </div>
    7979      </div>
    80       <hr/>
    8180    </xsl:if>
    8281  </xsl:template>
     
    9291            or count($next) &gt; 0 or generate-id($home) != generate-id(.)"/>
    9392    <xsl:if test="$row">
    94       <hr/>
    9593      <div class="navfooter">
    96         <ul>
    9794          <xsl:if test="count($prev)&gt;0 and $prev != $home">
    98             <li>
     95            <div class='prev'>
    9996              <a accesskey="p">
    10097                <xsl:attribute name="href">
     
    104101                </xsl:attribute>
    105102                <xsl:text>Prev</xsl:text>
    106               </a>
    107               <xsl:text> </xsl:text>
     103              </a><br/>
     104              <!-- <xsl:text> </xsl:text> -->
    108105              <xsl:apply-templates select="$prev" mode="object.title.markup"/>
    109             </li>
     106            </div>
     107          </xsl:if>
     108          <xsl:if test="count($next)&gt;0">
     109            <div class='next'>
     110              <a accesskey="n">
     111                <xsl:attribute name="href">
     112                  <xsl:call-template name="href.target">
     113                    <xsl:with-param name="object" select="$next"/>
     114                  </xsl:call-template>
     115                </xsl:attribute>
     116                <xsl:text>Next</xsl:text>
     117              </a><br/>
     118              <!-- <xsl:text> </xsl:text> -->
     119              <xsl:apply-templates select="$next" mode="object.title.markup"/>
     120            </div>
    110121          </xsl:if>
    111122          <xsl:if test="count($up)&gt;0 and $up != $home">
    112             <li>
     123            <div class='up'>
    113124              <a accesskey="u">
    114125                <xsl:attribute name="href">
     
    119130                <xsl:text>Up</xsl:text>
    120131              </a>
    121             </li>
     132            </div>
    122133          </xsl:if>
    123134          <xsl:if  test="$home != .">
    124             <li>
     135            <div class='home'>
    125136              <a accesskey="h">
    126137                <xsl:attribute name="href">
     
    131142                <xsl:text>Home</xsl:text>
    132143              </a>
    133             </li>
     144            </div>
    134145          </xsl:if>
    135           <xsl:if test="count($next)&gt;0">
    136             <li>
    137               <a accesskey="n">
    138                 <xsl:attribute name="href">
    139                   <xsl:call-template name="href.target">
    140                     <xsl:with-param name="object" select="$next"/>
    141                   </xsl:call-template>
    142                 </xsl:attribute>
    143                 <xsl:text>Next</xsl:text>
    144               </a>
    145               <xsl:text> </xsl:text>
    146               <xsl:apply-templates select="$next" mode="object.title.markup"/>
    147             </li>
    148           </xsl:if>
    149         </ul>
    150146      </div>
    151147    </xsl:if>
Note: See TracChangeset for help on using the changeset viewer.