Skip to content

Commit d09e545

Browse files
committed
Jekyll website
1 parent b06cb8c commit d09e545

File tree

144 files changed

+2184
-988
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+2184
-988
lines changed

404.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: 404
3+
layout: 404
4+
---
5+
6+
The page you're trying to load was not found

Gemfile

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
source "http://rubygems.org"
2+
# Hello! This is where you manage which Jekyll version is used to run.
3+
# When you want to use a different version, change it below, save the
4+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
5+
#
6+
# bundle exec jekyll serve
7+
#
8+
# This will help ensure the proper Jekyll version is running.
9+
# Happy Jekylling!
10+
11+
gem "jekyll"
12+
gem "rack"
13+
gem "webrick"
14+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
15+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
16+
# gem "github-pages", group: :jekyll_plugins
17+
# If you have any plugins, put them here!
18+
group :jekyll_plugins do
19+
gem "jekyll-feed"
20+
gem 'jekyll-admin', "0.9.0"
21+
end
22+
23+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
24+
# and associated library.
25+
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
26+
gem "tzinfo", "~> 1.2"
27+
gem "tzinfo-data"
28+
end
29+
30+
# Performance-booster for watching directories on Windows
31+
gem "wdm", :install_if => Gem.win_platform?

LICENSE

Lines changed: 295 additions & 617 deletions
Large diffs are not rendered by default.

Makefile

Lines changed: 0 additions & 29 deletions
This file was deleted.

README.md

Lines changed: 8 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,8 @@
1-
# cabrillorobotics.github.io
2-
3-
# [cabrillorobotics.org](https://cabrillorobotics.org/)
4-
5-
Site is rendered by Myst Parser from the markdown in the src directory.
6-
7-
## Contribution
8-
9-
1) Make a fork or a branch
10-
11-
2) make your changes on your fork or branch
12-
13-
3) make a pull request with your changes
14-
15-
4) Changes get approved or revised
16-
17-
5) Changes get rendered by github actions and pushed to the live site.
18-
19-
20-
## links
21-
22-
#### parser documentation
23-
24-
https://myst-parser.readthedocs.io/en/latest/intro.html
25-
26-
#### myst admonitions refrence
27-
28-
https://jupyterbook.org/en/stable/reference/cheatsheet.html#admonitions
1+
# Cabrillo Robotics Club
2+
3+
https://cabrilloroboticsclub.github.io/cabrillorobotics.github.io/
4+
5+
## Information
6+
* [Github Pages](https://pages.github.com/)
7+
* [Jekyll](https://jekyllrb.com/)
8+
* [Bulma](https://bulma.io/documentation/)

_config.yml

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
# WhatATheme
2+
markdown: kramdown
3+
4+
# URL of the Site
5+
url: ''
6+
# Base URL of the Site (i.e., Name of the Repository in which the Site is hosted)
7+
baseurl:
8+
9+
# Title of the Site
10+
title: Cabrillo Robotics Club
11+
# Description of the Site
12+
description: Student led robotics club at Cabrillo College in Aptos, California.
13+
# URL of Image of the Site
14+
site-image: /WhatATheme/assets/images/meta.jpg
15+
# Keywords of the Site
16+
site-keywords: Robotics, Cabrillo Robotics Club, Lazer Shark, SeaHawk II, SeaHawk, Hydrozoa, MATE, RoboSub, ROV, AUV
17+
# URL for the Image of custom Favicon
18+
favicon-url:
19+
20+
# URL of the Image of Custom Hero Image (i.e., the image in the background of the very first section of the Homepage)
21+
heroimage: https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/f0905cbecd1b1167085058ae4c5352152cb95fad/assets/images/hero.webp
22+
23+
# Social Media and Contact
24+
# If you don't want to use any icon, you can leave them blank.
25+
26+
facebook_username: /
27+
twitter_username: /
28+
instagram_username: cabrillorobotics
29+
linkedin_username: /
30+
github_username: CabrilloRoboticsClub
31+
youtube_channel_id: UC7C8mbnPujbr6cxQMaxRVWw
32+
reddit_username: /
33+
behance_username: /
34+
dribbble_username: /
35+
spotify_username: /
36+
37+
# Google Analytics
38+
google-analytics: UA-163806439-1
39+
40+
# SASS
41+
sass:
42+
sass_dir: _sass
43+
style: compressed
44+
45+
# Build settings
46+
plugins:
47+
- jekyll-admin
48+
- jekyll-feed
49+
50+
# Permalink
51+
permalink: "blog/:title"
52+
53+
# Compress
54+
compress_html:
55+
clippings: all
56+
57+
# Defaults
58+
defaults:
59+
-
60+
scope:
61+
type: 'posts'
62+
values:
63+
layout: post
64+
post-image: ""
65+
description: ""
66+
tags:
67+
- ""
68+
-
69+
scope:
70+
type: 'pages'
71+
values:
72+
layout: page
73+
74+
# Exclude
75+
exclude:
76+
- .sass-cache/
77+
- .jekyll-cache/
78+
- gemfiles/
79+
- Gemfile
80+
- Gemfile.lock
81+
- node_modules/
82+
- vendor/bundle/
83+
- vendor/cache/
84+
- vendor/gems/
85+
- vendor/ruby/

_data/alumni.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
- name: Isaac Eda
2+
image: https://cdn.pixabay.com/photo/2015/01/08/18/27/startup-593341_960_720.jpg
3+
link:
4+
roles: Electrical (2023 & 2024)
5+
current: SJSU EE
6+
description: blah blah blahls

_data/members.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
- name: Stephanie L'Heureux
2+
image: https://cdn.pixabay.com/photo/2015/01/08/18/27/startup-593341_960_720.jpg
3+
link:
4+
roles: Software & Marketing
5+
description: Stephanie is a sophomore studying CS and mechatronics. She plans to pursue a career in software development for robotics after completing a bachelors and masters program.
6+
- name: Liam Gilligan
7+
link:
8+
image: https://cdn.pixabay.com/photo/2015/01/09/11/08/startup-594090_960_720.jpg
9+
roles: Software
10+
description: Liam is a sophomore studying Math and Physics. He plans to continue his education and pursue a career in research and academia.
11+
- name: Isaac Wax
12+
link:
13+
image: https://cdn.pixabay.com/photo/2016/06/25/12/55/art-1478831_960_720.jpg
14+
roles: Electrical & Mechanical
15+
description: Isaac is going into his third year of an EE degree. He plans to complete a bachelors degree and possibly a masters degree. After school he is interested in the field of robotics.
16+
- name: Rowan Garties
17+
link:
18+
roles: Mechanical
19+
image: https://cdn.pixabay.com/photo/2015/07/17/22/43/student-849822_960_720.jpg
20+
description: Rowan is a sophomore pursuing a bachelors and then a masters in MechE. After school he wants to pursue a career in naval or aerospace engineering.
21+
- name: Massimo Ginella
22+
link:
23+
roles: Software
24+
image: https://cdn.pixabay.com/photo/2016/12/02/02/10/idea-1876659_960_720.jpg
25+
description: Massimo is in his sophomore year studying CS. He plans to transfer to a 4 year institution and pursue Artificial Intelligence development after college. He also loves legos and kitty cats.

_data/mentors.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
- name: Mike Matera
2+
image: https://cdn.pixabay.com/photo/2015/01/08/18/27/startup-593341_960_720.jpg
3+
link:
4+
roles: CIS Chair
5+
description: Blah blah blah
6+
- name: Andrew Thach
7+
link:
8+
image: https://cdn.pixabay.com/photo/2015/01/09/11/08/startup-594090_960_720.jpg
9+
roles: CS Professor
10+
description: Blah

_data/robots.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
- name: Lazer Shark
2+
year: 2025
3+
image: https://cdn.pixabay.com/photo/2015/01/08/18/27/startup-593341_960_720.jpg
4+
page: lazer-shark
5+
- name: SeaHawk II
6+
year: 2024
7+
page: seahawk-II
8+
image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/f8ba704b6eca825e12aac7b4d636e93ff0945417/assets/images/seahawk-II/seahawk-II.jpeg?raw=true
9+
- name: SeaHawk
10+
year: 2023
11+
page: seahawk
12+
image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/f8ba704b6eca825e12aac7b4d636e93ff0945417/assets/images/seahawk/seahawk.jpeg?raw=true
13+
- name: Other Robots
14+
year: More
15+
page:
16+
image: https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/e0b1cf46fd4fb647c4dad56a6bdd2fae43bbefd7/assets/images/hydrozoa/hydrozoa.webp

0 commit comments

Comments
 (0)