├── .ruby-version ├── .gitignore ├── assets ├── img │ ├── logo.jpg │ ├── mlh.jpg │ ├── .DS_Store │ ├── favicon.ico │ ├── portfolio.png │ ├── social-link.jpg │ ├── education │ │ ├── uob.png │ │ └── fellowship.svg │ ├── social │ │ ├── github.png │ │ ├── tumblr.png │ │ ├── twitter.png │ │ ├── youtube.png │ │ └── linkedin.png │ ├── recommendations │ │ └── tom-goodman.webp │ ├── experience │ │ ├── fellowship.svg │ │ └── mlh.svg │ └── logo.svg ├── css │ └── main.scss └── js │ └── dark-mode.js ├── CODE_OF_CONDUCT.md ├── _data ├── experience.yml ├── education.yml ├── about.yml ├── recommendations.yml └── projects.yml ├── _layouts ├── default.html └── page.html ├── lighthouserc.js ├── Gemfile ├── 404.html ├── index.html ├── _sass ├── projects.scss ├── footer.scss ├── profile.scss ├── page.scss ├── all.scss ├── navbar.scss └── toggle.scss ├── _includes ├── education.html ├── experience.html ├── google-analytics.html ├── recommendations.html ├── profile.html ├── contact.html ├── about.html ├── footer.html ├── header.html ├── navbar.html └── projects.html ├── _config.yml ├── .github └── workflows │ └── lighthouse.yml ├── LICENSE ├── pull_request_template.md ├── projects └── project.md ├── Gemfile.lock └── README.md /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.0.0 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-cache 4 | .jekyll-metadata 5 | vendor 6 | .bundle 7 | .idea 8 | -------------------------------------------------------------------------------- /assets/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/pod-3.1.3-portfolio/HEAD/assets/img/logo.jpg -------------------------------------------------------------------------------- /assets/img/mlh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/pod-3.1.3-portfolio/HEAD/assets/img/mlh.jpg -------------------------------------------------------------------------------- /assets/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/pod-3.1.3-portfolio/HEAD/assets/img/.DS_Store -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | We follow the [MLH Code of Conduct](https://mlh.io/code-of-conduct). 4 | -------------------------------------------------------------------------------- /assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/pod-3.1.3-portfolio/HEAD/assets/img/favicon.ico -------------------------------------------------------------------------------- /assets/img/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/pod-3.1.3-portfolio/HEAD/assets/img/portfolio.png -------------------------------------------------------------------------------- /assets/img/social-link.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/pod-3.1.3-portfolio/HEAD/assets/img/social-link.jpg -------------------------------------------------------------------------------- /assets/img/education/uob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/pod-3.1.3-portfolio/HEAD/assets/img/education/uob.png -------------------------------------------------------------------------------- /assets/img/social/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/pod-3.1.3-portfolio/HEAD/assets/img/social/github.png -------------------------------------------------------------------------------- /assets/img/social/tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/pod-3.1.3-portfolio/HEAD/assets/img/social/tumblr.png -------------------------------------------------------------------------------- /assets/img/social/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/pod-3.1.3-portfolio/HEAD/assets/img/social/twitter.png -------------------------------------------------------------------------------- /assets/img/social/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/pod-3.1.3-portfolio/HEAD/assets/img/social/youtube.png -------------------------------------------------------------------------------- /_data/experience.yml: -------------------------------------------------------------------------------- 1 | - role: Pre Fellowship Fellow 2 | company: MLH Fellowship 3 | dates: Summer 2021 4 | logo: fellowship.svg -------------------------------------------------------------------------------- /assets/img/social/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/pod-3.1.3-portfolio/HEAD/assets/img/social/linkedin.png -------------------------------------------------------------------------------- /assets/img/recommendations/tom-goodman.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLH-Fellowship/pod-3.1.3-portfolio/HEAD/assets/img/recommendations/tom-goodman.webp -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | 5 | {% include header.html %} 6 | 7 |
8 | {{ content }} 9 | 10 | 11 | -------------------------------------------------------------------------------- /lighthouserc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | ci: { 3 | collect: { 4 | staticDistDir: './_site', 5 | }, 6 | upload: { 7 | target: 'temporary-public-storage', 8 | } 9 | }, 10 | }; -------------------------------------------------------------------------------- /_data/education.yml: -------------------------------------------------------------------------------- 1 | - course: BSc Computer Science 2 | institute: University of Birmingham 3 | dates: 2018 - 2021 4 | logo: uob.png 5 | 6 | - course: Pre Fellowship Fellow 7 | institute: MLH Fellowship 8 | dates: Summer 2021 9 | logo: fellowship.svg 10 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | gem "jekyll", "~> 4.1.1" 3 | 4 | platforms :mingw, :x64_mingw, :mswin, :jruby do 5 | gem "tzinfo", "~> 1.2" 6 | gem "tzinfo-data" 7 | end 8 | 9 | gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] 10 | 11 | 12 | gem "webrick", "~> 1.7" 13 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | 17 | 18 |Page not found :(
24 |The requested page could not be found.
25 |{{ item.course }}
12 |{{ item.institute }}
13 |{{ item.dates }}
14 |{{ item.role }}
12 |{{ item.company }}
13 |{{ item.dates }}
14 |
6 | Full Name: {{item.name}}
9 |Contact: {{item.number}}
10 |E-mail: {{item.email}}
11 |Fun Fact: {{item.funfact}}
12 |{{item.bio1}}
17 |