You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-18Lines changed: 10 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,33 +14,25 @@ _Create a site or blog from your GitHub repositories with GitHub Pages._
14
14
</header>
15
15
16
16
<!--
17
-
<<< Author notes: Step 2 >>>
17
+
<<< Author notes: Step 3 >>>
18
18
Start this step by acknowledging the previous step.
19
19
Define terms and link to docs.github.com.
20
-
Historic note: previous version checked for empty pull request, changed to the correct theme `minima`.
20
+
Historic note: previous version checked the homepage content was not empty.
21
21
-->
22
22
23
-
## Step 2: Configure your site
23
+
## Step 3: Customize your homepage
24
24
25
-
_You turned on GitHub Pages! :tada:_
25
+
_Nice work setting the theme! :sparkles:_
26
26
27
-
We'll work in a branch, `my-pages`, that I created for you to get this site looking great. :sparkle:
27
+
You can customize your homepage by adding content to either an `index.md` file or the `README.md` file. GitHub Pages first looks for an `index.md` file. Your repository has an `index.md` file so we can update it to include your personalized content.
28
28
29
-
Jekyll uses a file titled `_config.yml` to store settings for your site, your theme, and reusable content like your site title and GitHub handle. You can check out the `_config.yml` file on the **Code** tab of your repository.
29
+
### :keyboard: Activity: Create your homepage
30
30
31
-
We need to use a blog-ready theme. For this activity, we will use a theme named "minima".
32
-
33
-
### :keyboard: Activity: Configure your site
34
-
35
-
1. Browse to the `_config.yml` file in the `my-pages` branch.
31
+
1. Browse to the `index.md` file in the `my-pages` branch.
36
32
1. In the upper right corner, open the file editor.
37
-
1. Add a `theme:` set to **minima** so it shows in the `_config.yml` file as below:
38
-
```yml
39
-
theme: minima
40
-
```
41
-
1. (optional) You can modify the other configuration variables such as `title:`, `author:`, and `description:` to further customize your site.
42
-
1. Commit your changes.
43
-
1. (optional) Create a pull request to view all the changes you'll make throughout this course. Click the **Pull Requests** tab, click **New pull request**, set `base: main` and `compare:my-pages`.
33
+
1. Type the content you want on your homepage. You can use Markdown formatting on this page.
34
+
1. (optional) You can also modify `title:` or just ignore it for now. We'll discuss it in the next step.
35
+
1. Commit your changes to the `my-pages` branch.
44
36
1. Wait about 20 seconds then refresh this page (the one you're following instructions from). [GitHub Actions](https://docs.github.com/en/actions) will automatically update to the next step.
0 commit comments