<?xml version="1.0" encoding="utf-8"?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">


  <!-- blogTEI - Francois Lachance - TEIblog-->

  <!-- this is a template to include in a XSLT file -->
  <!-- it is desiged to insert a link to a CSS file -->
  <!-- it targets markup of front elements -->
  <!-- it is an arbitrary target -->
  <!-- to hook the template appropriately in a larger XSLT file -->
  <!-- see TEI Guidelines for more on the content model -->
  <!-- see XSLT Recomendation for more on templates -->

  <xsl:output method="html"/>

  <xsl:template match="front" name="css">
    <link rel="stylesheet" type="text/css" href="../css/styleTEIblog.css"></link>
  </xsl:template>

</xsl:transform>

