Testing Web Framework

This commit is contained in:
Juti Noppornpitak 2007-03-18 11:53:44 +00:00
parent 4a2b5594d4
commit 5de2111df0
2 changed files with 9 additions and 1 deletions

View File

@ -20,12 +20,14 @@
</style>
</head>
<body bgcolor="#ffffff">
<div class="web-framework">
<xsl:apply-templates select="biglogo"/>
<xsl:apply-templates select="header">
<xsl:with-param name="title" select="@title"/>
<xsl:with-param name="title" select="@title"/>
</xsl:apply-templates>
<xsl:apply-templates select="section|menu"/>
<xsl:apply-templates select="footer"/>
</div>
</body>
</html>
</xsl:template>

View File

@ -15,3 +15,9 @@ td.eventroom { background: #eeffee; font-family: sans-serif; font-size: x-small;
th.news { background: #222255; color: white; font-family: sans-serif; font-size: x-small; text-align: left; }
td.pagetitle { font-size: large; font-weight: bold; }
th { background: #002288; color: white; }
/* CSS 2 (especially for Mozilla) and CSS 3 (according to the developmental spec) */
.web-framework {
width:760px;
margin:0 auto;
}