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
{{ message }}
This repository was archived by the owner on Sep 1, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: responses/00_class-introduction-issue.md
+9-6Lines changed: 9 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,23 +12,26 @@ In this course, you'll create a blog hosted on GitHub Pages and learn how to:
12
12
13
13
### New to GitHub?
14
14
15
-
For this course, you'll need to know how to create a branch on GitHub, commit changes using Git, and open a pull request on GitHub. If you need a refresher on the GitHub flow, check out the [the Introduction to GitHub course]({{ host}}/courses/introduction-to-github).
15
+
For this course, you'll need to know how to create a branch on GitHub, commit changes using Git, and open a pull request on GitHub. If you need a refresher on the GitHub flow, check out the [the Introduction to GitHub course]({{ host}}/courses/introduction-to-github).
16
16
17
-
### :keyboard: Activity: Turn on GitHub Pages
17
+
### :keyboard: Activity: Generate a GitHub Pages site
18
18
19
19
The first step to publishing your blog to the web is to enable GitHub Pages on this repository <sup>[:book:](https://help.github.com/articles/github-glossary/#repository)</sup>. When you enable GitHub Pages on a repository, GitHub takes the content that's on the master branch and publishes a website based on its contents.
20
20
21
21
1. Under your repository name, click [**Settings**](https://github.com/{{ owner }}/{{ repo }}/settings)
22
-
1. In the "GitHub Pages" section, use the Select source drop-down menu to select the `master branch` as your GitHub Pages publishing source.
23
-
1. Click **Save**
22
+
1. In the "GitHub Pages" section, click **Launch automatic page generator**
23
+
1. Edit the **Project name** and **Body** to be what you'd like your main page to display
24
+
1. Click **Continue to layouts**
25
+
1. Select a layout
26
+
1. Click **Publish page**
24
27
25
-
After GitHub Pages is enabled, we'll be ready to create some content.
28
+
After GitHub Pages is enabled and the site is started, we'll be ready to create some more content.
26
29
27
30
For a printable version of the steps in this course, check out the [Quick Reference Guide]({{ host }}/public/{{ course.slug }}.pdf).
28
31
29
32
> Turning on GitHub Pages creates a deployment of your repository. I may take up to a minute to respond as I await the deployment.
30
33
31
34
<hr>
32
-
<h3align="center">Return to this issue for my next comment</h3>
35
+
<h3align="center">Return to this issue for my next comment.</h3>
33
36
34
37
> _Sometimes I respond too fast for the page to update! If you perform an expected action and don't see a response from me, wait a few seconds and refresh the page for your next steps._
Copy file name to clipboardExpand all lines: responses/01_update-index.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,17 +4,17 @@ Great job! Now that GitHub Pages is enabled, you can view your website here: htt
4
4
5
5
You can customize your homepage by adding content to either an `index` file or the `README.md` file. GitHub Pages first looks for an `index` file. If an `index` file is found, GitHub Pages uses the content in the file to create the homepage. If an `index` file isn’t found, it uses the `README.md` to create the homepage.
6
6
7
-
Your repository has an `index.md` file so we can update it to include your personalized content.
7
+
Your repository has an `index.html` file so we can update it to include your personalized content.
8
8
9
9
### :keyboard: Activity: Create your homepage
10
10
11
-
1. Navigate to the **Code** tab of this repository, and browse to the `index.md` file.
12
-
1. In the upper right corner, click the :pencil2: pencil icon to open the file editor.
13
-
1. Type the content you want on your homepage and remember, [you can use Markdown](https://help.github.com/articles/basic-writing-and-formatting-syntax/) to format your content.
14
-
1. Scroll to the bottom, type a commit message, and click **Create a new branch for this commit and start a pull request**.
15
-
1. Open a pull request.
11
+
1. Navigate to the **Code** tab of this repository, and browse to the `index.html` file
12
+
1. In the upper right corner, click the :pencil2: pencil icon to open the file editor
13
+
2. Type the content you want on your homepage
14
+
3. Scroll to the bottom, type a commit message, and click **Create a new branch for this commit and start a pull request**
15
+
4. Open a pull request
16
16
17
17
> Once you have created your pull request, I will move over there to discuss next steps.
18
18
19
19
<hr>
20
-
<h3align="center">Look for my next response in your pull request</h3>
20
+
<h3align="center">Look for my next response in your pull request.</h3>
Copy file name to clipboardExpand all lines: responses/02_pull-request-blank.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,4 +8,4 @@ For example, if you type `closes #2` in your pull request description, the open
8
8
If you would like assistance troubleshooting the issue you are encountering, create a post on the [GitHub Community]({{ communityBoard }}) board. You might also want to search for your issue to see if other people have resolved it in the past.
9
9
10
10
<hr>
11
-
<h3align="center">Check below for next steps</h3>
11
+
<h3align="center">Check below for next steps.</h3>
Great work! You can see your selected theme in action [here](https://{{ user.username }}.github.io/{{ repo }}). If you don't see your changes right away, refresh the page.
4
4
@@ -12,11 +12,11 @@ You can check out the `_config.yml` file on the **Code** tab of your repository.
12
12
13
13
Let's change the `_config.yml` so it's a perfect fit for your new blog. First, we need to use a blog-ready theme. For this activity, we will use a theme named `minima`.
14
14
15
-
1. Navigate to the **Code** tab of this repository, and browse to the `_config.yml` file.
16
-
1. In the upper right corner, click :pencil2: to open the file editor.
17
-
1. Change `theme:` to **minima** and modify the other configuration variables such as `title:`, `author:`, and `description:` to customize your site.
18
-
1. Click **Create a new branch for this commit and start a pull request**.
19
-
1. Open a pull request.
15
+
1. Navigate to the **Code** tab of this repository, and browse to the `_config.yml` file
16
+
1. In the upper right corner, click :pencil2: to open the file editor
17
+
1. Change `theme:` to **minima** and modify the other configuration variables such as `title:`, `author:`, and `description:` to customize your site
18
+
1. Click **Create a new branch for this commit and start a pull request**
19
+
1. Open a pull request
20
20
21
21
<hr>
22
-
<h3align="center">Look for my next response in your pull request</h3>
22
+
<h3align="center">Look for my next response in your pull request.</h3>
0 commit comments