diff --git a/Francesco.Recipes.World/Views/Shared/_GetInstructions.cshtml b/Francesco.Recipes.World/Views/Shared/_GetInstructions.cshtml
index 0c8a725..aa05493 100644
--- a/Francesco.Recipes.World/Views/Shared/_GetInstructions.cshtml
+++ b/Francesco.Recipes.World/Views/Shared/_GetInstructions.cshtml
@@ -5,114 +5,38 @@
{
-
-
-
+ @if (Model.Instructions[i].MediaFiles != null && Model.Instructions[i].MediaFiles.Any())
+ {
+ var mediaFile = Model.Instructions[i].MediaFiles.First();
+ if (mediaFile.Data != null)
+ {
+
+ }
+ }
+
+
+
+
-
-
+
+
}
+
+
+
@section Scripts {
}
diff --git a/Francesco.Recipes.World/Views/Shared/_IngredientsPartial.cshtml b/Francesco.Recipes.World/Views/Shared/_IngredientsPartial.cshtml
new file mode 100644
index 0000000..98670c5
--- /dev/null
+++ b/Francesco.Recipes.World/Views/Shared/_IngredientsPartial.cshtml
@@ -0,0 +1,35 @@
+@model Francesco.Recipes.World.Models.IngredientViewModel
+@Html.AntiForgeryToken()
+
+ @for (int i = 0; i < Model.Ingredients.Count; i++)
+ {
+
+ }
+
+
+
+
+@section Scripts {
+
+}