From f602dab395ba91ad93a5b166d6904006d49d060a Mon Sep 17 00:00:00 2001 From: ishikawa999 Date: Sun, 8 Oct 2023 11:42:16 +0900 Subject: [PATCH] Fix file path app/views/ideas/index.html.erb --- _pages/html-and-css.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pages/html-and-css.md b/_pages/html-and-css.md index cd650ccd..e96d8ee4 100644 --- a/_pages/html-and-css.md +++ b/_pages/html-and-css.md @@ -15,7 +15,7 @@ The app doesn't look very nice right now: it's the standard plain black text on HTML (HyperText Markup Language) is used to structure your app. It tells the browser what is a heading, a list, a table, a link, etc. on the website. The scaffolding that was generated in the [previous guide](/app) is also made up of HTML, with some Ruby added to it to make it more dynamic. -Open up the `app/views/ideas/index.html` file and you should see something like the example below. The parts of the file that start with a `` tag opens an HTML tag, and the one with the forward slash symbol in it ``, closes it. You can add all kinds of properties to it, like `style`, `id` and `class`. +Open up the `app/views/ideas/index.html.erb` file and you should see something like the example below. The parts of the file that start with a `` tag opens an HTML tag, and the one with the forward slash symbol in it ``, closes it. You can add all kinds of properties to it, like `style`, `id` and `class`. {% highlight erb %}

Ideas