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
- .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
toChapter-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.
- landing-page.html: Welcome message and introduction.
- languages.html: Links to various programming languages.
- tools.html: Links to various tools used.
- apis.html: Links to various APIs used.
- main-technologies-used.html: Dropdown for main technologies used, excluding languages, tools, and APIs.
- powered-by.html: Dropdown for technologies and platforms powering the site.
- 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.