summaryrefslogtreecommitdiff
path: root/gentoobrowse/xslt/base.xslt
diff options
context:
space:
mode:
Diffstat (limited to 'gentoobrowse/xslt/base.xslt')
-rw-r--r--gentoobrowse/xslt/base.xslt30
1 files changed, 16 insertions, 14 deletions
diff --git a/gentoobrowse/xslt/base.xslt b/gentoobrowse/xslt/base.xslt
index 88bea15..1f6dcd7 100644
--- a/gentoobrowse/xslt/base.xslt
+++ b/gentoobrowse/xslt/base.xslt
@@ -37,7 +37,7 @@
</xsl:if>
</ul>
<form id="search" class="popup" action="/search" method="get">
- <h1>Site search</h1>
+ <div class="title">Site search</div>
<input type="search" name="criteria" placeholder="Search criteria" required="required" autofocus="autofocus">
<xsl:attribute name="value"><xsl:value-of select="/gentoo/project2:params/criteria" /></xsl:attribute>
</input>
@@ -45,7 +45,7 @@
<input type="submit" value="Cancel" class="submit" onclick="return hideForm('#search');" />
</form>
<form id="login" class="popup" action="/dologin" method="post">
- <h1>Login</h1>
+ <div class="title">Login</div>
<input type="text" name="username" placeholder="Username" required="required" autofocus="autofocus" />
<input type="password" name="password" placeholder="Password" required="required" />
<input type="submit" value="Login" class="submit" />
@@ -63,18 +63,20 @@
</article>
<footer>
<p class="disclaimer">This website is not an official Gentoo website. The name "Gentoo" and the "g" logo are trademarks of the Gentoo Foundation, Inc.</p>
- <ul class="poweredby">
- <li>Powered by</li>
- <xsl:for-each select="/gentoo/power/by">
- <li>
- <a>
- <xsl:attribute name="href"><xsl:value-of select="url" /></xsl:attribute>
- <xsl:value-of select="name" />
- </a>
- </li>
- </xsl:for-each>
- <li>Many thanks.</li>
- </ul>
+ <div class="poweredby">
+ Powered by
+ <ul>
+ <xsl:for-each select="/gentoo/power/by">
+ <li>
+ <a>
+ <xsl:attribute name="href"><xsl:value-of select="url" /></xsl:attribute>
+ <xsl:value-of select="name" />
+ </a>
+ </li>
+ </xsl:for-each>
+ </ul>
+ Many thanks.
+ </div>
</footer>
</body>
</html>