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: learn-pr/github/create-host-web-sites-github-pages/4-knowledge-check.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ quiz:
16
16
questions:
17
17
- content: "How do you enable GitHub Pages for your repository?"
18
18
choices:
19
-
- content: "Email GitHub support and ask for your free web site installation kit."
19
+
- content: "Email GitHub support, and ask for your free web site installation kit."
20
20
isCorrect: false
21
21
explanation: "GitHub Pages can be enabled from the **Settings** tab of the repository."
22
22
- content: "Subscribe to GitHub Enterprise and wait for further instructions in email."
@@ -29,7 +29,7 @@ quiz:
29
29
choices:
30
30
- content: "Personal sites, like your resume or portfolio."
31
31
isCorrect: false
32
-
explanation: "GitHub Pages are an excellent option for personal sites. It's the perfect one-two punch. First, you can impress everyone by configuring GitHub Page, and then blown them away with your other accomplishments."
32
+
explanation: "GitHub Pages are an excellent option for personal sites. It's the perfect one-two punch. First, you can impress everyone by configuring GitHub Pages, and then showcase your other accomplishments."
33
33
- content: "Dynamic server-side applications."
34
34
isCorrect: true
35
35
explanation: "GitHub Pages only hosts static content. However, you can still use JavaScript to add dynamic behavior and even integrate with external services from your site. For server-side apps, step up to Azure Web Apps."
Copy file name to clipboardExpand all lines: learn-pr/github/create-host-web-sites-github-pages/includes/1-introduction.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
GitHub Pages are free static web sites hosted directly from your GitHub repository. Anyone can use standard technologies like YAML and Markdown, to build and maintain a site in minutes.
1
+
GitHub Pages are free static web sites hosted directly from your GitHub repository. Anyone can use standard technologies like YAML and Markdown to build and maintain a site in minutes.
2
2
3
3
Suppose you want to set up a basic web site to share information about the project on which you're working. It might be a personal site, like a resume or portfolio; or it might be a professional site, like a user guide or developer reference. With GitHub Pages, you can spin up the site in minutes and allow anyone with a basic understanding of Markdown to contribute to it. You also get all the benefits of GitHub for source control, including branches and pull requests.
4
4
@@ -8,11 +8,11 @@ In this module, you learn how to set up and use GitHub Pages to host both person
Copy file name to clipboardExpand all lines: learn-pr/github/create-host-web-sites-github-pages/includes/2-what-is-github-pages.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ Here, we discuss the process of creating and maintaining a GitHub Pages web site
2
2
3
3
GitHub Pages are static sites hosted directly from your GitHub repository, but they're more than just a collection of static files. By making use of site-generation technologies like Jekyll and Liquid, developers define dynamic templates that are processed into complete static web sites. Every time you commit a change to the source branch associated with the site, the site is regenerated using the latest updates and automatically published to the target URL.
4
4
5
-
Learn more about [Publishing sources for GitHub Pages sites](https://help.github.com/en/github/working-with-github-pages/about-github-pages#publishing-sources-for-github-pages-sites?azure-portal=true).
5
+
Learn more about [Publishing sources for GitHub Pages sites](https://docs.github.com/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site).
6
6
7
7
## Enabling GitHub Pages
8
8
@@ -41,7 +41,7 @@ Learn more about [Front Matter](https://jekyllrb.com/docs/front-matter/?azure-po
41
41
42
42
## Customizing your site
43
43
44
-
Once your site is up and running, you can customize details about your site via `_config.yml`. This file includes virtually all site-wide configuration options, including site metadata, navigation menus, theme colors, compiler options, and more.
44
+
Once your site is up and running, you can customize details about your site via `_config.yml`. This file includes virtually all site-wide configuration options including site metadata, navigation menus, theme colors, compiler options, and more.
45
45
46
46
Learn more about [_config.yml Configuration](https://jekyllrb.com/docs/configuration/?azure-portal=true).
47
47
@@ -70,7 +70,7 @@ Learn more about [Liquid template language](https://shopify.github.io/liquid/?az
70
70
71
71
Despite not having a database to work with, Jekyll still supports the concept of blogging using a specific convention: `_posts/2020-06-25-blog-post-name.md`. As you can likely infer, all blog posts are stored in the `_posts` folder and use the date and name convention as shown. During compilation, Jekyll processes the files in this folder to produce a list of HTML blog posts.
72
72
73
-
The following example illustrates the structure of a simple blog post. It includes metadata for `subtitle`, `tags`, and `comments`. The theme that you choose, might not support this metadata.
73
+
The following example illustrates the structure of a simple blog post. It includes metadata for `subtitle`, `tags`, and `comments`. The theme that you choose might not support this metadata.
74
74
75
75
```markdown
76
76
---
@@ -84,4 +84,4 @@ comments: true
84
84
This is the first line of rendered content in the post.
85
85
```
86
86
87
-
Learn more about [Adding content to your GitHub Pages site using Jekyll](https://help.github.com/en/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll?azure-portal=true).
87
+
Learn more about [Adding content to your GitHub Pages site using Jekyll](https://help.github.com/en/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll?azure-portal=true).
0 commit comments