<?xml version="1.0" encoding="Shift_JIS"?>
<t:stylesheet version="1.0"
        xmlns:t="http://www.w3.org/1999/XSL/Transform">
  <t:output method="html"/>

  <t:template match="diary">
    <html lang="ja">
      <head>
         <title><t:value-of select="@year"/>年<t:value-of select="@month"/>月のへろへろにっき</title>
         <link rel="stylesheet" href="/s/default/xhtml1" media="all"/>
         <link rel="stylesheet" href="/~hero/N88BASICdayoon/style/common" media="all" />
      </head>
      <body>
        <h1><t:value-of select="@year"/>年<t:value-of select="@month"/>月のへろへろにっき</h1>
        
        <t:apply-templates/>
      </body>
    </html>
  </t:template>
  
  <t:template match="article">
    <div class="article" id="d{format-number (@day, '00')}">
      <h2><t:value-of select="/child::diary/@year"/>年<t:value-of select="/child::diary/@month"/>月<t:value-of select="@day"/>日</h2>
      
      <t:apply-templates/>
    </div>
  </t:template>
  
  <t:template match="section">
    <div class="section">
      <t:attribute name="id">
        <t:value-of select="concat ('d', format-number (ancestor::article/@day, '00'), 's')"/>
        <t:number count="section" format="01" />
      </t:attribute>
      <h3><t:value-of select="@title"/></h3>
      
      <t:apply-templates/>
    </div>
  </t:template>
  
  <t:template match="p">
    <p><t:apply-templates/></p>
  </t:template>

  <t:template match="fig">
    <div class="fig">
      <t:apply-templates/>
    </div>
  </t:template>

  <t:template match="img">
    <img src="/~hero/N88BASICdayoon/{/child::diary/@year}/{@src}"/>
  </t:template>

  <t:template match="description">
    <p class="description">
      <t:apply-templates/>
    </p>
  </t:template>
</t:stylesheet>
