This is a Jekyll website template designed for Pre Fellowship Fellows. During the Pre Fellowship, you'll build a project
- Use the Template button.
- Update
_config.yml
to contain your information.- Change
url
to the URL you'll be hosting it at - Make sure it has the /
- Change
- Use something like Netlify or GitHub Pages to deploy (note, this only works on username.github.io, not username.github.io/repo-name)
Head to _data
and fill out either projects.yml
, experience.yml
and education.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
- Make a new
.md
file inside ofprojects
. - Add the header to your markdown file (see below) and change the title to the name of your blog post.
- Write your project page! Can be a README from GitHub or your Devpost page.
- Add the
page-name
field to yourprojects.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
- Create a formspree account here: https://formspree.io/register
- A verfication mail will be sent to the registered email id. Complete verification before the following steps.
- Click on the new project button and then add new form in the project by providing an appropriate name and a valid email id on which you want to be contacted.
- After the form is created, the form's endpoint can be accessed in the
Integeration
tab. The endpoint would look like : https://formspree.io/f/yadayada - Copy the endpoint url and add it to the
form_url
in_config.yml
file. Example :form_url: "https://formspree.io/f/yadayada"
- All the submissions will be visible on the
Submissions
tab. An email will also be sent by default. If you don't see a submission email, you can switch to theSettings
tab and make sure theEmail Notifications
toggle is on.
-
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 undergoogle-analytics
field.
If you get stuck in any of these steps, refer here.
Head to _data
and fill out either social_media.yml
. Here is an example for your reference:
- link: tel:+19876543210
class: fas fa-phone-square-alt
- link: mailto:fellowship@mlh.io
class: fas fa-envelope
- link: https://twitter.com/
class: fab fa-twitter-square
- link: https://linkedin.com/
class: fab fa-linkedin
- link: https://github.com/MLH-Fellowship
class: fab fa-github
Replace the links with your respective social media links in the following order:
- Phone Number
- GitHub
Note - Please do not change anything in the class
field.
If you want to test it locally or add some new features, run the below commands. Make sure to have Ruby and Bundler installed.
bundle install --path vendor/bundle
bundle exec jekyll serve