recipeDetails.ejs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <div id="recipeDetails">
  2. <div class="sidebarIconButtons">
  3. <button class="iconButton" onclick="controller.closeSidebar()">
  4. <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  5. <line x1="5" y1="12" x2="19" y2="12"></line>
  6. <polyline points="12 5 19 12 12 19"></polyline>
  7. </svg>
  8. </button>
  9. <button id="hideRecipeBtn" class="iconButton">
  10. <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  11. <path d="M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"></path>
  12. <line x1="1" y1="1" x2="23" y2="23"></line>
  13. </svg>
  14. </button>
  15. <button id="editRecipeBtn" class="iconButton">
  16. <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  17. <path d="M12 20h9"></path>
  18. <path d="M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"></path>
  19. </svg>
  20. </button>
  21. <button id="removeRecipeBtn" class="iconButton">
  22. <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  23. <polyline points="3 6 5 6 21 6"></polyline>
  24. <path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path>
  25. </svg>
  26. </button>
  27. </div>
  28. <h1 id="recipeName"></h1>
  29. <div id="recipeIngredientList"></div>
  30. <div class="lineBorder"></div>
  31. <div id="recipePrice">
  32. <h3>PRICE</h3>
  33. <p></p>
  34. </div>
  35. <template id="recipeIngredient">
  36. <div class="choosable">
  37. <p></p>
  38. <p></p>
  39. </div>
  40. </template>
  41. </div>