Skip to content

Latest commit

 

History

History
120 lines (107 loc) · 3.77 KB

outline.md

File metadata and controls

120 lines (107 loc) · 3.77 KB

Education/

Outline of the Educational Repository

Education-main/
├── .github/
│   └── workflows/
│       └── pages.yml
├── API/
│   └── <API documentation files>
├── Languages/
│   ├── cpp-lang/
│   │   ├── 01_Introduction_to_CPP/
│   │   │   ├── README.md
│   │   │   └── example.html
│   │   ├── 02_CPP_Installation_and_Setup/
│   │   │   ├── README.md
│   │   │   └── example.html
│   │   └── cpp-lang.html
│   ├── csharp-lang/
│   ├── css-lang/
│   ├── go-lang/
│   ├── java-lang/
│   ├── javascript-lang/
│   ├── kotlin-lang/
│   ├── liquid-lang/
│   ├── lua-lang/
│   ├── python-lang/
│   ├── r-lang/
│   ├── ruby-lang/
│   ├── swift-lang/
│   └── TEMPLATE-lang/
├── Tools/
│   ├── 01_Docker/
│   │   ├── README.md
│   │   └── example.html
│   ├── 02_Git/
│   ├── 03_VSCode/
│   ├── 04_Jenkins/
│   ├── 05_Kubernetes/
│   ├── 06_Terraform/
│   ├── 07_Postman/
│   ├── 08_OpenWebUI/
│   ├── 09_AnythingLLM/
│   ├── 10_Ansible/
│   ├── 11_Helm/
│   ├── 12_AWS_CLI/
│   ├── 13_Azure_CLI/
│   └── 14_Google_Cloud_SDK/
├── docs/
│   └── placeholder.txt
├── pages-html/
│   ├── apis-dropdown.html
│   ├── languages-dropdown.html
│   └── tools-dropdown.html
├── .gitignore
├── LICENSE
├── README.md
├── index.html
├── master-styles.css
├── outline.md
└── scripts.js

Description of Key Files and Folders

Root Directory

  • .github: Contains GitHub-related configurations.
  • API: Directory for API-related files.
  • build: Directory for build-related files.
  • Devicon-index: Directory for Devicon icons and related HTML/CSS.
    • devicon-index.css: Stylesheet for Devicon icons.
    • index.html: HTML file for Devicon index.
  • Languages: Directory for different language chapters.
    • Chapter-1 to Chapter-12: Directories for individual chapters.
    • chapter-styles.css: Stylesheet for language chapters.
  • node_modules: Directory for Node.js modules.
  • sections-html: Directory for HTML sections of the main page.
    • landing-page.html: HTML for the landing page.
    • languages.html: HTML for the languages section.
    • tools.html: HTML for the tools section.
    • apis.html: HTML for the APIs section.
    • main-technologies-used.html: HTML for the main technologies used section.
    • powered-by.html: HTML for the powered-by section.
  • Tools: Directory for tools-related files.
  • .gitignore: Git ignore file.
  • index.html: Main HTML file that includes other sections.
  • LICENSE: License file for the repository.
  • outline.md: This outline document.
  • sections.css: Stylesheet for sections.
  • site-styles.css: General stylesheet for the site.

Description of Sections

Landing Page

  • landing-page.html: Welcome message and introduction.

Languages

  • languages.html: Links to various programming languages.

Tools

  • tools.html: Links to various tools used.

APIs

  • apis.html: Links to various APIs used.

Main Technologies Used

  • main-technologies-used.html: Dropdown for main technologies used, excluding languages, tools, and APIs.

Powered By

  • powered-by.html: Dropdown for technologies and platforms powering the site.

Stylesheets

  • chapter-styles.css: Specific styles for language chapters.
  • devicon-index.css: Styles for Devicon icons.
  • sections.css: Styles for section HTML files.
  • site-styles.css: General site styles.