<?xml version="1.0" encoding="ISO-8859-1" ?>

<!DOCTYPE xsl:stylesheet [
	<!ENTITY nbsp "&#160;">
	<!ENTITY % general.entities SYSTEM "entities/general.ent">
    	%general.entities;
	]>

<xsl:stylesheet 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
  version="1.0">

<xsl:output method="html"
  encoding="ISO-8859-1"
  doctype-public="-//W3C//DTD HTML 4.01//EN"
  doctype-system="http://www.w3.org/TR/html4/strict.dtd"
  indent="yes"
/>

<xsl:param name="filebase">nofile</xsl:param>
<xsl:param name="path">nofile</xsl:param>

<xsl:template match="/">
  <xsl:copy>
    <xsl:apply-templates select="@*|node()"/>
  </xsl:copy>
</xsl:template>

<xsl:template match="html/head">
  <head>
    <meta name="revisit-after" content="30 days" />
    <meta name="Content-language" content="en" />
    <meta name="Author-Corporate" content="Brian FRAVAL" />
    <meta name="copyright" content="@ 2002 - Brian FRAVAL" />
    <meta name="Author" lang="fr" content="Brian FRAVAL" />
    <meta name="Reply-to" content="brian@fraval.org" />
    <meta name="base" content="http://education.fraval.org/" />
    <meta name="Identifier-URL" content="http://education.fraval.org/" />
    <meta name="Date-Creation-yyyymmdd" content="20000802" />
    <meta name="Date-Revision-yyyymmdd" content="20020520" />
    <meta name="title" content="Serveur web pédagogique &name.project;" />
    <meta name="Description" content="Le projet EducPlus est la réalisation d'un serveur web pédagogique. Vous trouverez des cours en anglais, français, mathématiques, économie, droit, comptabilité, etc.." /> 
    <meta name="keywords" content="EducPlus, gpl, free, student, teach, educational, documentation, cours, education, serveur web pédagogique, anglais, français, mathématiques, histoire, géographie, économie, informatique" />
    <meta name="Category" content="Education" />

    <link rel="stylesheet" type="text/css" href="style.css" />
    <xsl:apply-templates select="@*|node()"/>
    <xsl:comment>
      DO NOT MODIFY THIS DOCUMENT. IT WAS GENERATED BY XSLT PROCESSING
      AND YOUR MODIFICATIONS WILL BE LOST. THE SOURCE OF THE DOCUMENT
      IS IN THE .xhtml FILE USE make all TO REGENERATE
    </xsl:comment>
    <title>Serveur web pédagogique &name.project; - Education</title>
  </head>
</xsl:template>

<xsl:template match="html/body">
  <body>
      <xsl:apply-templates select="@*|node()"/>
  </body>
</xsl:template>

<xsl:include href="navigation_site.xsl" />

<!-- Display attributes -->
<xsl:template match="@*|node()" priority="-1">
  <xsl:copy>
    <xsl:apply-templates select="@*|node()"/>
  </xsl:copy>
</xsl:template>

<!-- Display comments -->
<xsl:template match="comment()">
  <xsl:copy-of select="." />
</xsl:template>

</xsl:stylesheet>