diff --git a/recipes/templates/add-recipe.html b/recipes/templates/add-recipe.html new file mode 100644 index 0000000..bd8968c --- /dev/null +++ b/recipes/templates/add-recipe.html @@ -0,0 +1,41 @@ +{% extends "base_main.html" %} +{% block title %}{{ recipe.title }}{% endblock %} +{% block main %} +
+ + + +{% endblock %} diff --git a/recipes/templates/add-version.html b/recipes/templates/add-version.html new file mode 100644 index 0000000..e67d86b --- /dev/null +++ b/recipes/templates/add-version.html @@ -0,0 +1,40 @@ +{% extends "base_main.html" %} +{% block title %}{{ recipe.title }}{% endblock %} +{% block main %} + + + + +{% endblock %} diff --git a/recipes/templates/edit-recipe.html b/recipes/templates/edit-recipe.html new file mode 100644 index 0000000..09bc18e --- /dev/null +++ b/recipes/templates/edit-recipe.html @@ -0,0 +1,10 @@ +{% extends "base_main.html" %} +{% block title %}{{ recipe.title }}{% endblock %} +{% block main %} + + +{% endblock %} diff --git a/recipes/templates/edit-version.html b/recipes/templates/edit-version.html new file mode 100644 index 0000000..e3fa642 --- /dev/null +++ b/recipes/templates/edit-version.html @@ -0,0 +1,40 @@ +{% extends "base_main.html" %} +{% block title %}{{ recipe.title }}{% endblock %} +{% block main %} + + + + +{% endblock %} diff --git a/recipes/templates/recipe.html b/recipes/templates/recipe.html new file mode 100644 index 0000000..08d20d9 --- /dev/null +++ b/recipes/templates/recipe.html @@ -0,0 +1,12 @@ +{% extends "base_main.html" %} +{% block title %}{{ recipe.title }}{% endblock %} +{% block main %} +{{ version.body }}
+{% endblock %}