<?xml version='1.0' encoding='utf-8'?>
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:date="http://exslt.org/dates-and-times"
  xmlns:d="http://mickn.p.utmc.or.jp/diary"
  extension-element-prefixes="date">
  <xsl:include href="diary.xsl" />
  <xsl:output
    method="html"
    indent="yes"
    doctype-public="-//W3C//DTD HTML 4.01//EN"
    doctype-system="http://www.w3.org/TR/html4/strict.dtd"
    encoding="iso-2022-jp" />
  <xsl:variable name="prev" select="document('param.xml')//d:prev" />
  <xsl:variable name="next" select="document('param.xml')//d:next" />
  <xsl:template match="d:diary">
    <html lang="ja">
      <head>
	<link rev="made" href="mailto:ae5t-ksn@asahi-net.or.jp" />
	<link rel="index" href="./" />
	<link rel="stylesheet" href="theme/base.css" type="text/css" medial="all" />
	<link rel="stylesheet" href="theme/clover/clover.css" type="text/css" medial="all" />
	<meta http-equiv="content-style-type" content="text/css" />
	<title><xsl:call-template name="title" /></title>
      </head>
      <body>
	<h1><xsl:call-template name="title" /></h1>
	<div class="main">
	  <xsl:apply-templates />
	</div>
	<div class="sidebar">
	  <xsl:call-template name="navigation" />
	</div>
        <div class="footer"><a href="../notice.html">NOTICE</a></div>
      </body>
    </html>
  </xsl:template>
  <xsl:template name="title">日誌 - <xsl:value-of select="@year" />/<xsl:value-of select="@month" /></xsl:template>
  <xsl:template name="navigation">
    <p><a href="../">ホーム</a></p>
    <p><a href="../d.html">最新</a></p>
    <p>[<a href="../d.html">現在</a>][<a href="./">過去</a>]<xsl:if test="$prev != ''">[<a href="{$prev}.html">前月</a>]</xsl:if><xsl:if test="$next != ''">[<a href="{$next}.html">翌月</a>]</xsl:if></p>
  </xsl:template>
</xsl:stylesheet>
<!--
 Local Variables:
 mode:xml
 coding:utf-8
 End:
-->
