49 lines
1.3 KiB
XML
49 lines
1.3 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
|
|
<xsl:template match="/">
|
|
<xsl:apply-templates select="html" />
|
|
</xsl:template>
|
|
|
|
<xsl:template match="html">
|
|
<html>
|
|
<xsl:apply-templates select="head" />
|
|
<xsl:apply-templates select="body" />
|
|
</html>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="head">
|
|
<head>
|
|
<title><xsl:value-of select="title" /></title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
|
|
<link rel="stylesheet" href="assets/css/main.css" />
|
|
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
|
|
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
|
|
</head>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="body">
|
|
<body>
|
|
<xsl:apply-templates select="header" />
|
|
</body>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="header">
|
|
<section id="header">
|
|
<header class="major">
|
|
<h1><xsl:value-of select="title" /></h1>
|
|
<p><xsl:value-of select="subtitle" /></p>
|
|
</header>
|
|
<div class="container">
|
|
<ul class="actions">
|
|
<li><a href="#one" class="button special scrolly">Begin</a></li>
|
|
</ul>
|
|
</div>
|
|
</section>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|