A Jekyll-based website providing educational resources for data science students and educators, built with the Feeling Responsive theme.
This site serves as an educational portal for data science, offering:
- Resources for students learning data science
- Materials for educators teaching data science
- Blog posts on data science concepts and events
- FAQs and common questions about the field
- Built with Jekyll 4.3+
- Uses the Feeling Responsive theme
- Mobile-friendly and responsive design
- Includes blog functionality
To run this site locally:
-
Install Jekyll and Bundler:
gem install jekyll bundler
-
Install dependencies:
bundle install
-
Start the Jekyll server:
bundle exec jekyll serve
-
View the site at
http://localhost:4000
Create a new Markdown file in the _posts
directory with the naming convention:
YYYY-MM-DD-title-with-hyphens.md
Include front matter at the top of your post:
---
layout: page
title: "Your Post Title"
date: YYYY-MM-DD
teaser: "A short description of the post"
categories:
- category1
- category2
tags:
- tag1
- tag2
---
Create new pages in the pages
directory with appropriate front matter:
---
layout: page
title: "Page Title"
permalink: "/page-url/"
header:
image_fullwidth: header_image.jpg
---