add footer
This commit is contained in:
parent
f03f9f9114
commit
d55c968ec3
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
<slot />
|
<slot />
|
||||||
|
|
||||||
<!-- <Footer/> -->
|
<Footer/>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
<footer class="bg-white">
|
<footer class="bg-white">
|
||||||
<hr>
|
<!-- <hr> -->
|
||||||
<nav class="mx-auto flex max-w-7xl items-center justify-between p-6 lg:px-8" aria-label="Global">
|
<nav class="mx-auto max-w-2xl px-4 py-4 sm:px-6 sm:py-4 lg:max-w-7xl lg:px-8" aria-label="Global">
|
||||||
<p>Copyright © <a href="/">always delicious</a> 2023</p>
|
<p class="text-center">Copyright © 2023 <a href="/">always delicious</a> All rights reserved.</p>
|
||||||
</nav>
|
</nav>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
a {
|
||||||
|
color: #64aa34;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -65,7 +65,6 @@
|
||||||
|
|
||||||
|
|
||||||
<!-- todo:
|
<!-- todo:
|
||||||
мобильная вёрстка
|
|
||||||
донат
|
донат
|
||||||
поиск
|
поиск
|
||||||
красивая ошибка при загрузке
|
красивая ошибка при загрузке
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
{:then data}
|
{:then data}
|
||||||
<div>
|
<div>
|
||||||
<!-- time / cals / protions -->
|
<!-- time / cals / protions -->
|
||||||
<div id="info" class="mt-4 flex flex-col md:flex-row">
|
<div id="info" class="flex flex-col md:flex-row">
|
||||||
<div class="flex flex-row">
|
<div class="flex flex-row">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" d="M12 6v6h4.5m4.5 0a9 9 0 11-18 0 9 9 0 0118 0z" />
|
<path stroke-linecap="round" stroke-linejoin="round" d="M12 6v6h4.5m4.5 0a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||||
|
@ -73,10 +73,10 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="recipe_container flex-col lg:flex-row">
|
<div class="recipe_container flex-col lg:flex-row">
|
||||||
<!-- ingredients -->
|
<!-- ingredients -->
|
||||||
<div id="ingredients" class="content-center">
|
<div id="ingredients">
|
||||||
<!-- ing -->
|
<!-- ing -->
|
||||||
{#each data.data.recipe.ingredients as ingredients}
|
{#each data.data.recipe.ingredients as ingredients}
|
||||||
<div>
|
<div class="text-lg">
|
||||||
<b><h5>{ingredients.Title}</h5></b>
|
<b><h5>{ingredients.Title}</h5></b>
|
||||||
<ul>
|
<ul>
|
||||||
{#each ingredients.Ingredients as ingredient}
|
{#each ingredients.Ingredients as ingredient}
|
||||||
|
@ -87,7 +87,7 @@
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
<!-- steps -->
|
<!-- steps -->
|
||||||
<div id="steps">
|
<div id="steps" class="text-lg">
|
||||||
<b><h5>Как приготовить {data.data.recipe.title.toLowerCase()}</h5></b>
|
<b><h5>Как приготовить {data.data.recipe.title.toLowerCase()}</h5></b>
|
||||||
<ol class="list-outside list-decimal list-image-none">
|
<ol class="list-outside list-decimal list-image-none">
|
||||||
{#each data.data.recipe.recipe_steps as step}
|
{#each data.data.recipe.recipe_steps as step}
|
||||||
|
@ -98,7 +98,7 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- advices -->
|
<!-- advices -->
|
||||||
{#if data.data.recipe.advices !== undefined}
|
{#if data.data.recipe.advices !== undefined}
|
||||||
<div id="advices">
|
<div id="advices" class="text-lg">
|
||||||
<b><h5>Советы</h5></b>
|
<b><h5>Советы</h5></b>
|
||||||
<ul>
|
<ul>
|
||||||
{#each data.data.recipe.advices as advice}
|
{#each data.data.recipe.advices as advice}
|
||||||
|
|
Loading…
Reference in New Issue