├── assets ├── css │ └── main.scss └── img │ ├── logo.jpg │ ├── mlh.jpg │ ├── .DS_Store │ ├── favicon.ico │ ├── social-link.jpg │ ├── education │ ├── uob.png │ └── fellowship.svg │ ├── experience │ ├── fellowship.svg │ └── mlh.svg │ └── logo.svg ├── .gitignore ├── _data ├── experience.yml ├── blogs.yml ├── education.yml ├── nav.yml └── projects.yml ├── sections ├── blogs.html ├── education-page.html ├── experience-page.html └── project-page.html ├── _layouts ├── default.html ├── page.html ├── section.html └── blog.html ├── _includes ├── profile.html ├── navbar.html ├── navItems.html ├── education.html ├── experience.html ├── projects.html ├── blogs.html └── header.html ├── index.html ├── Gemfile ├── 404.html ├── _config.yml ├── _sass ├── profile.scss ├── navbar.scss ├── section.scss ├── all.scss └── page.scss ├── LICENSE ├── projects └── sprint1.md ├── README.md ├── Gemfile.lock ├── CODE_OF_CONDUCT.md └── _posts └── 2018-08-20-blog1.md /assets/css/main.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import 'all'; 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-cache 4 | .jekyll-metadata 5 | vendor 6 | -------------------------------------------------------------------------------- /assets/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/mlh-fellowship-portfolio/master/assets/img/logo.jpg -------------------------------------------------------------------------------- /assets/img/mlh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/mlh-fellowship-portfolio/master/assets/img/mlh.jpg -------------------------------------------------------------------------------- /assets/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/mlh-fellowship-portfolio/master/assets/img/.DS_Store -------------------------------------------------------------------------------- /assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/mlh-fellowship-portfolio/master/assets/img/favicon.ico -------------------------------------------------------------------------------- /_data/experience.yml: -------------------------------------------------------------------------------- 1 | - role: Open Source Fellow 2 | company: MLH Fellowship 3 | dates: Summer 2020 4 | logo: fellowship.svg -------------------------------------------------------------------------------- /assets/img/social-link.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/mlh-fellowship-portfolio/master/assets/img/social-link.jpg -------------------------------------------------------------------------------- /assets/img/education/uob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/mlh-fellowship-portfolio/master/assets/img/education/uob.png -------------------------------------------------------------------------------- /sections/blogs.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: Blogs 3 | layout: section 4 | --- 5 | 6 |
7 | {% include blogs.html %} -------------------------------------------------------------------------------- /sections/education-page.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: Education 3 | layout: section 4 | --- 5 | 6 | 7 | {% include education.html %} -------------------------------------------------------------------------------- /sections/experience-page.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: Experience 3 | layout: section 4 | --- 5 | 6 | 7 | {% include experience.html %} -------------------------------------------------------------------------------- /sections/project-page.html: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | title: Projects 4 | layout: section 5 | 6 | --- 7 | 8 | 9 | {% include projects.html %} -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | 5 | {% include header.html %} 6 | 7 | 8 | {{ content }} 9 | 10 | 11 | -------------------------------------------------------------------------------- /_includes/profile.html: -------------------------------------------------------------------------------- 1 |
4 | {{ item.course }}
9 |{{ item.institute }}
10 |{{ item.dates }}
11 |{{ item.role }}
9 |{{ item.company }}
10 |{{ item.dates }}
11 |Page not found :(
24 |The requested page could not be found.
25 |{{ item.title }}
11 |{{ item.event }}
12 |{{ item.date }}
13 |Blog Written on {{ page.date | date_to_string }}
26 | 27 |{{ item.blogtitle }}
7 |{{ item.date | date_to_string }}
8 |{{ item.title }}
18 |{{ item.date | date_to_string }}
19 |