Erster commit wie von Claude erstellt (unverändert)
This commit is contained in:
46
public/recipe.html
Normal file
46
public/recipe.html
Normal file
@@ -0,0 +1,46 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Rezept</title>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
</head>
|
||||
<body class="sans">
|
||||
<table width="800px" align="center" border="0">
|
||||
<tr><td>
|
||||
<a href="/index.html" class="custom-button">Zurück zur Übersicht</a>
|
||||
<button id="editBtn" class="custom-button">Rezept editieren</button>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table align="left" border="0">
|
||||
<tr><td id="rezeptnummer" style="font-size:1.6em"></td></tr>
|
||||
<tr><td id="bezeichnung" style="font-size:1.6em"></td></tr>
|
||||
<tr><td id="beschreibung" class="unter"></td></tr>
|
||||
<tr><td id="hauptbild" align="left"></td></tr>
|
||||
<tr><td id="vorbereitung" class="unter"></td></tr>
|
||||
<tr><td id="zutatenHeader" class="unter"></td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<tr><td id="zutatenContainer">
|
||||
<table align="center" border="0">
|
||||
<tr><td><pre id="zutaten" class="zutaten"></pre></td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<tr><td id="zubereitungContainer">
|
||||
<table align="left" border="0">
|
||||
<tr><td class="unter" align="left" colspan="2"><br>Zubereitung<br><br></td></tr>
|
||||
<tbody id="zubereitungSteps"></tbody>
|
||||
</table>
|
||||
</td></tr>
|
||||
<tr><td id="kommentarContainer"></td></tr>
|
||||
</table>
|
||||
|
||||
<div id="lightbox" onclick="closeLightbox()">
|
||||
<span class="close" onclick="closeLightbox()">×</span>
|
||||
<img id="lightbox-img" src="" alt="Vergrößerte Ansicht">
|
||||
</div>
|
||||
|
||||
<script src="/js/recipe.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user