From 8f791729ce5916a9cdddb513d6b9e79f0156550f Mon Sep 17 00:00:00 2001 From: Ryan Thum Date: Thu, 17 Jun 2021 19:39:04 +0800 Subject: [PATCH] Updated GitHub Pages --- index.md | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/index.md b/index.md index d319f4e..3fd6bf4 100644 --- a/index.md +++ b/index.md @@ -1,37 +1,37 @@ -## Welcome to GitHub Pages +[![CodeFactor](https://www.codefactor.io/repository/github/ryantwt07/python-calculator/badge)](https://www.codefactor.io/repository/github/ryantwt07/python-calculator) -You can use the [editor on GitHub](https://github.com/ryantwt07/python-calculator/edit/gh-pages/index.md) to maintain and preview the content for your website in Markdown files. +## Welcome! -Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://jekyllrb.com/) to rebuild the pages in your site, from the content in your Markdown files. +Welcome to our repository. Our repository has two developers, [Ryan](https://github.com/ryantwt07) and [Glenn](https://github.com/Rubikscube2007). We hope that many Python beginners like us have access to repository that I friendly to beginners so that they can exponentially gain more knowledge about Python from others. :smile: -### Markdown +
-Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for +### Open-Source Friendly -```markdown -Syntax highlighted code block +Our Code is ensured to be open-source friendly. Our `/build` files are made so that first-time Python coders will have no problem starting their journey here! Here is an example of one of the `/build/lib` files that we have: -# Header 1 -## Header 2 -### Header 3 +```python +def inp(): + num1 = input("Enter First Number: ") + num2 = input("Enter Second Number: ") -- Bulleted -- List +def calculate(): + answer = num1 + num2 + print(answer) +``` -1. Numbered -2. List +
-**Bold** and _Italic_ and `Code` text +### Around the Clock Code Owners -[Link](url) and ![Image](src) -``` +Our Code Owners are in GitHub around the clock so if you have any queries, drop them a message using the Q&A discussion function! -For more details see [GitHub Flavored Markdown](https://guides.github.com/features/mastering-markdown/). +
-### Jekyll Themes +### Readily Available Documentation -Your Pages site will use the layout and styles from the Jekyll theme you have selected in your [repository settings](https://github.com/ryantwt07/python-calculator/settings/pages). The name of this theme is saved in the Jekyll `_config.yml` configuration file. +Our repository has a few coding style rules in place to ensure that our code is not messy. If you need help, please consult the [`/docs`](https://github.com/ryantwt07/Python-Calculator/tree/master/docs) folder or [`CONTRIBUTING.md`](https://github.com/ryantwt07/Python-Calculator/blob/master/CONTRIBUTING.md) for more information. -### Support or Contact +
-Having trouble with Pages? Check out our [documentation](https://docs.github.com/categories/github-pages-basics/) or [contact support](https://support.github.com/contact) and we’ll help you sort it out. +We hope that you have a great time coding!