This is a Jekyll website template designed for Pre Fellowship Fellows. This will be your first project for your pre-fellowship. You will first build this portfolio website with your peers then use it as a template for yourself.
.
├── _data # files to fill up with your data
├── _includes # HTML files included in the website
├── _layouts # Content Structure Rendering
├── _sass # beauty files
├── assets # Tools, utilities and resume storage
│ ├── css # Configure your UI Colors
│ ├── img # Configurable and stored images
│ └── js # dark mode file
├── projects # Cards container project section
├── _config.yml # Configure your information
├── .gitignore
├── .ruby-version
├── 404.html
├── CODE_OF_CONDUCT.md
├── gemfile
├── gemfile.lock
├── LICENSE
├── README.md
├── index.html
├── lighthousec.js
└── pull_request_template.md
_config.yml
to contain your information.url
to the URL you'll be hosting it atHead to _data
and fill out files projects.yml
, experience.yml
, education.yml
and recommendation.yml
.
Project example.
- title: Machine Learning Project
event: MLH Fellowship Pre Fellowship - Batch 3.5
date: Fall 2020
Experience example.
- role: Pre Fellowship Fellow
company: MLH Fellowship
dates: Summer 2021
logo: fellowship.svg
Education example.
- course: Pre Fellowship Fellow
institute: MLH Fellowship
dates: Summer 2021
logo: fellowship.svg
Recommendation example.
- title: HackTheMidlands
author: Robbie
text: Top Zoom Host
date: Summer 2021
.md
file inside of projects
.page-name
field to your projects.yml
(see below).Top of post markdown file post.
---
title: Project
layout: page
---
projects.yml
with the page-name
field.
- title: Machine Learning Project
event: MLH Fellowship Pre Fellowship - Batch 3.5
date: Summer 2021
page-name: project
Inside the folder /assets add your resume file using .pdf format.
It should be named resume.pdf
. It will be avaliable for download as {name surname} - resume.pdf"
!
Create a Google account if you don't have one
Sign in to your Analytics account
Click Admin
Select an account from the menu in the ACCOUNT column.
Select a property from the menu in the PROPERTY column.
Under PROPERTY, click Tracking Info -> Tracking Code. Your Tracking ID will be displayed at the top of the page
Inside _config.yml
file, simply enter your tracking id under google-analytics
field.
If you get stuck in any of these steps, refer here.
If you want to test it locally or add some new features, run the commands below. Make sure to have Ruby and Bundler (gem install bundler
) installed.
bundle config set --local path 'vendor/bundle'
bundle install
bundle exec jekyll serve --livereload
note: If flag --livereload gives you an error don't use it.