{"id":18819335,"url":"https://github.com/b-l-u-e/odin-recipes","last_synced_at":"2026-02-02T03:02:39.604Z","repository":{"id":224288058,"uuid":"762670185","full_name":"b-l-u-e/odin-recipes","owner":"b-l-u-e","description":"Project built based on HTML knowledge acquired.","archived":false,"fork":false,"pushed_at":"2024-02-25T03:38:13.000Z","size":249,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-22T11:37:24.218Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/b-l-u-e.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-02-24T11:12:12.000Z","updated_at":"2024-02-25T03:38:17.000Z","dependencies_parsed_at":"2024-02-25T04:26:30.184Z","dependency_job_id":"9caf55a8-095c-475b-982f-148c2fce3941","html_url":"https://github.com/b-l-u-e/odin-recipes","commit_stats":null,"previous_names":["b-l-u-e/odin-recipes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/b-l-u-e/odin-recipes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/b-l-u-e%2Fodin-recipes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/b-l-u-e%2Fodin-recipes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/b-l-u-e%2Fodin-recipes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/b-l-u-e%2Fodin-recipes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/b-l-u-e","download_url":"https://codeload.github.com/b-l-u-e/odin-recipes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/b-l-u-e%2Fodin-recipes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29002632,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T01:32:03.847Z","status":"online","status_checked_at":"2026-02-02T02:00:07.448Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T00:22:26.492Z","updated_at":"2026-02-02T03:02:39.590Z","avatar_url":"https://github.com/b-l-u-e.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# odin-recipes\n\n## Setting up project GitHub repository\n\n- Create a new repo for this project on GitHub.com and call it `odin-recipes` and choose the `public` option instead of the default private.\n\n- Clone that repository onto your local machine, inside the `repos` folder that you previously created in the Git Basics lesson. The command should look like git clone `git@github.com:username/odin-recipes.git (use SSH)`\n\n- `cd` into the `odin-recipes` project directory that is now on your local machine.\n\n- Set up your `README.md` file and write a brief introduction describing what the current project is and what skills you will have demonstrated once you have completed it. (You can also do this as a self-reflection at the end of the project, which is a good way to review what you have learned.)\n\n### Tips on when to commit changes\n\n-  When writing code, it’s considered best practice to commit early and often. Commit every time you have a meaningful change in the code. This will create a timeline of your progress and show that your finished code didn’t appear out of nowhere.\n\n## Assignment\n\n### Initial structure\n\n- Within the `odin-recipes` directory, create an `index.html` file.\n\n- Fill it out with the usual boilerplate HTML and add an `h1` heading “Odin Recipes” to the body.\n\n### Recipe page\n\n- Create a new directory within the `odin-recipes` directory and name it `recipes`.\n\n- Create a new HTML file within the `recipes` directory and name it after the recipe it will contain. For example `lasagna.html`. You can use the name of your favorite dish or, if you need some inspiration, you can [find a recipe to use here](https://www.allrecipes.com).\n\n- For now, just include an `h1` heading with the recipe’s name as its content.\n\n- Back in the `index.html` file, add a link to the recipe page you just created. Example: Under the `\u003ch1\u003eOdin Recipes\u003c/h1\u003e` heading, write out the link like so: `\u003ca href=\"recipes/recipename.html\"\u003eRecipe Title\u003c/a\u003e`. The text of the link should again be the recipe name.\n\n### Recipe page content\n\nYour new recipe page should have the following content:\n\n- An image of the finished dish under the h1 heading that you added earlier. You can find images of the dish on Google or the recipe site we linked to earlier.\n\n- Under the image, it should have an appropriately sized “Description” heading followed by a paragraph or two describing the recipe.\n\n- Under the description, add an “Ingredients” heading followed by an unordered list of the ingredients needed for the recipe.\n\n- Finally, under the ingredients list, add a “Steps” heading followed by an ordered list of the steps needed for making the dish.\n\n### Add more recipes\n\n- Finally, under the ingredients list, add a “Steps” heading followed by an ordered list of the steps needed for making the dish.\n\n- Don’t forget to link to the new recipes on the index page. Also, consider putting all the links in an unordered list so they aren’t all on one line. Example:\n\n ```bash\n  \u003cul\u003e\n    \u003cli\u003e\u003ca href=\"recipes/yourrecipe.html\"\u003eRecipe Title 1\u003c/a\u003e\u003c/li\u003e\n    \u003cli\u003e\u003ca href=\"recipes/yourrecipe.html\"\u003eRecipe Title 2\u003c/a\u003e\u003c/li\u003e\n    \u003cli\u003e\u003ca href=\"recipes/yourrecipe.html\"\u003eRecipe Title 3\u003c/a\u003e\u003c/li\u003e\n  \u003c/ul\u003e\n  ```\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fb-l-u-e%2Fodin-recipes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fb-l-u-e%2Fodin-recipes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fb-l-u-e%2Fodin-recipes/lists"}