From 12549c1f3073cc6c5081a4bc879f6d1dc23a035b Mon Sep 17 00:00:00 2001 From: Peng PAN <48907119+panpeng19@users.noreply.github.com> Date: Sun, 5 Mar 2023 17:17:17 +0100 Subject: [PATCH] Initial commit --- LICENSE | 21 +++++++++++++++++++++ README.md | 16 ++++++++++++++++ _config.yml | 2 ++ _includes/01-name.md | 1 + _includes/02-image.md | 2 ++ _includes/03-links.md | 1 + _includes/04-lists.md | 3 +++ _includes/05-emphasis.md | 7 +++++++ index.md | 21 +++++++++++++++++++++ 9 files changed, 74 insertions(+) create mode 100644 LICENSE create mode 100644 README.md create mode 100644 _config.yml create mode 100644 _includes/01-name.md create mode 100644 _includes/02-image.md create mode 100644 _includes/03-links.md create mode 100644 _includes/04-lists.md create mode 100644 _includes/05-emphasis.md create mode 100644 index.md diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..76c20b7 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 GitHub, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..c75a020 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# Learn how to use markdown +This repository is a starter portfolio that you can use to learn a little bit about communication using Markdown. +## Your GitHub Learning Lab Repository for Communicating Using Markdown + +Welcome to your repository for your GitHub Learning Lab course. This repository will be used during the different activities that I will be guiding you through. + +Oh! I haven't introduced myself... + +I'm the GitHub Learning Lab bot and I'm here to help guide you in your journey to learn and master the various topics covered in this course. I will be using Issue and Pull Request comments to communicate with you. In fact, I already added an issue for you to check out. + +![issue tab](https://lab.github.com/public/images/issue_tab.png) + +I'll meet you over there, can't wait to get started! + +This repository is licensed under [MIT](../LICENSE) (c) 2019 GitHub, Inc. + diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..0536745 --- /dev/null +++ b/_config.yml @@ -0,0 +1,2 @@ +title: Welcome to my portfolio! +theme: jekyll-theme-cayman \ No newline at end of file diff --git a/_includes/01-name.md b/_includes/01-name.md new file mode 100644 index 0000000..c0564c2 --- /dev/null +++ b/_includes/01-name.md @@ -0,0 +1 @@ +# Hello world diff --git a/_includes/02-image.md b/_includes/02-image.md new file mode 100644 index 0000000..52760ba --- /dev/null +++ b/_includes/02-image.md @@ -0,0 +1,2 @@ +Replace this with an image, like your photo. Ensure you include some alt-text. +![Image of GitHubcat](https://lamachinerie.org/wp-content/uploads/2019/06/github.jpg) diff --git a/_includes/03-links.md b/_includes/03-links.md new file mode 100644 index 0000000..9fffcbe --- /dev/null +++ b/_includes/03-links.md @@ -0,0 +1 @@ +[GitHub](http://github.com) diff --git a/_includes/04-lists.md b/_includes/04-lists.md new file mode 100644 index 0000000..c6f7f08 --- /dev/null +++ b/_includes/04-lists.md @@ -0,0 +1,3 @@ +1. James Madison +2. James Monroe +3. John Quincy Adams diff --git a/_includes/05-emphasis.md b/_includes/05-emphasis.md new file mode 100644 index 0000000..3c33be4 --- /dev/null +++ b/_includes/05-emphasis.md @@ -0,0 +1,7 @@ +*This text will be italic* *Hello world* +_This will also be italic_ _Hello world_ + +**This text will be bold** **Hello world** +__This will also be bold__ __Hello world__ + +_You **can** combine them_ _Hello **world**_ diff --git a/index.md b/index.md new file mode 100644 index 0000000..4612d1c --- /dev/null +++ b/index.md @@ -0,0 +1,21 @@ +--- +layout: default +--- + +{% include 01-name.md %} + +
+ +{% include 02-image.md %} + +
+ +{% include 03-links.md %} + +
+ +{% include 04-lists.md %} + +
+ +{% include 05-emphasis.md %} \ No newline at end of file