Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/recipe-fiddle.git
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:import href="main.xsl"/>

<xsl:template name="html-head">
  <link rel="stylesheet" type="text/css" href="css/app/recipe.css" />
  <title>Recipe Fiddle - Recipe Application</title>
</xsl:template>

<xsl:template name="body-app-nav">
<span class="icon app-nav-icon app-nav-recipe" id="app-nav-ingredient-group">
  <img src="../images/icons/recipe/ingredient-group.png"
       width="32" height="32"
       alt="Edit Ingredient Group" title="Edit Ingredient Group" />
</span><xsl:text> </xsl:text>
<span class="icon app-nav-icon app-nav-recipe" id="app-nav-substitute">
  <img src="../images/icons/recipe/substitute.png"
       width="32" height="32"
       alt="Edit Substitutes" title="Edit Substitutes" />
</span><xsl:text> </xsl:text>
<span class="icon app-nav-icon app-nav-recipe" id="app-nav-recipe">
  <img src="../images/icons/recipe/edit.png"
       width="32" height="32"
       alt="Edit Recipe" title="Edit Recipe" />
</span><xsl:text> </xsl:text>
<span class="icon app-nav-icon app-nav-recipe" id="app-nav-scan">
  <img src="../images/icons/recipe/scan.png"
       width="32" height="32" 
       alt="Upload Scan" title="Upload Scan" />
</span><xsl:text> </xsl:text>
<span class="icon app-nav-icon app-nav-recipe" id="app-nav-photograph">
  <img src="../images/icons/recipe/photograph.png"
       width="32" height="32" 
       alt="Edit Photograph" title="Edit Photograph" />
</span><xsl:text> </xsl:text>
<span class="icon app-nav-icon app-nav-recipe" id="app-nav-instruction-group">
  <img src="../images/icons/recipe/instruction-group.png"
       width="32" height="32" 
       alt="Edit Instruction Group" title="Edit Instruction Group" />
</span><xsl:text> </xsl:text>
<span class="icon app-nav-icon app-nav-recipe" id="app-nav-preparation">
  <img src="../images/icons/recipe/preparation.png"
       width="32" height="32" 
       alt="Edit Preheat" title="Edit Preheat" />
</span><xsl:text> </xsl:text>
<!-- TODO: Fix
<span class="icon app-nav-icon app-nav-recipe" id="app-nav-equipment">
  <img src="../images/icons/recipe/equipment.png"
       width="32" height="32" 
       alt="Edit Equipment" title="Edit Equipment" />
</span><xsl:text> </xsl:text>
-->
</xsl:template>

</xsl:stylesheet>