diff --git a/.gitignore b/.gitignore
index 1dfd8b9..b59a20a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
venv*/
_build/
_themes/
-
+_site/
diff --git a/404.md b/404.md
new file mode 100644
index 0000000..392573d
--- /dev/null
+++ b/404.md
@@ -0,0 +1,6 @@
+---
+title: 404
+layout: 404
+---
+
+The page you're trying to load was not found
\ No newline at end of file
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..d79593b
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,31 @@
+source "http://rubygems.org"
+# Hello! This is where you manage which Jekyll version is used to run.
+# When you want to use a different version, change it below, save the
+# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
+#
+# bundle exec jekyll serve
+#
+# This will help ensure the proper Jekyll version is running.
+# Happy Jekylling!
+
+gem "jekyll"
+gem "rack"
+gem "webrick"
+# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
+# uncomment the line below. To upgrade, run `bundle update github-pages`.
+# gem "github-pages", group: :jekyll_plugins
+# If you have any plugins, put them here!
+group :jekyll_plugins do
+ gem "jekyll-feed"
+ gem 'jekyll-admin', "0.9.0"
+end
+
+# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
+# and associated library.
+install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
+ gem "tzinfo", "~> 1.2"
+ gem "tzinfo-data"
+end
+
+# Performance-booster for watching directories on Windows
+gem "wdm", :install_if => Gem.win_platform?
diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644
index 0000000..a2d3a30
--- /dev/null
+++ b/Gemfile.lock
@@ -0,0 +1,124 @@
+GEM
+ remote: http://rubygems.org/
+ specs:
+ addressable (2.8.7)
+ public_suffix (>= 2.0.2, < 7.0)
+ backports (3.25.0)
+ colorator (1.1.0)
+ concurrent-ruby (1.3.4)
+ em-websocket (0.5.3)
+ eventmachine (>= 0.12.9)
+ http_parser.rb (~> 0)
+ eventmachine (1.2.7)
+ ffi (1.17.0)
+ ffi (1.17.0-arm64-darwin)
+ ffi (1.17.0-x86_64-darwin)
+ forwardable-extended (2.6.0)
+ google-protobuf (3.25.4)
+ google-protobuf (3.25.4-arm64-darwin)
+ google-protobuf (3.25.4-x86_64-darwin)
+ google-protobuf (3.25.4-x86_64-linux)
+ http_parser.rb (0.8.0)
+ i18n (1.14.5)
+ concurrent-ruby (~> 1.0)
+ jekyll (4.3.3)
+ addressable (~> 2.4)
+ colorator (~> 1.0)
+ em-websocket (~> 0.5)
+ i18n (~> 1.0)
+ jekyll-sass-converter (>= 2.0, < 4.0)
+ jekyll-watch (~> 2.0)
+ kramdown (~> 2.3, >= 2.3.1)
+ kramdown-parser-gfm (~> 1.0)
+ liquid (~> 4.0)
+ mercenary (>= 0.3.6, < 0.5)
+ pathutil (~> 0.9)
+ rouge (>= 3.0, < 5.0)
+ safe_yaml (~> 1.0)
+ terminal-table (>= 1.8, < 4.0)
+ webrick (~> 1.7)
+ jekyll-admin (0.9.0)
+ jekyll (>= 3.3, < 5.0)
+ sinatra (~> 1.4)
+ sinatra-contrib (~> 1.4)
+ jekyll-feed (0.17.0)
+ jekyll (>= 3.7, < 5.0)
+ jekyll-sass-converter (3.0.0)
+ sass-embedded (~> 1.54)
+ jekyll-watch (2.2.1)
+ listen (~> 3.0)
+ kramdown (2.4.0)
+ rexml
+ kramdown-parser-gfm (1.1.0)
+ kramdown (~> 2.0)
+ liquid (4.0.4)
+ listen (3.9.0)
+ rb-fsevent (~> 0.10, >= 0.10.3)
+ rb-inotify (~> 0.9, >= 0.9.10)
+ mercenary (0.4.0)
+ multi_json (1.15.0)
+ pathutil (0.16.2)
+ forwardable-extended (~> 2.6)
+ public_suffix (6.0.1)
+ rack (1.6.13)
+ rack-protection (1.5.5)
+ rack
+ rack-test (2.1.0)
+ rack (>= 1.3)
+ rake (13.2.1)
+ rb-fsevent (0.11.2)
+ rb-inotify (0.11.1)
+ ffi (~> 1.0)
+ rexml (3.3.6)
+ strscan
+ rouge (4.3.0)
+ safe_yaml (1.0.5)
+ sass-embedded (1.69.5)
+ google-protobuf (~> 3.23)
+ rake (>= 13.0.0)
+ sass-embedded (1.69.5-arm64-darwin)
+ google-protobuf (~> 3.23)
+ sass-embedded (1.69.5-x86_64-darwin)
+ google-protobuf (~> 3.23)
+ sinatra (1.4.8)
+ rack (~> 1.5)
+ rack-protection (~> 1.4)
+ tilt (>= 1.3, < 3)
+ sinatra-contrib (1.4.7)
+ backports (>= 2.0)
+ multi_json
+ rack-protection
+ rack-test
+ sinatra (~> 1.4.0)
+ tilt (>= 1.3, < 3)
+ strscan (3.1.0)
+ terminal-table (3.0.2)
+ unicode-display_width (>= 1.1.1, < 3)
+ thread_safe (0.3.6)
+ tilt (2.4.0)
+ tzinfo (1.2.11)
+ thread_safe (~> 0.1)
+ tzinfo-data (1.2024.1)
+ tzinfo (>= 1.0.0)
+ unicode-display_width (2.5.0)
+ wdm (0.2.0)
+ webrick (1.8.1)
+
+PLATFORMS
+ arm64-darwin
+ ruby
+ x86_64-darwin
+ x86_64-linux
+
+DEPENDENCIES
+ jekyll
+ jekyll-admin (= 0.9.0)
+ jekyll-feed
+ rack
+ tzinfo (~> 1.2)
+ tzinfo-data
+ wdm
+ webrick
+
+BUNDLED WITH
+ 2.5.17
diff --git a/LICENSE b/LICENSE
index 0ad25db..d159169 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,620 +1,281 @@
- GNU AFFERO GENERAL PUBLIC LICENSE
- Version 3, 19 November 2007
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
- Copyright (C) 2007 Free Software Foundation, Inc.
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
- The GNU Affero General Public License is a free, copyleft license for
-software and other kinds of works, specifically designed to ensure
-cooperation with the community in the case of network server software.
-
- The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works. By contrast,
-our General Public Licenses are intended to guarantee your freedom to
-share and change all versions of a program--to make sure it remains free
-software for all its users.
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.) You can apply it to
+your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
-them if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs, and that you know you can do these things.
-
- Developers that use our General Public Licenses protect your rights
-with two steps: (1) assert copyright on the software, and (2) offer
-you this License which gives you legal permission to copy, distribute
-and/or modify the software.
-
- A secondary benefit of defending all users' freedom is that
-improvements made in alternate versions of the program, if they
-receive widespread use, become available for other developers to
-incorporate. Many developers of free software are heartened and
-encouraged by the resulting cooperation. However, in the case of
-software used on network servers, this result may fail to come about.
-The GNU General Public License permits making a modified version and
-letting the public access it on a server without ever releasing its
-source code to the public.
-
- The GNU Affero General Public License is designed specifically to
-ensure that, in such cases, the modified source code becomes available
-to the community. It requires the operator of a network server to
-provide the source code of the modified version running there to the
-users of that server. Therefore, public use of a modified version, on
-a publicly accessible server, gives the public access to the source
-code of the modified version.
-
- An older license, called the Affero General Public License and
-published by Affero, was designed to accomplish similar goals. This is
-a different license, not a version of the Affero GPL, but Affero has
-released a new version of the Affero GPL which permits relicensing under
-this license.
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
- TERMS AND CONDITIONS
-
- 0. Definitions.
-
- "This License" refers to version 3 of the GNU Affero General Public License.
-
- "Copyright" also means copyright-like laws that apply to other kinds of
-works, such as semiconductor masks.
-
- "The Program" refers to any copyrightable work licensed under this
-License. Each licensee is addressed as "you". "Licensees" and
-"recipients" may be individuals or organizations.
-
- To "modify" a work means to copy from or adapt all or part of the work
-in a fashion requiring copyright permission, other than the making of an
-exact copy. The resulting work is called a "modified version" of the
-earlier work or a work "based on" the earlier work.
-
- A "covered work" means either the unmodified Program or a work based
-on the Program.
-
- To "propagate" a work means to do anything with it that, without
-permission, would make you directly or secondarily liable for
-infringement under applicable copyright law, except executing it on a
-computer or modifying a private copy. Propagation includes copying,
-distribution (with or without modification), making available to the
-public, and in some countries other activities as well.
-
- To "convey" a work means any kind of propagation that enables other
-parties to make or receive copies. Mere interaction with a user through
-a computer network, with no transfer of a copy, is not conveying.
-
- An interactive user interface displays "Appropriate Legal Notices"
-to the extent that it includes a convenient and prominently visible
-feature that (1) displays an appropriate copyright notice, and (2)
-tells the user that there is no warranty for the work (except to the
-extent that warranties are provided), that licensees may convey the
-work under this License, and how to view a copy of this License. If
-the interface presents a list of user commands or options, such as a
-menu, a prominent item in the list meets this criterion.
-
- 1. Source Code.
-
- The "source code" for a work means the preferred form of the work
-for making modifications to it. "Object code" means any non-source
-form of a work.
-
- A "Standard Interface" means an interface that either is an official
-standard defined by a recognized standards body, or, in the case of
-interfaces specified for a particular programming language, one that
-is widely used among developers working in that language.
-
- The "System Libraries" of an executable work include anything, other
-than the work as a whole, that (a) is included in the normal form of
-packaging a Major Component, but which is not part of that Major
-Component, and (b) serves only to enable use of the work with that
-Major Component, or to implement a Standard Interface for which an
-implementation is available to the public in source code form. A
-"Major Component", in this context, means a major essential component
-(kernel, window system, and so on) of the specific operating system
-(if any) on which the executable work runs, or a compiler used to
-produce the work, or an object code interpreter used to run it.
-
- The "Corresponding Source" for a work in object code form means all
-the source code needed to generate, install, and (for an executable
-work) run the object code and to modify the work, including scripts to
-control those activities. However, it does not include the work's
-System Libraries, or general-purpose tools or generally available free
-programs which are used unmodified in performing those activities but
-which are not part of the work. For example, Corresponding Source
-includes interface definition files associated with source files for
-the work, and the source code for shared libraries and dynamically
-linked subprograms that the work is specifically designed to require,
-such as by intimate data communication or control flow between those
-subprograms and other parts of the work.
-
- The Corresponding Source need not include anything that users
-can regenerate automatically from other parts of the Corresponding
-Source.
-
- The Corresponding Source for a work in source code form is that
-same work.
-
- 2. Basic Permissions.
-
- All rights granted under this License are granted for the term of
-copyright on the Program, and are irrevocable provided the stated
-conditions are met. This License explicitly affirms your unlimited
-permission to run the unmodified Program. The output from running a
-covered work is covered by this License only if the output, given its
-content, constitutes a covered work. This License acknowledges your
-rights of fair use or other equivalent, as provided by copyright law.
-
- You may make, run and propagate covered works that you do not
-convey, without conditions so long as your license otherwise remains
-in force. You may convey covered works to others for the sole purpose
-of having them make modifications exclusively for you, or provide you
-with facilities for running those works, provided that you comply with
-the terms of this License in conveying all material for which you do
-not control copyright. Those thus making or running the covered works
-for you must do so exclusively on your behalf, under your direction
-and control, on terms that prohibit them from making any copies of
-your copyrighted material outside their relationship with you.
-
- Conveying under any other circumstances is permitted solely under
-the conditions stated below. Sublicensing is not allowed; section 10
-makes it unnecessary.
-
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-
- No covered work shall be deemed part of an effective technological
-measure under any applicable law fulfilling obligations under article
-11 of the WIPO copyright treaty adopted on 20 December 1996, or
-similar laws prohibiting or restricting circumvention of such
-measures.
-
- When you convey a covered work, you waive any legal power to forbid
-circumvention of technological measures to the extent such circumvention
-is effected by exercising rights under this License with respect to
-the covered work, and you disclaim any intention to limit operation or
-modification of the work as a means of enforcing, against the work's
-users, your or third parties' legal rights to forbid circumvention of
-technological measures.
-
- 4. Conveying Verbatim Copies.
-
- You may convey verbatim copies of the Program's source code as you
-receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice;
-keep intact all notices stating that this License and any
-non-permissive terms added in accord with section 7 apply to the code;
-keep intact all notices of the absence of any warranty; and give all
-recipients a copy of this License along with the Program.
-
- You may charge any price or no price for each copy that you convey,
-and you may offer support or warranty protection for a fee.
-
- 5. Conveying Modified Source Versions.
-
- You may convey a work based on the Program, or the modifications to
-produce it from the Program, in the form of source code under the
-terms of section 4, provided that you also meet all of these conditions:
-
- a) The work must carry prominent notices stating that you modified
- it, and giving a relevant date.
-
- b) The work must carry prominent notices stating that it is
- released under this License and any conditions added under section
- 7. This requirement modifies the requirement in section 4 to
- "keep intact all notices".
-
- c) You must license the entire work, as a whole, under this
- License to anyone who comes into possession of a copy. This
- License will therefore apply, along with any applicable section 7
- additional terms, to the whole of the work, and all its parts,
- regardless of how they are packaged. This License gives no
- permission to license the work in any other way, but it does not
- invalidate such permission if you have separately received it.
-
- d) If the work has interactive user interfaces, each must display
- Appropriate Legal Notices; however, if the Program has interactive
- interfaces that do not display Appropriate Legal Notices, your
- work need not make them do so.
-
- A compilation of a covered work with other separate and independent
-works, which are not by their nature extensions of the covered work,
-and which are not combined with it such as to form a larger program,
-in or on a volume of a storage or distribution medium, is called an
-"aggregate" if the compilation and its resulting copyright are not
-used to limit the access or legal rights of the compilation's users
-beyond what the individual works permit. Inclusion of a covered work
-in an aggregate does not cause this License to apply to the other
-parts of the aggregate.
-
- 6. Conveying Non-Source Forms.
-
- You may convey a covered work in object code form under the terms
-of sections 4 and 5, provided that you also convey the
-machine-readable Corresponding Source under the terms of this License,
-in one of these ways:
-
- a) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by the
- Corresponding Source fixed on a durable physical medium
- customarily used for software interchange.
-
- b) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by a
- written offer, valid for at least three years and valid for as
- long as you offer spare parts or customer support for that product
- model, to give anyone who possesses the object code either (1) a
- copy of the Corresponding Source for all the software in the
- product that is covered by this License, on a durable physical
- medium customarily used for software interchange, for a price no
- more than your reasonable cost of physically performing this
- conveying of source, or (2) access to copy the
- Corresponding Source from a network server at no charge.
-
- c) Convey individual copies of the object code with a copy of the
- written offer to provide the Corresponding Source. This
- alternative is allowed only occasionally and noncommercially, and
- only if you received the object code with such an offer, in accord
- with subsection 6b.
-
- d) Convey the object code by offering access from a designated
- place (gratis or for a charge), and offer equivalent access to the
- Corresponding Source in the same way through the same place at no
- further charge. You need not require recipients to copy the
- Corresponding Source along with the object code. If the place to
- copy the object code is a network server, the Corresponding Source
- may be on a different server (operated by you or a third party)
- that supports equivalent copying facilities, provided you maintain
- clear directions next to the object code saying where to find the
- Corresponding Source. Regardless of what server hosts the
- Corresponding Source, you remain obligated to ensure that it is
- available for as long as needed to satisfy these requirements.
-
- e) Convey the object code using peer-to-peer transmission, provided
- you inform other peers where the object code and Corresponding
- Source of the work are being offered to the general public at no
- charge under subsection 6d.
-
- A separable portion of the object code, whose source code is excluded
-from the Corresponding Source as a System Library, need not be
-included in conveying the object code work.
-
- A "User Product" is either (1) a "consumer product", which means any
-tangible personal property which is normally used for personal, family,
-or household purposes, or (2) anything designed or sold for incorporation
-into a dwelling. In determining whether a product is a consumer product,
-doubtful cases shall be resolved in favor of coverage. For a particular
-product received by a particular user, "normally used" refers to a
-typical or common use of that class of product, regardless of the status
-of the particular user or of the way in which the particular user
-actually uses, or expects or is expected to use, the product. A product
-is a consumer product regardless of whether the product has substantial
-commercial, industrial or non-consumer uses, unless such uses represent
-the only significant mode of use of the product.
-
- "Installation Information" for a User Product means any methods,
-procedures, authorization keys, or other information required to install
-and execute modified versions of a covered work in that User Product from
-a modified version of its Corresponding Source. The information must
-suffice to ensure that the continued functioning of the modified object
-code is in no case prevented or interfered with solely because
-modification has been made.
-
- If you convey an object code work under this section in, or with, or
-specifically for use in, a User Product, and the conveying occurs as
-part of a transaction in which the right of possession and use of the
-User Product is transferred to the recipient in perpetuity or for a
-fixed term (regardless of how the transaction is characterized), the
-Corresponding Source conveyed under this section must be accompanied
-by the Installation Information. But this requirement does not apply
-if neither you nor any third party retains the ability to install
-modified object code on the User Product (for example, the work has
-been installed in ROM).
-
- The requirement to provide Installation Information does not include a
-requirement to continue to provide support service, warranty, or updates
-for a work that has been modified or installed by the recipient, or for
-the User Product in which it has been modified or installed. Access to a
-network may be denied when the modification itself materially and
-adversely affects the operation of the network or violates the rules and
-protocols for communication across the network.
-
- Corresponding Source conveyed, and Installation Information provided,
-in accord with this section must be in a format that is publicly
-documented (and with an implementation available to the public in
-source code form), and must require no special password or key for
-unpacking, reading or copying.
-
- 7. Additional Terms.
-
- "Additional permissions" are terms that supplement the terms of this
-License by making exceptions from one or more of its conditions.
-Additional permissions that are applicable to the entire Program shall
-be treated as though they were included in this License, to the extent
-that they are valid under applicable law. If additional permissions
-apply only to part of the Program, that part may be used separately
-under those permissions, but the entire Program remains governed by
-this License without regard to the additional permissions.
-
- When you convey a copy of a covered work, you may at your option
-remove any additional permissions from that copy, or from any part of
-it. (Additional permissions may be written to require their own
-removal in certain cases when you modify the work.) You may place
-additional permissions on material, added by you to a covered work,
-for which you have or can give appropriate copyright permission.
-
- Notwithstanding any other provision of this License, for material you
-add to a covered work, you may (if authorized by the copyright holders of
-that material) supplement the terms of this License with terms:
-
- a) Disclaiming warranty or limiting liability differently from the
- terms of sections 15 and 16 of this License; or
-
- b) Requiring preservation of specified reasonable legal notices or
- author attributions in that material or in the Appropriate Legal
- Notices displayed by works containing it; or
-
- c) Prohibiting misrepresentation of the origin of that material, or
- requiring that modified versions of such material be marked in
- reasonable ways as different from the original version; or
-
- d) Limiting the use for publicity purposes of names of licensors or
- authors of the material; or
-
- e) Declining to grant rights under trademark law for use of some
- trade names, trademarks, or service marks; or
-
- f) Requiring indemnification of licensors and authors of that
- material by anyone who conveys the material (or modified versions of
- it) with contractual assumptions of liability to the recipient, for
- any liability that these contractual assumptions directly impose on
- those licensors and authors.
-
- All other non-permissive additional terms are considered "further
-restrictions" within the meaning of section 10. If the Program as you
-received it, or any part of it, contains a notice stating that it is
-governed by this License along with a term that is a further
-restriction, you may remove that term. If a license document contains
-a further restriction but permits relicensing or conveying under this
-License, you may add to a covered work material governed by the terms
-of that license document, provided that the further restriction does
-not survive such relicensing or conveying.
-
- If you add terms to a covered work in accord with this section, you
-must place, in the relevant source files, a statement of the
-additional terms that apply to those files, or a notice indicating
-where to find the applicable terms.
-
- Additional terms, permissive or non-permissive, may be stated in the
-form of a separately written license, or stated as exceptions;
-the above requirements apply either way.
-
- 8. Termination.
-
- You may not propagate or modify a covered work except as expressly
-provided under this License. Any attempt otherwise to propagate or
-modify it is void, and will automatically terminate your rights under
-this License (including any patent licenses granted under the third
-paragraph of section 11).
-
- However, if you cease all violation of this License, then your
-license from a particular copyright holder is reinstated (a)
-provisionally, unless and until the copyright holder explicitly and
-finally terminates your license, and (b) permanently, if the copyright
-holder fails to notify you of the violation by some reasonable means
-prior to 60 days after the cessation.
-
- Moreover, your license from a particular copyright holder is
-reinstated permanently if the copyright holder notifies you of the
-violation by some reasonable means, this is the first time you have
-received notice of violation of this License (for any work) from that
-copyright holder, and you cure the violation prior to 30 days after
-your receipt of the notice.
-
- Termination of your rights under this section does not terminate the
-licenses of parties who have received copies or rights from you under
-this License. If your rights have been terminated and not permanently
-reinstated, you do not qualify to receive new licenses for the same
-material under section 10.
-
- 9. Acceptance Not Required for Having Copies.
-
- You are not required to accept this License in order to receive or
-run a copy of the Program. Ancillary propagation of a covered work
-occurring solely as a consequence of using peer-to-peer transmission
-to receive a copy likewise does not require acceptance. However,
-nothing other than this License grants you permission to propagate or
-modify any covered work. These actions infringe copyright if you do
-not accept this License. Therefore, by modifying or propagating a
-covered work, you indicate your acceptance of this License to do so.
-
- 10. Automatic Licensing of Downstream Recipients.
-
- Each time you convey a covered work, the recipient automatically
-receives a license from the original licensors, to run, modify and
-propagate that work, subject to this License. You are not responsible
-for enforcing compliance by third parties with this License.
-
- An "entity transaction" is a transaction transferring control of an
-organization, or substantially all assets of one, or subdividing an
-organization, or merging organizations. If propagation of a covered
-work results from an entity transaction, each party to that
-transaction who receives a copy of the work also receives whatever
-licenses to the work the party's predecessor in interest had or could
-give under the previous paragraph, plus a right to possession of the
-Corresponding Source of the work from the predecessor in interest, if
-the predecessor has it or can get it with reasonable efforts.
-
- You may not impose any further restrictions on the exercise of the
-rights granted or affirmed under this License. For example, you may
-not impose a license fee, royalty, or other charge for exercise of
-rights granted under this License, and you may not initiate litigation
-(including a cross-claim or counterclaim in a lawsuit) alleging that
-any patent claim is infringed by making, using, selling, offering for
-sale, or importing the Program or any portion of it.
-
- 11. Patents.
-
- A "contributor" is a copyright holder who authorizes use under this
-License of the Program or a work on which the Program is based. The
-work thus licensed is called the contributor's "contributor version".
-
- A contributor's "essential patent claims" are all patent claims
-owned or controlled by the contributor, whether already acquired or
-hereafter acquired, that would be infringed by some manner, permitted
-by this License, of making, using, or selling its contributor version,
-but do not include claims that would be infringed only as a
-consequence of further modification of the contributor version. For
-purposes of this definition, "control" includes the right to grant
-patent sublicenses in a manner consistent with the requirements of
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
this License.
- Each contributor grants you a non-exclusive, worldwide, royalty-free
-patent license under the contributor's essential patent claims, to
-make, use, sell, offer for sale, import and otherwise run, modify and
-propagate the contents of its contributor version.
-
- In the following three paragraphs, a "patent license" is any express
-agreement or commitment, however denominated, not to enforce a patent
-(such as an express permission to practice a patent or covenant not to
-sue for patent infringement). To "grant" such a patent license to a
-party means to make such an agreement or commitment not to enforce a
-patent against the party.
-
- If you convey a covered work, knowingly relying on a patent license,
-and the Corresponding Source of the work is not available for anyone
-to copy, free of charge and under the terms of this License, through a
-publicly available network server or other readily accessible means,
-then you must either (1) cause the Corresponding Source to be so
-available, or (2) arrange to deprive yourself of the benefit of the
-patent license for this particular work, or (3) arrange, in a manner
-consistent with the requirements of this License, to extend the patent
-license to downstream recipients. "Knowingly relying" means you have
-actual knowledge that, but for the patent license, your conveying the
-covered work in a country, or your recipient's use of the covered work
-in a country, would infringe one or more identifiable patents in that
-country that you have reason to believe are valid.
-
- If, pursuant to or in connection with a single transaction or
-arrangement, you convey, or propagate by procuring conveyance of, a
-covered work, and grant a patent license to some of the parties
-receiving the covered work authorizing them to use, propagate, modify
-or convey a specific copy of the covered work, then the patent license
-you grant is automatically extended to all recipients of the covered
-work and works based on it.
-
- A patent license is "discriminatory" if it does not include within
-the scope of its coverage, prohibits the exercise of, or is
-conditioned on the non-exercise of one or more of the rights that are
-specifically granted under this License. You may not convey a covered
-work if you are a party to an arrangement with a third party that is
-in the business of distributing software, under which you make payment
-to the third party based on the extent of your activity of conveying
-the work, and under which the third party grants, to any of the
-parties who would receive the covered work from you, a discriminatory
-patent license (a) in connection with copies of the covered work
-conveyed by you (or copies made from those copies), or (b) primarily
-for and in connection with specific products or compilations that
-contain the covered work, unless you entered into that arrangement,
-or that patent license was granted, prior to 28 March 2007.
-
- Nothing in this License shall be construed as excluding or limiting
-any implied license or other defenses to infringement that may
-otherwise be available to you under applicable patent law.
-
- 12. No Surrender of Others' Freedom.
-
- If conditions are imposed on you (whether by court order, agreement or
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot convey a
-covered work so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you may
-not convey it at all. For example, if you agree to terms that obligate you
-to collect a royalty for further conveying from those to whom you convey
-the Program, the only way you could satisfy both those terms and this
-License would be to refrain entirely from conveying the Program.
-
- 13. Remote Network Interaction; Use with the GNU General Public License.
-
- Notwithstanding any other provision of this License, if you modify the
-Program, your modified version must prominently offer all users
-interacting with it remotely through a computer network (if your version
-supports such interaction) an opportunity to receive the Corresponding
-Source of your version by providing access to the Corresponding Source
-from a network server at no charge, through some standard or customary
-means of facilitating copying of software. This Corresponding Source
-shall include the Corresponding Source for any work covered by version 3
-of the GNU General Public License that is incorporated pursuant to the
-following paragraph.
-
- Notwithstanding any other provision of this License, you have
-permission to link or combine any covered work with a work licensed
-under version 3 of the GNU General Public License into a single
-combined work, and to convey the resulting work. The terms of this
-License will continue to apply to the part which is the covered work,
-but the work with which it is combined will remain governed by version
-3 of the GNU General Public License.
-
- 14. Revised Versions of this License.
-
- The Free Software Foundation may publish revised and/or new versions of
-the GNU Affero General Public License from time to time. Such new versions
-will be similar in spirit to the present version, but may differ in detail to
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
- Each version is given a distinguishing version number. If the
-Program specifies that a certain numbered version of the GNU Affero General
-Public License "or any later version" applies to it, you have the
-option of following the terms and conditions either of that numbered
-version or of any later version published by the Free Software
-Foundation. If the Program does not specify a version number of the
-GNU Affero General Public License, you may choose any version ever published
-by the Free Software Foundation.
-
- If the Program specifies that a proxy can decide which future
-versions of the GNU Affero General Public License can be used, that proxy's
-public statement of acceptance of a version permanently authorizes you
-to choose that version for the Program.
-
- Later license versions may give you additional or different
-permissions. However, no additional obligations are imposed on any
-author or copyright holder as a result of your choosing to follow a
-later version.
-
- 15. Disclaimer of Warranty.
-
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
-APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
-HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
-IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
- 16. Limitation of Liability.
-
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
-THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
-USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES.
-
- 17. Interpretation of Sections 15 and 16.
-
- If the disclaimer of warranty and limitation of liability provided
-above cannot be given local legal effect according to their terms,
-reviewing courts shall apply local law that most closely approximates
-an absolute waiver of all civil liability in connection with the
-Program, unless a warranty or assumption of liability accompanies a
-copy of the Program in return for a fee.
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
@@ -626,36 +287,53 @@ free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
-state the exclusion of warranty; and each file should have at least
+convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
Copyright (C)
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published
- by the Free Software Foundation, either version 3 of the License, or
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
+ GNU General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see .
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Also add information on how to contact you by electronic and paper mail.
- If your software can interact with users remotely through a computer
-network, you should also make sure that it provides a way for users to
-get its source. For example, if your program is a web application, its
-interface could display a "Source" link that leads users to an archive
-of the code. There are many ways you could offer source, and different
-solutions will be better for different programs; see section 13 for the
-specific requirements.
-
- You should also get your employer (if you work as a programmer) or school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.
-For more information on this, and how to apply and follow the GNU AGPL, see
-.
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) year name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ , 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 100e3bb..0000000
--- a/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-# Minimal makefile for Sphinx documentation
-#
-
-# You can set these variables from the command line, and also
-# from the environment for the first two.
-SPHINXOPTS ?=
-SPHINXBUILD ?= sphinx-build
-SOURCEDIR = src/
-BUILDDIR = _build
-
-# Put it first so that "make" without argument is like "make help".
-help:
- @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
-
-.PHONY: help Makefile
-
-# Override the HTML option.
-html: Makefile
- @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
- -mkdir docs/
- cp -R _build/html/* docs/
- echo cabrillorobotics.org > docs/CNAME
- touch docs/.nojekyll
-
-# Catch-all target: route all unknown targets to Sphinx using the new
-# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
-%: Makefile
- @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
- rm -rf docs/
\ No newline at end of file
diff --git a/README.md b/README.md
index 0be605e..ba25243 100644
--- a/README.md
+++ b/README.md
@@ -1,28 +1,8 @@
-# cabrillorobotics.github.io
-
-# [cabrillorobotics.org](https://cabrillorobotics.org/)
-
-Site is rendered by Myst Parser from the markdown in the src directory.
-
-## Contribution
-
-1) Make a fork or a branch
-
-2) make your changes on your fork or branch
-
-3) make a pull request with your changes
-
-4) Changes get approved or revised
-
-5) Changes get rendered by github actions and pushed to the live site.
-
-
-## links
-
-#### parser documentation
-
-https://myst-parser.readthedocs.io/en/latest/intro.html
-
-#### myst admonitions refrence
-
-https://jupyterbook.org/en/stable/reference/cheatsheet.html#admonitions
+# Cabrillo Robotics Club
+
+https://cabrilloroboticsclub.github.io/cabrillorobotics.github.io/
+
+## Information
+* [Github Pages](https://pages.github.com/)
+* [Jekyll](https://jekyllrb.com/)
+* [Bulma](https://bulma.io/documentation/)
\ No newline at end of file
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..64d2046
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,85 @@
+# WhatATheme
+markdown: kramdown
+
+# URL of the Site
+url: ''
+# Base URL of the Site (i.e., Name of the Repository in which the Site is hosted)
+baseurl:
+
+# Title of the Site
+title: Cabrillo Robotics Club
+# Description of the Site
+description: Student led robotics club at Cabrillo College in Aptos, California.
+# URL of Image of the Site
+site-image: /WhatATheme/assets/images/meta.jpg
+# Keywords of the Site
+site-keywords: Robotics, Cabrillo Robotics Club, Lazer Shark, SeaHawk II, SeaHawk, Hydrozoa, MATE, RoboSub, ROV, AUV
+# URL for the Image of custom Favicon
+favicon-url:
+
+# URL of the Image of Custom Hero Image (i.e., the image in the background of the very first section of the Homepage)
+heroimage: https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/f0905cbecd1b1167085058ae4c5352152cb95fad/assets/images/hero.webp
+
+# Social Media and Contact
+# If you don't want to use any icon, you can leave them blank.
+email: cabrillorobotics@gmail.com
+facebook_username: /
+twitter_username: /
+instagram_username: cabrillorobotics
+linkedin_username: /
+github_username: CabrilloRoboticsClub
+youtube_channel_id: UC7C8mbnPujbr6cxQMaxRVWw
+reddit_username: /
+behance_username: /
+dribbble_username: /
+spotify_username: /
+
+# Google Analytics
+google-analytics: UA-163806439-1
+
+# SASS
+sass:
+ sass_dir: _sass
+ style: compressed
+
+# Build settings
+plugins:
+ - jekyll-admin
+ - jekyll-feed
+
+# Permalink
+permalink: "blog/:title"
+
+# Compress
+compress_html:
+ clippings: all
+
+# Defaults
+defaults:
+ -
+ scope:
+ type: 'posts'
+ values:
+ layout: post
+ post-image: ""
+ description: ""
+ tags:
+ - ""
+ -
+ scope:
+ type: 'pages'
+ values:
+ layout: page
+
+# Exclude
+exclude:
+ - .sass-cache/
+ - .jekyll-cache/
+ - gemfiles/
+ - Gemfile
+ - Gemfile.lock
+ - node_modules/
+ - vendor/bundle/
+ - vendor/cache/
+ - vendor/gems/
+ - vendor/ruby/
diff --git a/_data/alumni.yml b/_data/alumni.yml
new file mode 100644
index 0000000..eb3f36e
--- /dev/null
+++ b/_data/alumni.yml
@@ -0,0 +1,6 @@
+- name: Isaac Eda
+ image: https://cdn.pixabay.com/photo/2015/01/08/18/27/startup-593341_960_720.jpg
+ link:
+ roles: Electrical & Pilot (2023 & 2024)
+ current: SJSU EE
+ description: Isaac is currently studying at San Jose State pursuing a degree in Electrical Engineering. In the future, he hopes to work on electric vehicles.
\ No newline at end of file
diff --git a/_data/members.yml b/_data/members.yml
new file mode 100644
index 0000000..3bec09c
--- /dev/null
+++ b/_data/members.yml
@@ -0,0 +1,25 @@
+- name: Stephanie L'Heureux
+ image: https://cdn.pixabay.com/photo/2015/01/08/18/27/startup-593341_960_720.jpg
+ link:
+ roles: Software & Marketing
+ 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.
+- name: Liam Gilligan
+ link:
+ image: https://cdn.pixabay.com/photo/2015/01/09/11/08/startup-594090_960_720.jpg
+ roles: Software
+ description: Liam is a sophomore studying Math and Physics. He plans to continue his education and pursue a career in research and academia.
+- name: Isaac Wax
+ link:
+ image: https://cdn.pixabay.com/photo/2016/06/25/12/55/art-1478831_960_720.jpg
+ roles: Electrical & Mechanical
+ 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.
+- name: Rowan Garties
+ link:
+ roles: Mechanical
+ image: https://cdn.pixabay.com/photo/2015/07/17/22/43/student-849822_960_720.jpg
+ 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.
+- name: Massimo Ginella
+ link:
+ roles: Software
+ image: https://cdn.pixabay.com/photo/2016/12/02/02/10/idea-1876659_960_720.jpg
+ 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.
\ No newline at end of file
diff --git a/_data/mentors.yml b/_data/mentors.yml
new file mode 100644
index 0000000..55a1a82
--- /dev/null
+++ b/_data/mentors.yml
@@ -0,0 +1,10 @@
+- name: Mike Matera
+ image: https://cdn.pixabay.com/photo/2015/01/08/18/27/startup-593341_960_720.jpg
+ link:
+ roles: CIS Chair
+ description: Blah blah blah
+- name: Andrew Thach
+ link:
+ image: https://cdn.pixabay.com/photo/2015/01/09/11/08/startup-594090_960_720.jpg
+ roles: CS Professor
+ description: Blah
\ No newline at end of file
diff --git a/_data/robots.yml b/_data/robots.yml
new file mode 100644
index 0000000..94bd605
--- /dev/null
+++ b/_data/robots.yml
@@ -0,0 +1,16 @@
+- name: Lazer Shark
+ year: 2025
+ image: https://cdn.pixabay.com/photo/2015/01/08/18/27/startup-593341_960_720.jpg
+ page: lazer-shark
+- name: SeaHawk II
+ year: 2024
+ page: seahawk-II
+ image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/f8ba704b6eca825e12aac7b4d636e93ff0945417/assets/images/seahawk-II/seahawk-II.jpeg?raw=true
+- name: SeaHawk
+ year: 2023
+ page: seahawk
+ image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/f8ba704b6eca825e12aac7b4d636e93ff0945417/assets/images/seahawk/seahawk.jpeg?raw=true
+- name: Other Robots
+ year: More
+ page:
+ image: https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/e0b1cf46fd4fb647c4dad56a6bdd2fae43bbefd7/assets/images/hydrozoa/hydrozoa.webp
diff --git a/_data/socials.yml b/_data/socials.yml
new file mode 100644
index 0000000..cccc5e1
--- /dev/null
+++ b/_data/socials.yml
@@ -0,0 +1,9 @@
+- name: "CabrilloRoboticsClub"
+ link: https://github.com/CabrilloRoboticsClub
+ icon: github
+- name: "cabrillorobotics"
+ link: https://www.instagram.com/cabrillorobotics/
+ icon: instagram
+- name: "cabrillorobotics6167"
+ link: https://www.youtube.com/channel/UC7C8mbnPujbr6cxQMaxRVWw
+ icon: youtube
diff --git a/_data/team-imgs.yml b/_data/team-imgs.yml
new file mode 100644
index 0000000..902b252
--- /dev/null
+++ b/_data/team-imgs.yml
@@ -0,0 +1,4 @@
+- https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/41309abdbb5d93dbc6c0119bf8f97a3bb38ad743/assets/images/seahawk-II/gallery-seahawk-II/interview.webp
+- https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/41309abdbb5d93dbc6c0119bf8f97a3bb38ad743/assets/images/seahawk-II/gallery-seahawk-II/stack.webp
+- https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk-II/gallery-seahawk-II/deploy.jpeg?raw=true
+- https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/782b579c031c16835e0fee2b57a22246c1a79618/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot-2.webp
\ No newline at end of file
diff --git a/_includes/about.html b/_includes/about.html
new file mode 100644
index 0000000..7ce727f
--- /dev/null
+++ b/_includes/about.html
@@ -0,0 +1,24 @@
+
+
+
+ About Us
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+ Viverra habitasse quis cras sem etiam aptent ad. Orci nam praesent proin faucibus faucibus libero augue euismod. Nascetur fusce vestibulum tempus natoque nulla suscipit ultrices porta iaculis. Aauctor tristique enim vitae sem accumsan. Etiam ipsum risus ligula dictum nunc consequat senectus aenean. Tempus natoque aenean, tempor fermentum suspendisse dui varius nam.
+
\ No newline at end of file
diff --git a/_includes/blogpage-heading.html b/_includes/blogpage-heading.html
new file mode 100644
index 0000000..0f883ff
--- /dev/null
+++ b/_includes/blogpage-heading.html
@@ -0,0 +1,13 @@
+
+
\ No newline at end of file
diff --git a/_includes/contact.html b/_includes/contact.html
new file mode 100644
index 0000000..eb000d8
--- /dev/null
+++ b/_includes/contact.html
@@ -0,0 +1,63 @@
+
+
\ No newline at end of file
diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100644
index 0000000..6a89c23
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1,28 @@
+
diff --git a/_includes/head.html b/_includes/head.html
new file mode 100644
index 0000000..e5ebd09
--- /dev/null
+++ b/_includes/head.html
@@ -0,0 +1,8 @@
+
+ {% include meta.html %}
+ {{site.title}}
+
+
+
+
+
\ No newline at end of file
diff --git a/_includes/latest-project.html b/_includes/latest-project.html
new file mode 100644
index 0000000..2026e6c
--- /dev/null
+++ b/_includes/latest-project.html
@@ -0,0 +1,26 @@
+
+
+
+ Meet SeaHawk II
+
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+ Lorem ipsum odor amet, consectetuer adipiscing elit. Maecenas sollicitudin dapibus; vestibulum et blandit pellentesque augue volutpat. Magna sodales ornare nascetur fermentum arcu diam. Lacus consequat mollis condimentum parturient magnis rutrum imperdiet egestas. Ad nisi vestibulum at cubilia bibendum eu consectetur. Pellentesque venenatis parturient suscipit vel iaculis etiam. Alorem pulvinar porta est natoque augue dictum. Proin rutrum tristique dictum ultricies lectus tellus phasellus. Facilisis lectus quisque tristique ut duis ultrices himenaeos dictum. Magnis ex porta porta, nullam tempus laoreet.
+
\ No newline at end of file
diff --git a/_includes/project-gallery-card.html b/_includes/project-gallery-card.html
new file mode 100644
index 0000000..9229eec
--- /dev/null
+++ b/_includes/project-gallery-card.html
@@ -0,0 +1,10 @@
+
+ {% for image in page.gallery %}
+
+
+
+
+
+ {% endfor %}
+
\ No newline at end of file
diff --git a/_includes/project-gallery.html b/_includes/project-gallery.html
new file mode 100644
index 0000000..5397e57
--- /dev/null
+++ b/_includes/project-gallery.html
@@ -0,0 +1,9 @@
+
+
+
+ Gallery
+
+
+ {% include project-gallery-card.html %}
+
+
\ No newline at end of file
diff --git a/_includes/project-showcase.html b/_includes/project-showcase.html
new file mode 100644
index 0000000..c7cd468
--- /dev/null
+++ b/_includes/project-showcase.html
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/_includes/robot-card.html b/_includes/robot-card.html
new file mode 100644
index 0000000..d6ae075
--- /dev/null
+++ b/_includes/robot-card.html
@@ -0,0 +1,14 @@
+
diff --git a/_includes/robots.html b/_includes/robots.html
new file mode 100644
index 0000000..b910c1b
--- /dev/null
+++ b/_includes/robots.html
@@ -0,0 +1,9 @@
+
+
+
+ Robots
+
+
+ {% include robot-card.html %}
+
+
\ No newline at end of file
diff --git a/_includes/search.html b/_includes/search.html
new file mode 100644
index 0000000..8f8ab85
--- /dev/null
+++ b/_includes/search.html
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/_includes/showcase.html b/_includes/showcase.html
new file mode 100644
index 0000000..c0a0788
--- /dev/null
+++ b/_includes/showcase.html
@@ -0,0 +1,16 @@
+
+
+
\ No newline at end of file
diff --git a/_includes/sponsors.html b/_includes/sponsors.html
new file mode 100644
index 0000000..e69de29
diff --git a/_includes/team-alumni-card.html b/_includes/team-alumni-card.html
new file mode 100644
index 0000000..fd35055
--- /dev/null
+++ b/_includes/team-alumni-card.html
@@ -0,0 +1,72 @@
+
+
+ {% for alum in site.data.alumni %}
+
+
+
+
+
+
{{ alum.name }}
+
{{ alum.current }}
+
+
+
+
+ {% endfor %}
+
+
+
+
+ ×
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/_includes/team-member-card.html b/_includes/team-member-card.html
new file mode 100644
index 0000000..d901293
--- /dev/null
+++ b/_includes/team-member-card.html
@@ -0,0 +1,68 @@
+
+
+ {% for member in site.data.members %}
+
+
+
+
+
+
{{ member.name }}
+
{{ member.roles }}
+
+
+
+
+ {% endfor %}
+
+
+
+
+ ×
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/_includes/team-mentor-card.html b/_includes/team-mentor-card.html
new file mode 100644
index 0000000..98ef836
--- /dev/null
+++ b/_includes/team-mentor-card.html
@@ -0,0 +1,68 @@
+
+
+ {% for mentor in site.data.mentors %}
+
+
+
+
+
+
{{ mentor.name }}
+
{{ mentor.roles }}
+
+
+
+
+ {% endfor %}
+
+
+
+
+ ×
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/_includes/team-showcase.html b/_includes/team-showcase.html
new file mode 100644
index 0000000..0e10e6c
--- /dev/null
+++ b/_includes/team-showcase.html
@@ -0,0 +1,40 @@
+
+
+
+
+ {% include footer.html %}
+
+
+
+
\ No newline at end of file
diff --git a/_layouts/project-page.html b/_layouts/project-page.html
new file mode 100644
index 0000000..a50a4dc
--- /dev/null
+++ b/_layouts/project-page.html
@@ -0,0 +1,17 @@
+---
+layout: compress
+---
+
+
+
+
+ {% include head.html %}
+
+
+ {% include navbar.html %}
+ {% include project-showcase.html %}
+ {% include project-summary.html %}
+ {% include project-gallery.html %}
+ {% include footer.html %}
+
+
diff --git a/_layouts/project.html b/_layouts/project.html
new file mode 100644
index 0000000..e49aa29
--- /dev/null
+++ b/_layouts/project.html
@@ -0,0 +1,32 @@
+---
+layout: compress
+---
+
+
+
+
+
+ {% include head.html %}
+
+
+
+ {% include navbar.html %}
+
+
+
+
+
+
+
Projects
+
+ {% include project-card.html %}
+
+
+
+
+
+
+ {% include footer.html %}
+
+
+
\ No newline at end of file
diff --git a/_layouts/sponsors.html b/_layouts/sponsors.html
new file mode 100644
index 0000000..e69de29
diff --git a/_layouts/team.html b/_layouts/team.html
new file mode 100644
index 0000000..416ece9
--- /dev/null
+++ b/_layouts/team.html
@@ -0,0 +1,40 @@
+---
+layout: compress
+---
+
+
+
+
+
+ {% include head.html %}
+
+
+
+ {% include navbar.html %}
+ {% include team-showcase.html %}
+
+
+
+
+ Cabrillo Robotics Club (CRC) is a dedicated team of students from Cabrillo College in Aptos, California united by a mutual passion for robotics. We design and engineer cutting-edge solutions, drawing from the diverse experience and knowledge of our interdisciplinary members. The team is structured into four specialized subteams: Electrical, Mechanical, Software, and Marketing. This decentralized approach fosters autonomy within each division, allowing members to focus on their areas of expertise, while working collaboratively to create innovative and reliable robotic systems.
+
+
+
+ Members
+
+ {% include team-member-card.html %}
+
+ Mentors
+
+ {% include team-mentor-card.html %}
+
+ Alumni
+
+ {% include team-alumni-card.html %}
+
+
+
+ {% include footer.html %}
+
+
+
\ No newline at end of file
diff --git a/_posts/2024-06-23-cabrillo-robotics-wins-international-robotics-competition.md b/_posts/2024-06-23-cabrillo-robotics-wins-international-robotics-competition.md
new file mode 100644
index 0000000..20f1a30
--- /dev/null
+++ b/_posts/2024-06-23-cabrillo-robotics-wins-international-robotics-competition.md
@@ -0,0 +1,24 @@
+---
+title: Cabrillo Robotics Wins International Robotics Competition
+layout: post
+post-image: "https://raw.githubusercontent.com/thedevslot/WhatATheme/master/assets/images/SamplePost.png?token=AHMQUEPC4IFADOF5VG4QVN26Z64GG"
+description: The Cabrillo Robotics Club achieved an impressive victory, taking home First Place in the most advanced category of the Marine Advanced Technology Education (MATE) World Championship.
+tags:
+- MATE
+- ROV
+- Seahawk II
+---
+
+The Cabrillo Robotics Club achieved an impressive victory, taking home First Place in the most advanced category of the Marine Advanced Technology Education (MATE) World Championship. Held in Kingsport, TN from June 20-22 2024, the competition gathered 82 teams from 17 countries to showcase advancements in underwater robotics.
+
+The MATE competition challenges teams worldwide to build Remotely Operated Vehicles (ROVs). These tethered, submersible robots perform observation, inspection, and physical tasks in various aquatic environments. Competing teams must build an ROV capable of executing simulated industry applications in a product demonstration. They also showcase their robot's functionality and design rationale through marketing, technical documentation, and an engineering presentation.
+
+Cabrillo Robotics has competed in the MATE Pioneer Division and achieved first place at the World Championship the last two consecutive years. This year, the club built a completely redesigned ROV to tackle the challenges in the most advanced class of the competition–Explorer.
+The small team dedicated nearly a year to constructing an originally designed ROV, the SeaHawk II. Members developed fully custom software and hardware solutions resulting in a reliable vehicle capable of rapidly completing competition mission tasks. SeaHawk II stands as a testament to the mechanical, electrical, and software engineering skills of the team, with members from each specialty collaborating seamlessly to produce a professional-grade final product. Isaac Wax, Hardware Lead, commented “We believe in doing things the right way, not the easy way. Rather than settle for good enough, low-risk solutions, we executed innovative, high-risk designs across mechanical, electrical and software systems using cross-integration techniques yielding a streamlined, high-performance ROV. I believe that our team’s perseverance sticking to these values paid off to make Seahawk II a World Champion.” Cabrillo Robotics plans on making all components of the robot open source on [GitHub](https://github.com/CabrilloRoboticsClub).
+
+After more than 4500 hours of intensive design, manufacturing, and testing, five members of the Cabrillo Robotics team and their robot traveled 4080 km across the country to Kingsport, TN. They engaged in several days of rigorous events. Thanks to many hours of practice and exceptional piloting, they achieved impressive scores in the product demonstrations. Pilot, Isaac Eda, noted that, “a strength of this year’s ROV was its unique control systems that made it possible for me to navigate the tasks in record time.” Much thought and effort was put into maximizing the controllability of the robot. Both the hardware and software teams worked together to ensure piloting the ROV was as efficient and reliable as possible. During their presentation, judges noted the craftsmanship of the robot and were intrigued by the unique mechanical design choices. Additionally, the custom electronics stack and pilot dashboard received high praise for their ingenuity and impressive design.
+
+After the events concluded, Cabrillo Robotics Club celebrated another remarkable victory, securing first place overall in the most advanced category of the competition. This triumph is particularly impressive given the team's unique challenges and achievements. Competing for the first time in the Explorer Division with a completely redesigned ROV, this small team of community college students outperformed university teams from around the world.
+Participation in the MATE ROV competition over the years has provided learning and training that have shaped Cabrillo Robotic Team members into engineers soon to enter the workforce and move onto higher education. “Participating in MATE competitions provided us with the unique opportunity to develop invaluable technical and interpersonal skills” says President Stephanie L’Heureux, “We all hope to continue to be involved with MATE as mentors to future generations of students to share this valuable learning experience.”
+
+After winning first place in their division of the MATE competition for three consecutive years, the Cabrillo Robotics Club is excited to conquer a new challenge for the 2024-2025 season. “The Cabrillo Robotics Club values the MATE ROV competition for its chance to explore our limits, take risks, and devise unconventional solutions to problems,” says Rowan Garites. “...however, we are ready to venture into new territory, the RoboSub competition appears to be a logical next step for us. It will definitely be challenging, our software, mechanical, and electrical teams will have their work cut out for them. Constructing an autonomous vehicle without a tether makes the engineering process exponentially more difficult,” adds Stephanie L’Heureux. RoboSub challenges teams worldwide to design and build Autonomous Underwater Vehicles (AUVs). Cabrillo Robotics Club is eager to participate in next year’s RoboSub competition and is actively seeking donations and sponsors for support.
\ No newline at end of file
diff --git a/_sass/main.scss b/_sass/main.scss
new file mode 100644
index 0000000..a4266ab
--- /dev/null
+++ b/_sass/main.scss
@@ -0,0 +1,86 @@
+@charset "utf-8";
+@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
+@import url('https://cdn.jsdelivr.net/npm/bulma@0.8.2/css/bulma.min.css');
+$primary: hsl(254, 91%, 71%);
+
+
+// $accent: #9172f8;
+// $accent-invert: findColorInvert($accent);
+// $custom-colors: ("accent": ($accent, $accent-invert));
+
+// #7762bd
+
+:root {
+ --bulma-primary-h: 254deg;
+ --bulma-primary-s: 91%;
+ --bulma-primary-l: 71%;
+}
+
+
+html,
+body {
+ font-family: 'Poppins', sans-serif;
+ scroll-behavior: smooth !important;
+ transition: all 0.25s ease;
+}
+
+/* width */
+::-webkit-scrollbar {
+ width: 0.5vmax !important;
+}
+
+/* Track */
+::-webkit-scrollbar-track {
+ background: white !important;
+}
+
+/* Handle */
+::-webkit-scrollbar-thumb {
+ background: #363636 !important;
+}
+
+/* Handle on hover */
+::-webkit-scrollbar-thumb:hover {
+ background: black !important;
+}
+
+::placeholder {
+ font-family: 'Poppins', sans-serif;
+}
+
+#navbar {
+ .navbar-burger {
+ span:nth-child(2) {
+ left: calc(50%);
+ width: 8px;
+ }
+ }
+}
+
+.is-active {
+ font-weight: bold;
+}
+
+.columns {
+ .button {
+ margin: 0.5rem !important;
+ }
+}
+
+hr {
+ margin: 1rem auto;
+ height: 1px;
+}
+
+.column {
+ margin: auto 0.5rem;
+ padding: 0.5rem;
+}
+
+.searchResult {
+ a {
+ .title {
+ text-decoration: underline;
+ }
+ }
+}
diff --git a/_site/404.html b/_site/404.html
new file mode 100644
index 0000000..fc704dd
--- /dev/null
+++ b/_site/404.html
@@ -0,0 +1 @@
+ Cabrillo Robotics Club | 404Cabrillo Robotics Club
diff --git a/_site/LICENSE b/_site/LICENSE
new file mode 100644
index 0000000..d159169
--- /dev/null
+++ b/_site/LICENSE
@@ -0,0 +1,339 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) year name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ , 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
diff --git a/_site/README.md b/_site/README.md
new file mode 100644
index 0000000..ba25243
--- /dev/null
+++ b/_site/README.md
@@ -0,0 +1,8 @@
+# Cabrillo Robotics Club
+
+https://cabrilloroboticsclub.github.io/cabrillorobotics.github.io/
+
+## Information
+* [Github Pages](https://pages.github.com/)
+* [Jekyll](https://jekyllrb.com/)
+* [Bulma](https://bulma.io/documentation/)
\ No newline at end of file
diff --git a/_site/assets/css/style.css b/_site/assets/css/style.css
new file mode 100644
index 0000000..bfb18c1
--- /dev/null
+++ b/_site/assets/css/style.css
@@ -0,0 +1 @@
+@import"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";@import"https://cdn.jsdelivr.net/npm/bulma@0.8.2/css/bulma.min.css";:root{--bulma-primary-h: 254deg;--bulma-primary-s: 91%;--bulma-primary-l: 71%}html,body{font-family:"Poppins",sans-serif;scroll-behavior:smooth !important;transition:all .25s ease}::-webkit-scrollbar{width:.5vmax !important}::-webkit-scrollbar-track{background:#fff !important}::-webkit-scrollbar-thumb{background:#363636 !important}::-webkit-scrollbar-thumb:hover{background:#000 !important}::placeholder{font-family:"Poppins",sans-serif}#navbar .navbar-burger span:nth-child(2){left:50%;width:8px}.is-active{font-weight:bold}.columns .button{margin:.5rem !important}hr{margin:1rem auto;height:1px}.column{margin:auto .5rem;padding:.5rem}.searchResult a .title{text-decoration:underline}:root{--primary: #9172f8;--background: #121212;--background-secondary: #242424;--header: #f5f5f5;--text: #a2a2a2;--seahawk-II: #fe5e20;--seahawk: #79bde8;--hydrozoa: #3961e2}p{color:var(--text)}.title{color:var(--header)}body{background-color:var(--background)}#navbar{background-color:rgba(3,3,3,.9);color:var(--text)}#navbar .website-title{color:var(--header)}#navbar .is-active{font-weight:600;background-color:rgba(0,0,0,0)}#navbar .navbar-link{background-color:rgba(0,0,0,0) !important}#navbar .navbar-dropdown{background-color:rgba(3,3,3,.9);border:none;border-radius:0 0 10px 10px;right:0;left:auto}#navbar a.navbar-item:hover,#navbar .navbar-link:hover{background-color:rgba(0,0,0,0) !important;color:var(--primary) !important}#navbar a.navbar-item.is-active{color:var(--primary) !important}#navbar .navbar-link:not(.is-arrowless)::after{border-color:var(--text)}#navbar .navbar-menu.is-active{background-color:rgba(3,3,3,.9)}#navbar .navbar-item:hover{background-color:rgba(0,0,0,0)}#showcase{background:var(--background);position:relative}#showcase::before{filter:grayscale(100%);background-image:url("https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/f0905cbecd1b1167085058ae4c5352152cb95fad/assets/images/hero.webp");background-position:center;background-repeat:no-repeat;background-size:cover;background-attachment:fixed;top:0px;right:0px;bottom:0px;left:0px;position:absolute;content:"";z-index:1}#showcase::after{background-color:rgba(0,0,0,.7);top:0px;right:0px;bottom:0px;left:0px;position:absolute;content:"";z-index:2}#showcase .title,#showcase .subtitle,#showcase .button{position:relative;z-index:3}#showcase .title{margin:auto .75rem !important}#showcase .subtitle{letter-spacing:.25rem}#showcase .button{background-color:rgba(0,0,0,0);border-color:var(--primary);color:var(--primary)}#showcase .button:hover{background-color:var(--primary);border-color:var(--primary);color:var(--header)}#project-showcase{position:relative;height:50vh;background:var(--background)}#project-showcase .hero-background{width:100%;height:100%;background-size:cover;background-position:center;position:relative}#project-showcase .overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);display:flex;align-items:flex-end;justify-content:flex-start;padding:2rem}#project-showcase .title-text{text-align:left}#project-showcase .title-text h1,#project-showcase .title-text h3{margin:0}#project-gallery #project-gallery-card{position:relative}#project-gallery #project-gallery-card .image{position:relative;background-size:cover;background-position:center;border-radius:10px;overflow:hidden}#about .buttons{color:var(--primary) !important;display:flex;justify-content:space-between;flex-wrap:wrap}#about .buttons a{color:var(--primary) !important;border-color:var(--primary) !important;background-color:rgba(0,0,0,0);flex:1;text-align:center;max-width:20vw;min-width:10vw}#about .buttons a:hover{color:var(--header) !important;background-color:var(--primary);border-color:var(--primary) !important;flex:1;text-align:center;max-width:20vw;min-width:10vw}@media(max-width: 768px){#about .buttons{flex-direction:column;justify-content:center;align-items:center}#about .buttons a{width:90%;max-width:90%;margin:0 auto;margin-bottom:1rem}}#robots #robot-card{position:relative}#robots #robot-card .image{position:relative;background-size:cover;background-position:center;border-radius:10px;overflow:hidden;transition:filter .5s ease,transform .5s ease;filter:grayscale(100%)}#robots #robot-card .image::before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.7);pointer-events:none}#robots #robot-card .overlay{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;pointer-events:none;transition:opacity .5s ease}#robots #robot-card .robot-link:hover .image{filter:grayscale(0%)}#robots #robot-card .robot-link:hover .image::before{opacity:20}#robots #robot-card h2{transition:opacity .5s ease;color:var(--primary) !important}#robots #robot-card h2,#robots #robot-card p{z-index:2;position:relative;transition:opacity .5s ease;pointer-events:none}#robots #robot-card .robot-link:hover h2{color:var(--header) !important}#blog .hero-body{padding:3rem .25rem 1rem .25rem}#blog .container{margin:1.5rem auto}#blog #blog-card{transition:all .25s ease;margin-bottom:.5vmax;transform:scale(0.85);margin-right:2.5vmax;margin-left:2.5vmax;line-height:normal;border-radius:.25rem;-webkit-box-shadow:0px 0px 15px 0px rgba(0,0,0,.1);-moz-box-shadow:0px 0px 15px 0px rgba(0,0,0,.1);box-shadow:0px 0px 15px 0px rgba(0,0,0,.1)}#blog #blog-card:hover{transform:scale(0.875);-webkit-box-shadow:0px 0px 30px 0px rgba(0,0,0,.25);-moz-box-shadow:0px 0px 30px 0px rgba(0,0,0,.25);box-shadow:0px 0px 30px 0px rgba(0,0,0,.25)}@media(max-width: 768px){#blog #blog-card{transform:scale(1);margin-bottom:5vmax !important}#blog #blog-card:hover{transform:scale(1.025);margin-bottom:5vmax !important;-webkit-box-shadow:0px 0px 30px 0px rgba(0,0,0,.25);-moz-box-shadow:0px 0px 30px 0px rgba(0,0,0,.25);box-shadow:0px 0px 30px 0px rgba(0,0,0,.25)}#blog #blog-card .image{padding-top:50% !important}}#blog #blog-card .title{margin:.5rem !important}#blog #blog-card .content{margin:.5rem}#blog #blog-card .column{display:grid}#blog #blog-card .column .image{border-radius:.25rem;background-position:center;background-repeat:no-repeat;background-size:cover}#search{border-bottom:.15rem solid}#search input{border:none;outline:none;font-weight:500 !important}#search input::placeholder{font-weight:500;color:gray;letter-spacing:.25rem}#search .button{transition:all .25s ease;border:none}#search .button:focus{outline:.25rem solid #ede5f2}#footer{padding:2rem 0;background-color:var(--header) !important}#footer .columns{display:flex;justify-content:space-between}#footer .column{margin-bottom:1.5rem;display:flex;flex-direction:column;align-items:flex-start}#footer .socials{display:flex;flex-direction:column;align-items:flex-start}#footer .social-link{display:flex;align-items:center;margin-bottom:.5rem;color:var(--background);text-decoration:none}#footer .social-link i{margin-right:.5rem;font-size:1.5rem}@media(min-width: 769px){#footer .column{margin-left:2rem;margin-right:2rem}}#footer .social-link,#footer .address-link{display:block;margin-bottom:.5rem}#footer .social-link:hover,#footer .address-link:hover{color:var(--primary)}#project .columns .column{border-radius:.5rem}#project .columns .column .image{background-position:center;background-repeat:no-repeat;background-size:cover}#project #project-card{-webkit-box-shadow:0px 0px 15px 0px rgba(0,0,0,.1);-moz-box-shadow:0px 0px 15px 0px rgba(0,0,0,.1);box-shadow:0px 0px 15px 0px rgba(0,0,0,.1);transform:scale(0.95);transition:all .5s ease;margin-bottom:.5rem !important;display:inline-table}#project #project-card:hover{transform:scale(0.975)}#project .card{transition:all .25s ease}#project .card:hover{background-color:rgba(17,17,19,.9) !important}#team .description{min-height:25vh}#team .columns{margin-top:20px}#team .columns .column{margin-bottom:20px}#team .columns .column .image{border-radius:10px 10px 0 0;overflow:hidden}#team .card{transition:all .25s ease;border-radius:10px;overflow:hidden;background-color:var(--background-secondary)}#team .person-card:hover{transform:scale(1.05)}#team .person-image{background-size:cover;background-position:center;border-radius:10px}#team .popup{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;z-index:1000}#team .popup.active{display:flex}#team .popup-content{background-color:var(--background-secondary);padding:20px;border-radius:10px;display:flex;align-items:flex-start;max-width:60vh;max-height:80vh;width:90%;overflow:auto}#team .popup-close{position:absolute;top:10px;right:20px;font-size:30px;cursor:pointer;color:var(--header)}#team .popup-image-container{flex:0 0 50%;margin-right:20px}#team .popup-image-container img{width:100%;height:auto;max-height:60vh;object-fit:cover;border-radius:10px}#team .popup-text{flex:1}#team .popup h2,#team .popup p{margin:10px 0;text-align:left}#team .popup h2{color:var(--header);font-weight:bold}#members{scroll-margin-top:60px}#team-showcase{position:relative;height:75vh;background:var(--background)}#team-showcase .hero-background{width:100%;height:100%;background-size:cover;background-position:center;position:relative}#team-showcase .overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);display:flex;align-items:center;justify-content:center;padding:2rem}#team-showcase .button{background-color:rgba(0,0,0,0);border-color:var(--primary);color:var(--primary)}#team-showcase .button:hover{background-color:var(--primary);border-color:var(--primary);color:var(--header)}@media(min-width: 768px){#post{margin:auto 2.5vmax}}#post a{text-decoration:underline}#post #title{text-decoration:none}#post .title{margin:auto}#post #post-image{border-radius:.25rem}#post .subtitle{letter-spacing:.05rem}#post #description{margin-bottom:1.25vmax}#post .tag{margin:.15rem auto}#post .content ol,#post .content ul,#post .content blockquote{display:inline-block}#post .content hr{background-color:gray}#post .content img,#post .content iframe{max-width:calc(100% - 25vw);margin:.25rem auto}@media(max-width: 768px){#post .content img,#post .content iframe{max-width:calc(100% - 5vw)}}#post .content ul,#post .content ol{display:inline-block}#post .container{margin:2.5rem auto;word-break:break-word;max-width:-webkit-fill-available}#post #disqus_thread{margin-top:5vmax}#page-section .content ul,#page-section .content ol,#page-section .content blockquote{display:inline-block}#latest-project .button{background-color:rgba(0,0,0,0);border-color:var(--primary);color:var(--primary)}#latest-project .button:hover{background-color:var(--primary);border-color:var(--primary);color:var(--header)}/*# sourceMappingURL=style.css.map */
\ No newline at end of file
diff --git a/_site/assets/css/style.css.map b/_site/assets/css/style.css.map
new file mode 100644
index 0000000..43296e4
--- /dev/null
+++ b/_site/assets/css/style.css.map
@@ -0,0 +1 @@
+{"version":3,"sourceRoot":"","sources":["../../_sass/main.scss","style.scss"],"names":[],"mappings":"AACQ,6LACA,oEAUR,MACI,0BACA,uBACA,uBAIJ,UAEI,iCACA,kCACA,yBAIJ,oBACI,wBAIJ,0BACI,2BAIJ,0BACI,8BAIJ,gCACI,2BAGJ,cACI,iCAKI,yCACI,SACA,UAKZ,WACI,iBAIA,iBACI,wBAIR,GACI,iBACA,WAGJ,QACI,kBACA,cAKI,uBACI,0BChFZ,MACI,mBACA,sBACA,gCACA,kBACA,gBACA,sBACA,mBACA,oBAIJ,oBACA,2BACA,wCAEA,QAEI,gCACA,kBACA,uBACI,oBAGJ,mBACI,gBACA,+BAGJ,qBACI,0CAEJ,yBACI,gCACA,YAEA,4BACA,QACA,UAGJ,uDAEI,0CACA,gCAEJ,gCACI,gCAEJ,+CACI,yBAEJ,+BACI,gCAEJ,2BACI,+BAIR,UACI,6BACA,kBAEA,kBACI,uBACA,2KACA,2BACA,4BACA,sBACA,4BACA,QACA,UACA,WACA,SACA,kBACA,WACA,UAGJ,iBACI,gCACA,QACA,UACA,WACA,SACA,kBACA,WACA,UAGJ,uDACI,kBACA,UAGJ,iBACI,8BAGJ,oBACI,sBAGJ,kBACI,+BACA,4BACA,qBAGJ,wBACI,gCACA,4BACA,oBAIR,kBACI,kBACA,YACA,6BAEA,mCACI,WACA,YACA,sBACA,2BACA,kBAEJ,2BACI,kBACA,MACA,OACA,WACA,YACA,gCACA,aACA,qBACA,2BACA,aAEJ,8BACI,gBAGJ,kEACI,SAMJ,uCACI,kBACA,8CACI,kBACA,sBACA,2BAEA,mBAEA,gBAOR,gBACI,gCACA,aACA,8BACA,eAGJ,kBACI,gCACH,uCACG,+BACA,OACA,kBACA,eACA,eAGJ,wBACI,+BACA,gCACH,uCACG,OACA,kBACA,eACA,eAKJ,yBACI,gBACI,sBACA,uBACA,mBAGJ,kBACI,UACA,cACA,cACA,oBAMR,oBACI,kBACA,2BACI,kBACA,sBACA,2BACA,mBACA,gBACA,8CACA,uBAEJ,mCACI,WACA,kBACA,MACA,OACA,WACA,YACA,0BACA,oBAEJ,6BACI,kBACA,MACA,OACA,WACA,YACA,aACA,sBACA,uBACA,mBACA,kBACA,oBACA,4BAEJ,6CACI,qBAEJ,qDACI,WAEJ,uBACI,4BACA,gCAEJ,6CACI,UACA,kBACA,4BACA,oBAEJ,yCACI,+BAQR,iBACI,gCAGJ,iBACI,mBAGJ,iBACI,yBACA,qBACA,sBACA,qBACA,oBACA,mBACA,qBACA,mDACA,gDACA,2CAEA,uBACI,uBACA,oDACA,iDACA,4CAGJ,yBAnBJ,iBAoBQ,mBACA,+BAEA,uBACI,uBACA,+BACA,oDACA,iDACA,4CAGJ,wBACI,4BAIR,wBACI,wBAGJ,0BACI,aAGJ,yBACI,aAEA,gCACI,qBACA,2BACA,4BACA,sBAMhB,QACI,2BAEA,cACI,YACA,aACA,2BAEA,2BACI,gBACA,WACA,sBAIR,gBACI,yBAKA,YAJA,sBACI,6BAQZ,QACI,eACA,0CACA,iBACI,aACA,8BAEJ,gBACI,qBACA,aACA,sBACA,uBAEJ,iBACI,aACA,sBACA,uBAEJ,qBACI,aACA,mBACA,oBACA,wBACA,qBAEJ,uBACI,mBACA,iBAGJ,yBACI,gBACI,iBACA,mBAGR,2CAEI,cACA,oBAGJ,uDAEI,qBAMA,0BACI,oBACA,iCACI,2BACA,4BACA,sBAKZ,uBACI,mDACA,gDACA,2CACA,sBACA,wBACA,+BACA,qBACA,6BACI,uBAGR,eACI,yBACA,qBACI,8CAMR,mBACI,gBAEJ,eACI,gBACA,uBACI,mBACA,8BAEI,4BAEA,gBAIZ,YACI,yBACA,mBACA,gBACA,6CAEJ,yBACI,sBAEJ,oBACI,sBACA,2BACA,mBAEJ,aACI,aACA,eACA,MACA,OACA,WACA,YACA,gCACA,uBACA,mBACA,aAEJ,oBACI,aAEJ,qBACI,6CACA,aACA,mBACA,aACA,uBACA,eACA,gBACA,UACA,cAGJ,mBACI,kBACA,SACA,WACA,eACA,eACA,oBAGJ,6BACI,aACA,kBAEJ,iCACI,WACA,YACA,gBACA,iBACA,mBAEJ,kBACI,OAGJ,+BACI,cACA,gBAEJ,gBACI,oBACA,iBAIR,SACI,uBAGJ,eACI,kBACA,YACA,6BAEA,gCACI,WACA,YACA,sBACA,2BACA,kBAEJ,wBACI,kBACA,MACA,OACA,WACA,YACA,gCACA,aACA,mBACA,uBACA,aAEJ,uBACI,+BACA,4BACA,qBAGJ,6BACI,gCACA,4BACA,oBAKJ,yBADJ,MAEQ,qBAEJ,QACI,0BAEJ,aACI,qBAEJ,aACI,YAEJ,kBACI,qBAEJ,gBACI,sBAGJ,mBACI,uBAGJ,WACI,mBAGA,8DACI,qBAEJ,kBACI,sBAEJ,yCACI,4BACA,mBACA,yBAHJ,yCAIQ,4BAGR,oCACI,qBAIR,iBACI,mBACA,sBACA,iCAGJ,qBACI,iBAMA,sFACI,qBAMR,wBACI,+BACD,4BACA,qBAEH,8BACI,gCACD,4BACA","sourcesContent":["@charset \"utf-8\";\r\n@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');\r\n@import url('https://cdn.jsdelivr.net/npm/bulma@0.8.2/css/bulma.min.css');\r\n$primary: \thsl(254, 91%, 71%);\r\n\r\n\r\n// $accent: #9172f8;\r\n// $accent-invert: findColorInvert($accent);\r\n// $custom-colors: (\"accent\": ($accent, $accent-invert));\r\n\r\n// #7762bd\r\n\r\n:root {\r\n --bulma-primary-h: 254deg;\r\n --bulma-primary-s: 91%;\r\n --bulma-primary-l: 71%;\r\n}\r\n\r\n\r\nhtml,\r\nbody {\r\n font-family: 'Poppins', sans-serif;\r\n scroll-behavior: smooth !important;\r\n transition: all 0.25s ease;\r\n}\r\n\r\n/* width */\r\n::-webkit-scrollbar {\r\n width: 0.5vmax !important;\r\n}\r\n\r\n/* Track */\r\n::-webkit-scrollbar-track {\r\n background: white !important;\r\n}\r\n\r\n/* Handle */\r\n::-webkit-scrollbar-thumb {\r\n background: #363636 !important;\r\n}\r\n\r\n/* Handle on hover */\r\n::-webkit-scrollbar-thumb:hover {\r\n background: black !important;\r\n}\r\n\r\n::placeholder {\r\n font-family: 'Poppins', sans-serif;\r\n}\r\n\r\n#navbar {\r\n .navbar-burger {\r\n span:nth-child(2) {\r\n left: calc(50%);\r\n width: 8px;\r\n }\r\n }\r\n}\r\n\r\n.is-active {\r\n font-weight: bold;\r\n}\r\n\r\n.columns {\r\n .button {\r\n margin: 0.5rem !important;\r\n }\r\n}\r\n\r\nhr {\r\n margin: 1rem auto;\r\n height: 1px;\r\n}\r\n\r\n.column {\r\n margin: auto 0.5rem;\r\n padding: 0.5rem;\r\n}\r\n\r\n.searchResult {\r\n a {\r\n .title {\r\n text-decoration: underline;\r\n }\r\n }\r\n}\r\n","@import \"main.scss\";\r\n\r\n:root {\r\n --primary: #9172f8;\r\n --background: #121212;\r\n --background-secondary: #242424;\r\n --header: #f5f5f5;\r\n --text: #a2a2a2;\r\n --seahawk-II: #fe5e20;\r\n --seahawk: #79bde8;\r\n --hydrozoa: #3961e2;\r\n}\r\n\r\n// Global settings\r\np { color: var(--text); }\r\n.title { color: var(--header); }\r\nbody { background-color: var(--background); }\r\n\r\n#navbar {\r\n // semi transparent\r\n background-color: rgba(3, 3, 3, 0.9);\r\n color: var(--text);\r\n .website-title {\r\n color: var(--header);\r\n }\r\n // when the page is active, make the name bold\r\n .is-active {\r\n font-weight: 600;\r\n background-color: transparent;\r\n }\r\n // this is the title of the dropdown\r\n .navbar-link { \r\n background-color: transparent !important;\r\n }\r\n .navbar-dropdown {\r\n background-color: rgba(3, 3, 3, 0.9);\r\n border: none;\r\n // border on the lower two corners\r\n border-radius: 0 0 10px 10px;\r\n right: 0;\r\n left: auto;\r\n }\r\n // change color on hover\r\n a.navbar-item:hover,\r\n .navbar-link:hover {\r\n background-color: transparent !important;\r\n color: var(--primary) !important;\r\n }\r\n a.navbar-item.is-active {\r\n color: var(--primary) !important;\r\n }\r\n .navbar-link:not(.is-arrowless)::after {\r\n border-color: var(--text);\r\n }\r\n .navbar-menu.is-active {\r\n background-color: rgba(3, 3, 3, 0.9);\r\n }\r\n .navbar-item:hover {\r\n background-color: transparent;\r\n }\r\n}\r\n\r\n#showcase {\r\n background: var(--background);\r\n position: relative;\r\n \r\n &::before {\r\n filter: grayscale(100%);\r\n background-image: url('https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/f0905cbecd1b1167085058ae4c5352152cb95fad/assets/images/hero.webp');\r\n background-position: center;\r\n background-repeat: no-repeat;\r\n background-size: cover;\r\n background-attachment: fixed;\r\n top: 0px;\r\n right: 0px;\r\n bottom: 0px;\r\n left: 0px;\r\n position: absolute;\r\n content: \"\";\r\n z-index: 1; // Ensure this is below the overlay \r\n }\r\n\r\n &::after {\r\n background-color: rgba(0, 0, 0, 0.7); \r\n top: 0px;\r\n right: 0px;\r\n bottom: 0px;\r\n left: 0px;\r\n position: absolute;\r\n content: \"\";\r\n z-index: 2; // Ensure this is above the image\r\n }\r\n\r\n .title, .subtitle, .button {\r\n position: relative;\r\n z-index: 3; // Ensure text and buttons are above the overlay\r\n }\r\n\r\n .title {\r\n margin: auto 0.75rem !important;\r\n }\r\n\r\n .subtitle {\r\n letter-spacing: 0.25rem;\r\n }\r\n\r\n .button {\r\n background-color: transparent;\r\n border-color: var(--primary);\r\n color: var(--primary);\r\n }\r\n\r\n .button:hover {\r\n background-color: var(--primary);\r\n border-color: var(--primary);\r\n color: var(--header);\r\n }\r\n}\r\n\r\n#project-showcase {\r\n position: relative;\r\n height: 50vh;\r\n background: var(--background);\r\n\r\n .hero-background {\r\n width: 100%;\r\n height: 100%;\r\n background-size: cover;\r\n background-position: center;\r\n position: relative;\r\n }\r\n .overlay {\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n background-color: rgba(0, 0, 0, 0.7);\r\n display: flex;\r\n align-items: flex-end;\r\n justify-content: flex-start;\r\n padding: 2rem;\r\n }\r\n .title-text {\r\n text-align: left;\r\n }\r\n \r\n .title-text h1, .title-text h3 {\r\n margin: 0;\r\n }\r\n}\r\n\r\n\r\n#project-gallery { \r\n #project-gallery-card {\r\n position: relative;\r\n .image {\r\n position: relative;\r\n background-size: cover;\r\n background-position: center;\r\n // rounded corners\r\n border-radius: 10px;\r\n // hide any image which goes outside the corner radius\r\n overflow: hidden;\r\n }\r\n }\r\n}\r\n\r\n#about {\r\n // three buttons in a line, flexible sizes\r\n .buttons {\r\n color: var(--primary)!important;\r\n display: flex;\r\n justify-content: space-between;\r\n flex-wrap: wrap;\r\n }\r\n\r\n .buttons a {\r\n color: var(--primary)!important;\r\n\t border-color: var(--primary)!important;\r\n background-color: transparent;\r\n flex: 1;\r\n text-align: center;\r\n max-width: 20vw;\r\n min-width: 10vw;\r\n }\r\n\r\n .buttons a:hover {\r\n color: var(--header)!important;\r\n background-color:var(--primary);\r\n\t border-color: var(--primary)!important;\r\n flex: 1;\r\n text-align: center;\r\n max-width: 20vw;\r\n min-width: 10vw;\r\n }\r\n\r\n\r\n // Mobile button settings\r\n @media (max-width: 768px) {\r\n .buttons {\r\n flex-direction: column;\r\n justify-content: center;\r\n align-items: center;\r\n }\r\n \r\n .buttons a {\r\n width: 90%; \r\n max-width: 90%;\r\n margin: 0 auto;\r\n margin-bottom: 1rem;\r\n }\r\n }\r\n}\r\n\r\n#robots {\r\n #robot-card {\r\n position: relative;\r\n .image {\r\n position: relative;\r\n background-size: cover;\r\n background-position: center;\r\n border-radius: 10px;\r\n overflow: hidden;\r\n transition: filter 0.5s ease, transform 0.5s ease;\r\n filter: grayscale(100%);\r\n }\r\n .image::before {\r\n content: '';\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n background: rgba(0, 0, 0, 0.7);\r\n pointer-events: none; \r\n }\r\n .overlay {\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: center;\r\n align-items: center;\r\n text-align: center;\r\n pointer-events: none;\r\n transition: opacity 0.5s ease;\r\n }\r\n .robot-link:hover .image {\r\n filter: grayscale(0%);\r\n }\r\n .robot-link:hover .image::before {\r\n opacity: 20;\r\n }\r\n h2 {\r\n transition: opacity 0.5s ease;\r\n color: var(--primary) !important;\r\n }\r\n h2, p {\r\n z-index: 2;\r\n position: relative;\r\n transition: opacity 0.5s ease;\r\n pointer-events: none;\r\n }\r\n .robot-link:hover h2 {\r\n color: var(--header) !important;\r\n }\r\n }\r\n}\r\n\r\n\r\n\r\n#blog {\r\n .hero-body {\r\n padding: 3rem 0.25rem 1rem 0.25rem;\r\n }\r\n\r\n .container {\r\n margin: 1.5rem auto;\r\n }\r\n\r\n #blog-card {\r\n transition: all 0.25s ease;\r\n margin-bottom: 0.5vmax;\r\n transform: scale(0.85);\r\n margin-right: 2.5vmax;\r\n margin-left: 2.5vmax;\r\n line-height: normal;\r\n border-radius: 0.25rem;\r\n -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);\r\n -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);\r\n box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);\r\n\r\n &:hover {\r\n transform: scale(0.875);\r\n -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);\r\n -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);\r\n box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);\r\n }\r\n\r\n @media (max-width: 768px) {\r\n transform: scale(1);\r\n margin-bottom: 5vmax !important;\r\n\r\n &:hover {\r\n transform: scale(1.025);\r\n margin-bottom: 5vmax !important;\r\n -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);\r\n -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);\r\n box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);\r\n }\r\n\r\n .image {\r\n padding-top: 50% !important;\r\n }\r\n }\r\n\r\n .title {\r\n margin: 0.5rem !important;\r\n }\r\n\r\n .content {\r\n margin: 0.5rem;\r\n }\r\n\r\n .column {\r\n display: grid;\r\n\r\n .image {\r\n border-radius: 0.25rem;\r\n background-position: center;\r\n background-repeat: no-repeat;\r\n background-size: cover;\r\n }\r\n }\r\n }\r\n}\r\n\r\n#search {\r\n border-bottom: 0.15rem solid;\r\n\r\n input {\r\n border: none;\r\n outline: none;\r\n font-weight: 500 !important;\r\n\r\n &::placeholder {\r\n font-weight: 500;\r\n color: grey;\r\n letter-spacing: 0.25rem;\r\n }\r\n }\r\n\r\n .button {\r\n transition: all 0.25s ease;\r\n &:focus {\r\n outline: 0.25rem solid #ede5f2;\r\n }\r\n\r\n border: none;\r\n }\r\n}\r\n\r\n\r\n#footer {\r\n padding: 2rem 0;\r\n background-color: var(--header) !important;\r\n .columns {\r\n display: flex;\r\n justify-content: space-between;\r\n }\r\n .column {\r\n margin-bottom: 1.5rem;\r\n display: flex;\r\n flex-direction: column;\r\n align-items: flex-start;\r\n }\r\n .socials {\r\n display: flex;\r\n flex-direction: column;\r\n align-items: flex-start;\r\n }\r\n .social-link {\r\n display: flex;\r\n align-items: center;\r\n margin-bottom: 0.5rem;\r\n color: var(--background);\r\n text-decoration: none;\r\n }\r\n .social-link i {\r\n margin-right: 0.5rem; \r\n font-size: 1.5rem;\r\n }\r\n // Mobile\r\n @media (min-width: 769px) {\r\n .column {\r\n margin-left: 2rem;\r\n margin-right: 2rem;\r\n }\r\n }\r\n .social-link,\r\n .address-link {\r\n display: block;\r\n margin-bottom: 0.5rem;\r\n }\r\n // change color on hover\r\n .social-link:hover,\r\n .address-link:hover {\r\n color: var(--primary);\r\n }\r\n}\r\n\r\n#project {\r\n .columns {\r\n .column {\r\n border-radius: 0.5rem;\r\n .image {\r\n background-position: center;\r\n background-repeat: no-repeat;\r\n background-size: cover;\r\n }\r\n }\r\n }\r\n\r\n #project-card {\r\n -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);\r\n -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);\r\n box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);\r\n transform: scale(0.95);\r\n transition: all 0.5s ease;\r\n margin-bottom: 0.5rem !important;\r\n display: inline-table;\r\n &:hover {\r\n transform: scale(0.975);\r\n }\r\n }\r\n .card {\r\n transition: all 0.25s ease;\r\n &:hover {\r\n background-color: rgba($color: #111113, $alpha: 0.90)!important;\r\n }\r\n }\r\n}\r\n\r\n#team {\r\n .description {\r\n min-height: 25vh;\r\n }\r\n .columns {\r\n margin-top: 20px;\r\n .column {\r\n margin-bottom: 20px;\r\n .image {\r\n // only round top two corners\r\n border-radius: 10px 10px 0 0;\r\n // hide part of image which gets rounded off\r\n overflow: hidden;\r\n }\r\n }\r\n }\r\n .card {\r\n transition: all 0.25s ease;\r\n border-radius: 10px;\r\n overflow: hidden;\r\n background-color: var(--background-secondary);\r\n }\r\n .person-card:hover {\r\n transform: scale(1.05);\r\n }\r\n .person-image {\r\n background-size: cover;\r\n background-position: center;\r\n border-radius: 10px;\r\n }\r\n .popup {\r\n display: none;\r\n position: fixed;\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n background-color: rgba(0, 0, 0, 0.8);\r\n justify-content: center;\r\n align-items: center;\r\n z-index: 1000;\r\n }\r\n .popup.active {\r\n display: flex;\r\n }\r\n .popup-content {\r\n background-color: var(--background-secondary);\r\n padding: 20px;\r\n border-radius: 10px;\r\n display: flex;\r\n align-items: flex-start;\r\n max-width: 60vh;\r\n max-height: 80vh;\r\n width: 90%;\r\n overflow: auto;\r\n }\r\n \r\n .popup-close {\r\n position: absolute;\r\n top: 10px;\r\n right: 20px;\r\n font-size: 30px;\r\n cursor: pointer;\r\n color: var(--header);\r\n }\r\n\r\n .popup-image-container {\r\n flex: 0 0 50%;\r\n margin-right: 20px;\r\n }\r\n .popup-image-container img {\r\n width: 100%;\r\n height: auto;\r\n max-height: 60vh;\r\n object-fit: cover;\r\n border-radius: 10px;\r\n }\r\n .popup-text {\r\n flex: 1;\r\n }\r\n\r\n .popup h2, .popup p {\r\n margin: 10px 0;\r\n text-align: left;\r\n }\r\n .popup h2 {\r\n color: var(--header);\r\n font-weight: bold;\r\n }\r\n}\r\n\r\n#members {\r\n scroll-margin-top: 60px;\r\n}\r\n\r\n#team-showcase {\r\n position: relative;\r\n height: 75vh;\r\n background: var(--background);\r\n\r\n .hero-background {\r\n width: 100%;\r\n height: 100%;\r\n background-size: cover;\r\n background-position: center;\r\n position: relative;\r\n }\r\n .overlay {\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n background-color: rgba(0, 0, 0, 0.7);\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n padding: 2rem;\r\n }\r\n .button {\r\n background-color: transparent;\r\n border-color: var(--primary);\r\n color: var(--primary);\r\n }\r\n\r\n .button:hover {\r\n background-color: var(--primary);\r\n border-color: var(--primary);\r\n color: var(--header);\r\n }\r\n}\r\n\r\n#post {\r\n @media (min-width: 768px) {\r\n margin: auto 2.5vmax;\r\n }\r\n a {\r\n text-decoration: underline;\r\n }\r\n #title {\r\n text-decoration: none;\r\n }\r\n .title {\r\n margin: auto;\r\n }\r\n #post-image {\r\n border-radius: 0.25rem;\r\n }\r\n .subtitle {\r\n letter-spacing: 0.05rem;\r\n }\r\n\r\n #description {\r\n margin-bottom: 1.25vmax;\r\n }\r\n\r\n .tag {\r\n margin: 0.15rem auto;\r\n }\r\n .content {\r\n ol, ul, blockquote {\r\n display: inline-block;\r\n }\r\n hr{\r\n background-color: grey;\r\n }\r\n img, iframe {\r\n max-width: calc(100% - 25vw);\r\n margin: 0.25rem auto;\r\n @media (max-width: 768px) {\r\n max-width: calc(100% - 5vw);\r\n }\r\n }\r\n ul, ol {\r\n display: inline-block;\r\n }\r\n }\r\n\r\n .container {\r\n margin: 2.5rem auto;\r\n word-break: break-word;\r\n max-width: -webkit-fill-available;\r\n }\r\n\r\n #disqus_thread {\r\n margin-top: 5vmax;\r\n }\r\n}\r\n\r\n#page-section {\r\n .content {\r\n ul, ol, blockquote {\r\n display: inline-block;\r\n }\r\n }\r\n}\r\n\r\n#latest-project {\r\n .button {\r\n background-color:transparent;\r\n \t border-color:var(--primary);\r\n \t color:var(--primary);\r\n }\r\n .button:hover {\r\n background-color:var(--primary);\r\n \t border-color:var(--primary);\r\n \t color:var(--header);\r\n }\r\n}"],"file":"style.css"}
\ No newline at end of file
diff --git a/_site/assets/images/1280x720 Placeholder.png b/_site/assets/images/1280x720 Placeholder.png
new file mode 100644
index 0000000..bad5cf2
Binary files /dev/null and b/_site/assets/images/1280x720 Placeholder.png differ
diff --git a/_site/assets/images/How to install and use WhatATheme.png b/_site/assets/images/How to install and use WhatATheme.png
new file mode 100644
index 0000000..c18c366
Binary files /dev/null and b/_site/assets/images/How to install and use WhatATheme.png differ
diff --git a/_site/assets/images/SamplePost.png b/_site/assets/images/SamplePost.png
new file mode 100644
index 0000000..1965e98
Binary files /dev/null and b/_site/assets/images/SamplePost.png differ
diff --git a/_site/assets/images/What is Jekyll and How to use it.png b/_site/assets/images/What is Jekyll and How to use it.png
new file mode 100644
index 0000000..2248718
Binary files /dev/null and b/_site/assets/images/What is Jekyll and How to use it.png differ
diff --git a/_site/assets/images/cover.jpg b/_site/assets/images/cover.jpg
new file mode 100644
index 0000000..dca0539
Binary files /dev/null and b/_site/assets/images/cover.jpg differ
diff --git a/_site/assets/images/hero.webp b/_site/assets/images/hero.webp
new file mode 100644
index 0000000..b41dc91
Binary files /dev/null and b/_site/assets/images/hero.webp differ
diff --git a/_site/assets/images/hydrozoa/gallery-hydrozoa/hydrozoa-surface.webp b/_site/assets/images/hydrozoa/gallery-hydrozoa/hydrozoa-surface.webp
new file mode 100644
index 0000000..83e6e0f
Binary files /dev/null and b/_site/assets/images/hydrozoa/gallery-hydrozoa/hydrozoa-surface.webp differ
diff --git a/_site/assets/images/hydrozoa/gallery-hydrozoa/hydrozoa-underwater.webp b/_site/assets/images/hydrozoa/gallery-hydrozoa/hydrozoa-underwater.webp
new file mode 100644
index 0000000..ce7aa19
Binary files /dev/null and b/_site/assets/images/hydrozoa/gallery-hydrozoa/hydrozoa-underwater.webp differ
diff --git a/_site/assets/images/hydrozoa/gallery-hydrozoa/mate-team.webp b/_site/assets/images/hydrozoa/gallery-hydrozoa/mate-team.webp
new file mode 100644
index 0000000..c278bba
Binary files /dev/null and b/_site/assets/images/hydrozoa/gallery-hydrozoa/mate-team.webp differ
diff --git a/_site/assets/images/hydrozoa/gallery-hydrozoa/team.webp b/_site/assets/images/hydrozoa/gallery-hydrozoa/team.webp
new file mode 100644
index 0000000..2a46bbd
Binary files /dev/null and b/_site/assets/images/hydrozoa/gallery-hydrozoa/team.webp differ
diff --git a/_site/assets/images/hydrozoa/hydrozoa-hero.webp b/_site/assets/images/hydrozoa/hydrozoa-hero.webp
new file mode 100644
index 0000000..f349f44
Binary files /dev/null and b/_site/assets/images/hydrozoa/hydrozoa-hero.webp differ
diff --git a/_site/assets/images/hydrozoa/hydrozoa.webp b/_site/assets/images/hydrozoa/hydrozoa.webp
new file mode 100644
index 0000000..424e247
Binary files /dev/null and b/_site/assets/images/hydrozoa/hydrozoa.webp differ
diff --git a/_site/assets/images/logo.svg b/_site/assets/images/logo.svg
new file mode 100644
index 0000000..4a697df
--- /dev/null
+++ b/_site/assets/images/logo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/_site/assets/images/meta.jpg b/_site/assets/images/meta.jpg
new file mode 100644
index 0000000..6a92a0b
Binary files /dev/null and b/_site/assets/images/meta.jpg differ
diff --git a/_site/assets/images/seahawk-II/VPFTesting2.png b/_site/assets/images/seahawk-II/VPFTesting2.png
new file mode 100644
index 0000000..0028d79
Binary files /dev/null and b/_site/assets/images/seahawk-II/VPFTesting2.png differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/dashboard.jpeg b/_site/assets/images/seahawk-II/gallery-seahawk-II/dashboard.jpeg
new file mode 100644
index 0000000..81e0a45
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/dashboard.jpeg differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/deploy.jpeg b/_site/assets/images/seahawk-II/gallery-seahawk-II/deploy.jpeg
new file mode 100644
index 0000000..4c1599c
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/deploy.jpeg differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/electrical-engrs.jpeg b/_site/assets/images/seahawk-II/gallery-seahawk-II/electrical-engrs.jpeg
new file mode 100644
index 0000000..7393014
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/electrical-engrs.jpeg differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/interview.webp b/_site/assets/images/seahawk-II/gallery-seahawk-II/interview.webp
new file mode 100644
index 0000000..6c30038
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/interview.webp differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/leak-test.jpg b/_site/assets/images/seahawk-II/gallery-seahawk-II/leak-test.jpg
new file mode 100644
index 0000000..0fc613b
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/leak-test.jpg differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/mate-comp-pool.jpeg b/_site/assets/images/seahawk-II/gallery-seahawk-II/mate-comp-pool.jpeg
new file mode 100644
index 0000000..99e8204
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/mate-comp-pool.jpeg differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/mate-comp-team.jpeg b/_site/assets/images/seahawk-II/gallery-seahawk-II/mate-comp-team.jpeg
new file mode 100644
index 0000000..d64e980
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/mate-comp-team.jpeg differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/matt-photo-bomb.jpeg b/_site/assets/images/seahawk-II/gallery-seahawk-II/matt-photo-bomb.jpeg
new file mode 100644
index 0000000..e82e1be
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/matt-photo-bomb.jpeg differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/pool-test.jpeg b/_site/assets/images/seahawk-II/gallery-seahawk-II/pool-test.jpeg
new file mode 100644
index 0000000..9e7e107
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/pool-test.jpeg differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/pre-product-demo-pool-test.jpeg b/_site/assets/images/seahawk-II/gallery-seahawk-II/pre-product-demo-pool-test.jpeg
new file mode 100644
index 0000000..1f9081a
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/pre-product-demo-pool-test.jpeg differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/presentation.jpeg b/_site/assets/images/seahawk-II/gallery-seahawk-II/presentation.jpeg
new file mode 100644
index 0000000..610c696
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/presentation.jpeg differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot-2.webp b/_site/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot-2.webp
new file mode 100644
index 0000000..18b55f2
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot-2.webp differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot.webp b/_site/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot.webp
new file mode 100644
index 0000000..98e8220
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot.webp differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/product-demo.webp b/_site/assets/images/seahawk-II/gallery-seahawk-II/product-demo.webp
new file mode 100644
index 0000000..e9dd895
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/product-demo.webp differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II-mike-and-steph.webp b/_site/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II-mike-and-steph.webp
new file mode 100644
index 0000000..b1c6624
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II-mike-and-steph.webp differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II.jpg b/_site/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II.jpg
new file mode 100644
index 0000000..161eb24
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II.jpg differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II.webp b/_site/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II.webp
new file mode 100644
index 0000000..60c0b68
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II.webp differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/stack.jpg b/_site/assets/images/seahawk-II/gallery-seahawk-II/stack.jpg
new file mode 100644
index 0000000..4dfc431
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/stack.jpg differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/stack.webp b/_site/assets/images/seahawk-II/gallery-seahawk-II/stack.webp
new file mode 100644
index 0000000..ae931ed
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/stack.webp differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/team.jpg b/_site/assets/images/seahawk-II/gallery-seahawk-II/team.jpg
new file mode 100644
index 0000000..9f66127
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/team.jpg differ
diff --git a/_site/assets/images/seahawk-II/gallery-seahawk-II/trophy.webp b/_site/assets/images/seahawk-II/gallery-seahawk-II/trophy.webp
new file mode 100644
index 0000000..d92b727
Binary files /dev/null and b/_site/assets/images/seahawk-II/gallery-seahawk-II/trophy.webp differ
diff --git a/_site/assets/images/seahawk-II/seahawk-II-hero.webp b/_site/assets/images/seahawk-II/seahawk-II-hero.webp
new file mode 100644
index 0000000..5390af4
Binary files /dev/null and b/_site/assets/images/seahawk-II/seahawk-II-hero.webp differ
diff --git a/_site/assets/images/seahawk-II/seahawk-II-info-graphic.svg b/_site/assets/images/seahawk-II/seahawk-II-info-graphic.svg
new file mode 100644
index 0000000..3000c55
--- /dev/null
+++ b/_site/assets/images/seahawk-II/seahawk-II-info-graphic.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/_site/assets/images/seahawk-II/seahawk-II-outline.svg b/_site/assets/images/seahawk-II/seahawk-II-outline.svg
new file mode 100644
index 0000000..4885c71
--- /dev/null
+++ b/_site/assets/images/seahawk-II/seahawk-II-outline.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/_site/assets/images/seahawk/gallery-seahawk/bonus-mission.jpeg b/_site/assets/images/seahawk/gallery-seahawk/bonus-mission.jpeg
new file mode 100644
index 0000000..8a66d5b
Binary files /dev/null and b/_site/assets/images/seahawk/gallery-seahawk/bonus-mission.jpeg differ
diff --git a/_site/assets/images/seahawk/gallery-seahawk/flags.jpeg b/_site/assets/images/seahawk/gallery-seahawk/flags.jpeg
new file mode 100644
index 0000000..d920e25
Binary files /dev/null and b/_site/assets/images/seahawk/gallery-seahawk/flags.jpeg differ
diff --git a/_site/assets/images/seahawk/gallery-seahawk/logic-tube.jpeg b/_site/assets/images/seahawk/gallery-seahawk/logic-tube.jpeg
new file mode 100644
index 0000000..48db2c3
Binary files /dev/null and b/_site/assets/images/seahawk/gallery-seahawk/logic-tube.jpeg differ
diff --git a/_site/assets/images/seahawk/gallery-seahawk/pool-test.jpeg b/_site/assets/images/seahawk/gallery-seahawk/pool-test.jpeg
new file mode 100644
index 0000000..b7c0115
Binary files /dev/null and b/_site/assets/images/seahawk/gallery-seahawk/pool-test.jpeg differ
diff --git a/_site/assets/images/seahawk/gallery-seahawk/seahawk-mate-background.jpeg b/_site/assets/images/seahawk/gallery-seahawk/seahawk-mate-background.jpeg
new file mode 100644
index 0000000..9488c6b
Binary files /dev/null and b/_site/assets/images/seahawk/gallery-seahawk/seahawk-mate-background.jpeg differ
diff --git a/_site/assets/images/seahawk/gallery-seahawk/seahawk-underwater.jpeg b/_site/assets/images/seahawk/gallery-seahawk/seahawk-underwater.jpeg
new file mode 100644
index 0000000..085e6ab
Binary files /dev/null and b/_site/assets/images/seahawk/gallery-seahawk/seahawk-underwater.jpeg differ
diff --git a/_site/assets/images/seahawk/gallery-seahawk/team-photo-hold-seahawk.jpeg b/_site/assets/images/seahawk/gallery-seahawk/team-photo-hold-seahawk.jpeg
new file mode 100644
index 0000000..d092ed6
Binary files /dev/null and b/_site/assets/images/seahawk/gallery-seahawk/team-photo-hold-seahawk.jpeg differ
diff --git a/_site/assets/images/seahawk/gallery-seahawk/team-photo-marketing-display.jpeg b/_site/assets/images/seahawk/gallery-seahawk/team-photo-marketing-display.jpeg
new file mode 100644
index 0000000..cb73524
Binary files /dev/null and b/_site/assets/images/seahawk/gallery-seahawk/team-photo-marketing-display.jpeg differ
diff --git a/_site/assets/images/seahawk/gallery-seahawk/team-photo-mate-background.jpeg b/_site/assets/images/seahawk/gallery-seahawk/team-photo-mate-background.jpeg
new file mode 100644
index 0000000..acf2bb0
Binary files /dev/null and b/_site/assets/images/seahawk/gallery-seahawk/team-photo-mate-background.jpeg differ
diff --git a/_site/assets/images/seahawk/gallery-seahawk/team-photo-post-win.jpeg b/_site/assets/images/seahawk/gallery-seahawk/team-photo-post-win.jpeg
new file mode 100644
index 0000000..56fad49
Binary files /dev/null and b/_site/assets/images/seahawk/gallery-seahawk/team-photo-post-win.jpeg differ
diff --git a/_site/assets/images/seahawk/gallery-seahawk/trophy.png b/_site/assets/images/seahawk/gallery-seahawk/trophy.png
new file mode 100644
index 0000000..519cd6f
Binary files /dev/null and b/_site/assets/images/seahawk/gallery-seahawk/trophy.png differ
diff --git a/_site/assets/images/seahawk/seahawk-hero.jpeg b/_site/assets/images/seahawk/seahawk-hero.jpeg
new file mode 100644
index 0000000..338a598
Binary files /dev/null and b/_site/assets/images/seahawk/seahawk-hero.jpeg differ
diff --git a/_site/assets/images/seahawk/seahawk.jpeg b/_site/assets/images/seahawk/seahawk.jpeg
new file mode 100644
index 0000000..1a3f63c
Binary files /dev/null and b/_site/assets/images/seahawk/seahawk.jpeg differ
diff --git a/_site/assets/js/simple-jekyll-search.js b/_site/assets/js/simple-jekyll-search.js
new file mode 100644
index 0000000..b0bd42b
--- /dev/null
+++ b/_site/assets/js/simple-jekyll-search.js
@@ -0,0 +1,6 @@
+/*!
+ * Simple-Jekyll-Search v1.7.4 (https://github.com/christian-fei/Simple-Jekyll-Search)
+ * Copyright 2015-2020, Christian Fei
+ * Licensed under the MIT License.
+ */
+ !function(){"use strict";var o={compile:function M(r){return i.template.replace(i.pattern,function(t,e){var n=i.middleware(e,r[e],i.template);return void 0!==n?n:r[e]||t})},setOptions:function T(t){i.pattern=t.pattern||i.pattern,i.template=t.template||i.template,"function"==typeof t.middleware&&(i.middleware=t.middleware)}},i={};i.pattern=/\{(.*?)\}/g,i.template="",i.middleware=function(){};var n=function x(t,e){var n=e.length,r=t.length;if(n{title}',templateMiddleware:Function.prototype,sortMiddleware:function(){return 0},noResultsText:"No results found",limit:10,fuzzy:!1,exclude:[]},O=t({required:g=["searchInput","resultsContainer","json"]}),z=function(t){return 0Cabrillo Robotics Club | BlogCabrillo Robotics Club
The Cabrillo Robotics Club achieved an impressive victory, taking home First Place in the most advanced category of the Marine Advanced Technology Education (MATE) World Championship.
Published on June 23, 2024 by
MATEROVSeahawk II
4 min READ
The Cabrillo Robotics Club achieved an impressive victory, taking home First Place in the most advanced category of the Marine Advanced Technology Education (MATE) World Championship. Held in Kingsport, TN from June 20-22 2024, the competition gathered 82 teams from 17 countries to showcase advancements in underwater robotics.
The MATE competition challenges teams worldwide to build Remotely Operated Vehicles (ROVs). These tethered, submersible robots perform observation, inspection, and physical tasks in various aquatic environments. Competing teams must build an ROV capable of executing simulated industry applications in a product demonstration. They also showcase their robot’s functionality and design rationale through marketing, technical documentation, and an engineering presentation.
Cabrillo Robotics has competed in the MATE Pioneer Division and achieved first place at the World Championship the last two consecutive years. This year, the club built a completely redesigned ROV to tackle the challenges in the most advanced class of the competition–Explorer. The small team dedicated nearly a year to constructing an originally designed ROV, the SeaHawk II. Members developed fully custom software and hardware solutions resulting in a reliable vehicle capable of rapidly completing competition mission tasks. SeaHawk II stands as a testament to the mechanical, electrical, and software engineering skills of the team, with members from each specialty collaborating seamlessly to produce a professional-grade final product. Isaac Wax, Hardware Lead, commented “We believe in doing things the right way, not the easy way. Rather than settle for good enough, low-risk solutions, we executed innovative, high-risk designs across mechanical, electrical and software systems using cross-integration techniques yielding a streamlined, high-performance ROV. I believe that our team’s perseverance sticking to these values paid off to make Seahawk II a World Champion.” Cabrillo Robotics plans on making all components of the robot open source on GitHub.
After more than 4500 hours of intensive design, manufacturing, and testing, five members of the Cabrillo Robotics team and their robot traveled 4080 km across the country to Kingsport, TN. They engaged in several days of rigorous events. Thanks to many hours of practice and exceptional piloting, they achieved impressive scores in the product demonstrations. Pilot, Isaac Eda, noted that, “a strength of this year’s ROV was its unique control systems that made it possible for me to navigate the tasks in record time.” Much thought and effort was put into maximizing the controllability of the robot. Both the hardware and software teams worked together to ensure piloting the ROV was as efficient and reliable as possible. During their presentation, judges noted the craftsmanship of the robot and were intrigued by the unique mechanical design choices. Additionally, the custom electronics stack and pilot dashboard received high praise for their ingenuity and impressive design.
After the events concluded, Cabrillo Robotics Club celebrated another remarkable victory, securing first place overall in the most advanced category of the competition. This triumph is particularly impressive given the team’s unique challenges and achievements. Competing for the first time in the Explorer Division with a completely redesigned ROV, this small team of community college students outperformed university teams from around the world. Participation in the MATE ROV competition over the years has provided learning and training that have shaped Cabrillo Robotic Team members into engineers soon to enter the workforce and move onto higher education. “Participating in MATE competitions provided us with the unique opportunity to develop invaluable technical and interpersonal skills” says President Stephanie L’Heureux, “We all hope to continue to be involved with MATE as mentors to future generations of students to share this valuable learning experience.”
After winning first place in their division of the MATE competition for three consecutive years, the Cabrillo Robotics Club is excited to conquer a new challenge for the 2024-2025 season. “The Cabrillo Robotics Club values the MATE ROV competition for its chance to explore our limits, take risks, and devise unconventional solutions to problems,” says Rowan Garites. “…however, we are ready to venture into new territory, the RoboSub competition appears to be a logical next step for us. It will definitely be challenging, our software, mechanical, and electrical teams will have their work cut out for them. Constructing an autonomous vehicle without a tether makes the engineering process exponentially more difficult,” adds Stephanie L’Heureux. RoboSub challenges teams worldwide to design and build Autonomous Underwater Vehicles (AUVs). Cabrillo Robotics Club is eager to participate in next year’s RoboSub competition and is actively seeking donations and sponsors for support.
diff --git a/_site/feed.xml b/_site/feed.xml
new file mode 100644
index 0000000..80e8062
--- /dev/null
+++ b/_site/feed.xml
@@ -0,0 +1,13 @@
+Jekyll2024-08-24T01:32:34-07:00http://localhost:4000/feed.xmlCabrillo Robotics ClubStudent led robotics club at Cabrillo College in Aptos, California.Cabrillo Robotics Wins International Robotics Competition2024-06-23T00:00:00-07:002024-06-23T00:00:00-07:00http://localhost:4000/blog/cabrillo-robotics-wins-international-robotics-competitionThe Cabrillo Robotics Club achieved an impressive victory, taking home First Place in the most advanced category of the Marine Advanced Technology Education (MATE) World Championship. Held in Kingsport, TN from June 20-22 2024, the competition gathered 82 teams from 17 countries to showcase advancements in underwater robotics.
+
+
The MATE competition challenges teams worldwide to build Remotely Operated Vehicles (ROVs). These tethered, submersible robots perform observation, inspection, and physical tasks in various aquatic environments. Competing teams must build an ROV capable of executing simulated industry applications in a product demonstration. They also showcase their robot’s functionality and design rationale through marketing, technical documentation, and an engineering presentation.
+
+
Cabrillo Robotics has competed in the MATE Pioneer Division and achieved first place at the World Championship the last two consecutive years. This year, the club built a completely redesigned ROV to tackle the challenges in the most advanced class of the competition–Explorer.
+The small team dedicated nearly a year to constructing an originally designed ROV, the SeaHawk II. Members developed fully custom software and hardware solutions resulting in a reliable vehicle capable of rapidly completing competition mission tasks. SeaHawk II stands as a testament to the mechanical, electrical, and software engineering skills of the team, with members from each specialty collaborating seamlessly to produce a professional-grade final product. Isaac Wax, Hardware Lead, commented “We believe in doing things the right way, not the easy way. Rather than settle for good enough, low-risk solutions, we executed innovative, high-risk designs across mechanical, electrical and software systems using cross-integration techniques yielding a streamlined, high-performance ROV. I believe that our team’s perseverance sticking to these values paid off to make Seahawk II a World Champion.” Cabrillo Robotics plans on making all components of the robot open source on GitHub.
+
+
After more than 4500 hours of intensive design, manufacturing, and testing, five members of the Cabrillo Robotics team and their robot traveled 4080 km across the country to Kingsport, TN. They engaged in several days of rigorous events. Thanks to many hours of practice and exceptional piloting, they achieved impressive scores in the product demonstrations. Pilot, Isaac Eda, noted that, “a strength of this year’s ROV was its unique control systems that made it possible for me to navigate the tasks in record time.” Much thought and effort was put into maximizing the controllability of the robot. Both the hardware and software teams worked together to ensure piloting the ROV was as efficient and reliable as possible. During their presentation, judges noted the craftsmanship of the robot and were intrigued by the unique mechanical design choices. Additionally, the custom electronics stack and pilot dashboard received high praise for their ingenuity and impressive design.
+
+
After the events concluded, Cabrillo Robotics Club celebrated another remarkable victory, securing first place overall in the most advanced category of the competition. This triumph is particularly impressive given the team’s unique challenges and achievements. Competing for the first time in the Explorer Division with a completely redesigned ROV, this small team of community college students outperformed university teams from around the world.
+Participation in the MATE ROV competition over the years has provided learning and training that have shaped Cabrillo Robotic Team members into engineers soon to enter the workforce and move onto higher education. “Participating in MATE competitions provided us with the unique opportunity to develop invaluable technical and interpersonal skills” says President Stephanie L’Heureux, “We all hope to continue to be involved with MATE as mentors to future generations of students to share this valuable learning experience.”
+
+
After winning first place in their division of the MATE competition for three consecutive years, the Cabrillo Robotics Club is excited to conquer a new challenge for the 2024-2025 season. “The Cabrillo Robotics Club values the MATE ROV competition for its chance to explore our limits, take risks, and devise unconventional solutions to problems,” says Rowan Garites. “…however, we are ready to venture into new territory, the RoboSub competition appears to be a logical next step for us. It will definitely be challenging, our software, mechanical, and electrical teams will have their work cut out for them. Constructing an autonomous vehicle without a tether makes the engineering process exponentially more difficult,” adds Stephanie L’Heureux. RoboSub challenges teams worldwide to design and build Autonomous Underwater Vehicles (AUVs). Cabrillo Robotics Club is eager to participate in next year’s RoboSub competition and is actively seeking donations and sponsors for support.
]]>
\ No newline at end of file
diff --git a/_site/hydrozoa.html b/_site/hydrozoa.html
new file mode 100644
index 0000000..4aed02c
--- /dev/null
+++ b/_site/hydrozoa.html
@@ -0,0 +1 @@
+ Cabrillo Robotics Club | HydrozoaCabrillo Robotics Club
MATE 2022
Hydrozoa
Pioneer First Place Overall MATE World Championship
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Viverra habitasse quis cras sem etiam aptent ad. Orci nam praesent proin faucibus faucibus libero augue euismod. Nascetur fusce vestibulum tempus natoque nulla suscipit ultrices porta iaculis. Aauctor tristique enim vitae sem accumsan. Etiam ipsum risus ligula dictum nunc consequat senectus aenean. Tempus natoque aenean, tempor fermentum suspendisse dui varius nam.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum odor amet, consectetuer adipiscing elit. Maecenas sollicitudin dapibus; vestibulum et blandit pellentesque augue volutpat. Magna sodales ornare nascetur fermentum arcu diam. Lacus consequat mollis condimentum parturient magnis rutrum imperdiet egestas. Ad nisi vestibulum at cubilia bibendum eu consectetur. Pellentesque venenatis parturient suscipit vel iaculis etiam. Alorem pulvinar porta est natoque augue dictum. Proin rutrum tristique dictum ultricies lectus tellus phasellus. Facilisis lectus quisque tristique ut duis ultrices himenaeos dictum. Magnis ex porta porta, nullam tempus laoreet.
diff --git a/_site/lazer-shark.html b/_site/lazer-shark.html
new file mode 100644
index 0000000..8589e11
--- /dev/null
+++ b/_site/lazer-shark.html
@@ -0,0 +1 @@
+ Cabrillo Robotics Club | Lazer SharkCabrillo Robotics Club
RoboSub 2025
Lazer Shark
AUV
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
diff --git a/_site/project.html b/_site/project.html
new file mode 100644
index 0000000..8772036
--- /dev/null
+++ b/_site/project.html
@@ -0,0 +1 @@
+ Cabrillo Robotics Club | ProjectsCabrillo Robotics Club
Projects
diff --git a/_site/seahawk-II.html b/_site/seahawk-II.html
new file mode 100644
index 0000000..0b16563
--- /dev/null
+++ b/_site/seahawk-II.html
@@ -0,0 +1 @@
+ Cabrillo Robotics Club | SeaHawk IICabrillo Robotics Club
MATE 2024
SeaHawk II
Explorer First Place Overall MATE World Championship
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
diff --git a/_site/seahawk.html b/_site/seahawk.html
new file mode 100644
index 0000000..fbfb160
--- /dev/null
+++ b/_site/seahawk.html
@@ -0,0 +1 @@
+ Cabrillo Robotics Club | SeaHawkCabrillo Robotics Club
MATE 2023
SeaHawk
Pioneer First Place Overall MATE World Championship
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
diff --git a/_site/search.json b/_site/search.json
new file mode 100644
index 0000000..57b04b3
--- /dev/null
+++ b/_site/search.json
@@ -0,0 +1 @@
+[ { "title" : "Cabrillo Robotics Wins International Robotics Competition", "tags" : "MATE, ROV, Seahawk II", "url" : "http://localhost:4000/blog/cabrillo-robotics-wins-international-robotics-competition", "date" : "June 23, 2024", "description" : "The Cabrillo Robotics Club achieved an impressive victory, taking home First Place in the most advanced category of the Marine Advanced Technology Education (MATE) World Championship.", "content" : "The Cabrillo Robotics Club achieved an impressive victory, taking home First Place in the most advanced category of the Marine Advanced Technology Education (MATE) World Championship. Held in Kingsport, TN from June 20-22 2024, the competition gathered 82 teams from 17 countries to showcase ad...", "image" : "https://raw.githubusercontent.com/thedevslot/WhatATheme/master/assets/images/SamplePost.png?token=AHMQUEPC4IFADOF5VG4QVN26Z64GG", "readtime" : "4" } ]
diff --git a/_site/team.html b/_site/team.html
new file mode 100644
index 0000000..3eae37e
--- /dev/null
+++ b/_site/team.html
@@ -0,0 +1 @@
+ Cabrillo Robotics ClubCabrillo Robotics Club
Cabrillo Robotics Club (CRC) is a dedicated team of students from Cabrillo College in Aptos, California united by a mutual passion for robotics. We design and engineer cutting-edge solutions, drawing from the diverse experience and knowledge of our interdisciplinary members. The team is structured into four specialized subteams: Electrical, Mechanical, Software, and Marketing. This decentralized approach fosters autonomy within each division, allowing members to focus on their areas of expertise, while working collaboratively to create innovative and reliable robotic systems.
Members
Stephanie L'Heureux
Software & Marketing
Liam Gilligan
Software
Isaac Wax
Electrical & Mechanical
Rowan Garties
Mechanical
Massimo Ginella
Software
×
Mentors
Mike Matera
CIS Chair
Andrew Thach
CS Professor
×
Alumni
Isaac Eda
SJSU EE
×
diff --git a/assets/css/style.scss b/assets/css/style.scss
new file mode 100644
index 0000000..c2f7a1b
--- /dev/null
+++ b/assets/css/style.scss
@@ -0,0 +1,659 @@
+---
+---
+
+@import "main.scss";
+
+:root {
+ --primary: #9172f8;
+ --background: #121212;
+ --background-secondary: #242424;
+ --header: #f5f5f5;
+ --text: #a2a2a2;
+ --seahawk-II: #fe5e20;
+ --seahawk: #79bde8;
+ --hydrozoa: #3961e2;
+}
+
+// Global settings
+p { color: var(--text); }
+.title { color: var(--header); }
+body { background-color: var(--background); }
+
+#navbar {
+ // semi transparent
+ background-color: rgba(3, 3, 3, 0.9);
+ color: var(--text);
+ .website-title {
+ color: var(--header);
+ }
+ // when the page is active, make the name bold
+ .is-active {
+ font-weight: 600;
+ background-color: transparent;
+ }
+ // this is the title of the dropdown
+ .navbar-link {
+ background-color: transparent !important;
+ }
+ .navbar-dropdown {
+ background-color: rgba(3, 3, 3, 0.9);
+ border: none;
+ // border on the lower two corners
+ border-radius: 0 0 10px 10px;
+ right: 0;
+ left: auto;
+ }
+ // change color on hover
+ a.navbar-item:hover,
+ .navbar-link:hover {
+ background-color: transparent !important;
+ color: var(--primary) !important;
+ }
+ a.navbar-item.is-active {
+ color: var(--primary) !important;
+ }
+ .navbar-link:not(.is-arrowless)::after {
+ border-color: var(--text);
+ }
+ .navbar-menu.is-active {
+ background-color: rgba(3, 3, 3, 0.9);
+ }
+ .navbar-item:hover {
+ background-color: transparent;
+ }
+}
+
+#showcase {
+ background: var(--background);
+ position: relative;
+
+ &::before {
+ filter: grayscale(100%);
+ background-image: url('{{site.heroimage}}');
+ background-position: center;
+ background-repeat: no-repeat;
+ background-size: cover;
+ background-attachment: fixed;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ left: 0px;
+ position: absolute;
+ content: "";
+ z-index: 1; // Ensure this is below the overlay
+ }
+
+ &::after {
+ background-color: rgba(0, 0, 0, 0.7);
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ left: 0px;
+ position: absolute;
+ content: "";
+ z-index: 2; // Ensure this is above the image
+ }
+
+ .title, .subtitle, .button {
+ position: relative;
+ z-index: 3; // Ensure text and buttons are above the overlay
+ }
+
+ .title {
+ margin: auto 0.75rem !important;
+ }
+
+ .subtitle {
+ letter-spacing: 0.25rem;
+ }
+
+ .button {
+ background-color: transparent;
+ border-color: var(--primary);
+ color: var(--primary);
+ }
+
+ .button:hover {
+ background-color: var(--primary);
+ border-color: var(--primary);
+ color: var(--header);
+ }
+}
+
+#project-showcase {
+ position: relative;
+ height: 50vh;
+ background: var(--background);
+
+ .hero-background {
+ width: 100%;
+ height: 100%;
+ background-size: cover;
+ background-position: center;
+ position: relative;
+ }
+ .overlay {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background-color: rgba(0, 0, 0, 0.7);
+ display: flex;
+ align-items: flex-end;
+ justify-content: flex-start;
+ padding: 2rem;
+ }
+ .title-text {
+ text-align: left;
+ }
+
+ .title-text h1, .title-text h3 {
+ margin: 0;
+ }
+}
+
+
+#project-gallery {
+ #project-gallery-card {
+ position: relative;
+ .image {
+ position: relative;
+ background-size: cover;
+ background-position: center;
+ // rounded corners
+ border-radius: 10px;
+ // hide any image which goes outside the corner radius
+ overflow: hidden;
+ }
+ }
+}
+
+#about {
+ // three buttons in a line, flexible sizes
+ .buttons {
+ color: var(--primary)!important;
+ display: flex;
+ justify-content: space-between;
+ flex-wrap: wrap;
+ }
+
+ .buttons a {
+ color: var(--primary)!important;
+ border-color: var(--primary)!important;
+ background-color: transparent;
+ flex: 1;
+ text-align: center;
+ max-width: 20vw;
+ min-width: 10vw;
+ }
+
+ .buttons a:hover {
+ color: var(--header)!important;
+ background-color:var(--primary);
+ border-color: var(--primary)!important;
+ flex: 1;
+ text-align: center;
+ max-width: 20vw;
+ min-width: 10vw;
+ }
+
+
+ // Mobile button settings
+ @media (max-width: 768px) {
+ .buttons {
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ }
+
+ .buttons a {
+ width: 90%;
+ max-width: 90%;
+ margin: 0 auto;
+ margin-bottom: 1rem;
+ }
+ }
+}
+
+#robots {
+ #robot-card {
+ position: relative;
+ .image {
+ position: relative;
+ background-size: cover;
+ background-position: center;
+ border-radius: 10px;
+ overflow: hidden;
+ transition: filter 0.5s ease, transform 0.5s ease;
+ filter: grayscale(100%);
+ }
+ .image::before {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: rgba(0, 0, 0, 0.7);
+ pointer-events: none;
+ }
+ .overlay {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ pointer-events: none;
+ transition: opacity 0.5s ease;
+ }
+ .robot-link:hover .image {
+ filter: grayscale(0%);
+ }
+ .robot-link:hover .image::before {
+ opacity: 20;
+ }
+ h2 {
+ transition: opacity 0.5s ease;
+ color: var(--primary) !important;
+ }
+ h2, p {
+ z-index: 2;
+ position: relative;
+ transition: opacity 0.5s ease;
+ pointer-events: none;
+ }
+ .robot-link:hover h2 {
+ color: var(--header) !important;
+ }
+ }
+}
+
+
+
+#blog {
+ .hero-body {
+ padding: 3rem 0.25rem 1rem 0.25rem;
+ }
+
+ .container {
+ margin: 1.5rem auto;
+ }
+
+ #blog-card {
+ transition: all 0.25s ease;
+ margin-bottom: 0.5vmax;
+ transform: scale(0.85);
+ margin-right: 2.5vmax;
+ margin-left: 2.5vmax;
+ line-height: normal;
+ border-radius: 0.25rem;
+ -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
+ -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
+ box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
+
+ &:hover {
+ transform: scale(0.875);
+ -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
+ -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
+ box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
+ }
+
+ @media (max-width: 768px) {
+ transform: scale(1);
+ margin-bottom: 5vmax !important;
+
+ &:hover {
+ transform: scale(1.025);
+ margin-bottom: 5vmax !important;
+ -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
+ -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
+ box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
+ }
+
+ .image {
+ padding-top: 50% !important;
+ }
+ }
+
+ .title {
+ margin: 0.5rem !important;
+ }
+
+ .content {
+ margin: 0.5rem;
+ }
+
+ .column {
+ display: grid;
+
+ .image {
+ border-radius: 0.25rem;
+ background-position: center;
+ background-repeat: no-repeat;
+ background-size: cover;
+ }
+ }
+ }
+}
+
+#search {
+ border-bottom: 0.15rem solid;
+
+ input {
+ border: none;
+ outline: none;
+ font-weight: 500 !important;
+
+ &::placeholder {
+ font-weight: 500;
+ color: grey;
+ letter-spacing: 0.25rem;
+ }
+ }
+
+ .button {
+ transition: all 0.25s ease;
+ &:focus {
+ outline: 0.25rem solid #ede5f2;
+ }
+
+ border: none;
+ }
+}
+
+
+#footer {
+ padding: 2rem 0;
+ background-color: var(--header) !important;
+ .columns {
+ display: flex;
+ justify-content: space-between;
+ }
+ .column {
+ margin-bottom: 1.5rem;
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+ }
+ .socials {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+ }
+ .social-link {
+ display: flex;
+ align-items: center;
+ margin-bottom: 0.5rem;
+ color: var(--background);
+ text-decoration: none;
+ }
+ .social-link i {
+ margin-right: 0.5rem;
+ font-size: 1.5rem;
+ }
+ // Mobile
+ @media (min-width: 769px) {
+ .column {
+ margin-left: 2rem;
+ margin-right: 2rem;
+ }
+ }
+ .social-link,
+ .address-link {
+ display: block;
+ margin-bottom: 0.5rem;
+ }
+ // change color on hover
+ .social-link:hover,
+ .address-link:hover {
+ color: var(--primary);
+ }
+}
+
+#project {
+ .columns {
+ .column {
+ border-radius: 0.5rem;
+ .image {
+ background-position: center;
+ background-repeat: no-repeat;
+ background-size: cover;
+ }
+ }
+ }
+
+ #project-card {
+ -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
+ -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
+ box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
+ transform: scale(0.95);
+ transition: all 0.5s ease;
+ margin-bottom: 0.5rem !important;
+ display: inline-table;
+ &:hover {
+ transform: scale(0.975);
+ }
+ }
+ .card {
+ transition: all 0.25s ease;
+ &:hover {
+ background-color: rgba($color: #111113, $alpha: 0.90)!important;
+ }
+ }
+}
+
+#team {
+ .description {
+ min-height: 25vh;
+ }
+ .columns {
+ margin-top: 20px;
+ .column {
+ margin-bottom: 20px;
+ .image {
+ // only round top two corners
+ border-radius: 10px 10px 0 0;
+ // hide part of image which gets rounded off
+ overflow: hidden;
+ }
+ }
+ }
+ .card {
+ transition: all 0.25s ease;
+ border-radius: 10px;
+ overflow: hidden;
+ background-color: var(--background-secondary);
+ }
+ .person-card:hover {
+ transform: scale(1.05);
+ }
+ .person-image {
+ background-size: cover;
+ background-position: center;
+ border-radius: 10px;
+ }
+ .popup {
+ display: none;
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background-color: rgba(0, 0, 0, 0.8);
+ justify-content: center;
+ align-items: center;
+ z-index: 1000;
+ }
+ .popup.active {
+ display: flex;
+ }
+ .popup-content {
+ background-color: var(--background-secondary);
+ padding: 20px;
+ border-radius: 10px;
+ display: flex;
+ align-items: flex-start;
+ max-width: 60vh;
+ max-height: 80vh;
+ width: 90%;
+ overflow: auto;
+ }
+
+ .popup-close {
+ position: absolute;
+ top: 10px;
+ right: 20px;
+ font-size: 30px;
+ cursor: pointer;
+ color: var(--header);
+ }
+
+ .popup-image-container {
+ flex: 0 0 50%;
+ margin-right: 20px;
+ }
+ .popup-image-container img {
+ width: 100%;
+ height: auto;
+ max-height: 60vh;
+ object-fit: cover;
+ border-radius: 10px;
+ }
+ .popup-text {
+ flex: 1;
+ }
+
+ .popup h2, .popup p {
+ margin: 10px 0;
+ text-align: left;
+ }
+ .popup h2 {
+ color: var(--header);
+ font-weight: bold;
+ }
+}
+
+#members {
+ scroll-margin-top: 60px;
+}
+
+#team-showcase {
+ position: relative;
+ height: 75vh;
+ background: var(--background);
+
+ .hero-background {
+ width: 100%;
+ height: 100%;
+ background-size: cover;
+ background-position: center;
+ position: relative;
+ }
+ .overlay {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background-color: rgba(0, 0, 0, 0.7);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 2rem;
+ }
+ .button {
+ background-color: transparent;
+ border-color: var(--primary);
+ color: var(--primary);
+ }
+
+ .button:hover {
+ background-color: var(--primary);
+ border-color: var(--primary);
+ color: var(--header);
+ }
+}
+
+#post {
+ @media (min-width: 768px) {
+ margin: auto 2.5vmax;
+ }
+ a {
+ text-decoration: underline;
+ }
+ #title {
+ text-decoration: none;
+ }
+ .title {
+ margin: auto;
+ }
+ #post-image {
+ border-radius: 0.25rem;
+ }
+ .subtitle {
+ letter-spacing: 0.05rem;
+ }
+
+ #description {
+ margin-bottom: 1.25vmax;
+ }
+
+ .tag {
+ margin: 0.15rem auto;
+ }
+ .content {
+ ol, ul, blockquote {
+ display: inline-block;
+ }
+ hr{
+ background-color: grey;
+ }
+ img, iframe {
+ max-width: calc(100% - 25vw);
+ margin: 0.25rem auto;
+ @media (max-width: 768px) {
+ max-width: calc(100% - 5vw);
+ }
+ }
+ ul, ol {
+ display: inline-block;
+ }
+ }
+
+ .container {
+ margin: 2.5rem auto;
+ word-break: break-word;
+ max-width: -webkit-fill-available;
+ }
+
+ #disqus_thread {
+ margin-top: 5vmax;
+ }
+}
+
+#page-section {
+ .content {
+ ul, ol, blockquote {
+ display: inline-block;
+ }
+ }
+}
+
+#latest-project {
+ .button {
+ background-color:transparent;
+ border-color:var(--primary);
+ color:var(--primary);
+ }
+ .button:hover {
+ background-color:var(--primary);
+ border-color:var(--primary);
+ color:var(--header);
+ }
+}
\ No newline at end of file
diff --git a/assets/images/1280x720 Placeholder.png b/assets/images/1280x720 Placeholder.png
new file mode 100644
index 0000000..bad5cf2
Binary files /dev/null and b/assets/images/1280x720 Placeholder.png differ
diff --git a/assets/images/How to install and use WhatATheme.png b/assets/images/How to install and use WhatATheme.png
new file mode 100644
index 0000000..c18c366
Binary files /dev/null and b/assets/images/How to install and use WhatATheme.png differ
diff --git a/assets/images/SamplePost.png b/assets/images/SamplePost.png
new file mode 100644
index 0000000..1965e98
Binary files /dev/null and b/assets/images/SamplePost.png differ
diff --git a/assets/images/What is Jekyll and How to use it.png b/assets/images/What is Jekyll and How to use it.png
new file mode 100644
index 0000000..2248718
Binary files /dev/null and b/assets/images/What is Jekyll and How to use it.png differ
diff --git a/assets/images/cover.jpg b/assets/images/cover.jpg
new file mode 100644
index 0000000..dca0539
Binary files /dev/null and b/assets/images/cover.jpg differ
diff --git a/assets/images/hero.webp b/assets/images/hero.webp
new file mode 100644
index 0000000..b41dc91
Binary files /dev/null and b/assets/images/hero.webp differ
diff --git a/assets/images/hydrozoa/gallery-hydrozoa/hydrozoa-surface.webp b/assets/images/hydrozoa/gallery-hydrozoa/hydrozoa-surface.webp
new file mode 100644
index 0000000..83e6e0f
Binary files /dev/null and b/assets/images/hydrozoa/gallery-hydrozoa/hydrozoa-surface.webp differ
diff --git a/assets/images/hydrozoa/gallery-hydrozoa/hydrozoa-underwater.webp b/assets/images/hydrozoa/gallery-hydrozoa/hydrozoa-underwater.webp
new file mode 100644
index 0000000..ce7aa19
Binary files /dev/null and b/assets/images/hydrozoa/gallery-hydrozoa/hydrozoa-underwater.webp differ
diff --git a/assets/images/hydrozoa/gallery-hydrozoa/mate-team.webp b/assets/images/hydrozoa/gallery-hydrozoa/mate-team.webp
new file mode 100644
index 0000000..c278bba
Binary files /dev/null and b/assets/images/hydrozoa/gallery-hydrozoa/mate-team.webp differ
diff --git a/assets/images/hydrozoa/gallery-hydrozoa/team.webp b/assets/images/hydrozoa/gallery-hydrozoa/team.webp
new file mode 100644
index 0000000..2a46bbd
Binary files /dev/null and b/assets/images/hydrozoa/gallery-hydrozoa/team.webp differ
diff --git a/assets/images/hydrozoa/hydrozoa-hero.webp b/assets/images/hydrozoa/hydrozoa-hero.webp
new file mode 100644
index 0000000..f349f44
Binary files /dev/null and b/assets/images/hydrozoa/hydrozoa-hero.webp differ
diff --git a/assets/images/hydrozoa/hydrozoa.webp b/assets/images/hydrozoa/hydrozoa.webp
new file mode 100644
index 0000000..424e247
Binary files /dev/null and b/assets/images/hydrozoa/hydrozoa.webp differ
diff --git a/assets/images/logo.svg b/assets/images/logo.svg
new file mode 100644
index 0000000..4a697df
--- /dev/null
+++ b/assets/images/logo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/assets/images/meta.jpg b/assets/images/meta.jpg
new file mode 100644
index 0000000..6a92a0b
Binary files /dev/null and b/assets/images/meta.jpg differ
diff --git a/assets/images/seahawk-II/VPFTesting2.png b/assets/images/seahawk-II/VPFTesting2.png
new file mode 100644
index 0000000..0028d79
Binary files /dev/null and b/assets/images/seahawk-II/VPFTesting2.png differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/dashboard.jpeg b/assets/images/seahawk-II/gallery-seahawk-II/dashboard.jpeg
new file mode 100644
index 0000000..81e0a45
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/dashboard.jpeg differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/deploy.jpeg b/assets/images/seahawk-II/gallery-seahawk-II/deploy.jpeg
new file mode 100644
index 0000000..4c1599c
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/deploy.jpeg differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/electrical-engrs.jpeg b/assets/images/seahawk-II/gallery-seahawk-II/electrical-engrs.jpeg
new file mode 100644
index 0000000..7393014
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/electrical-engrs.jpeg differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/interview.webp b/assets/images/seahawk-II/gallery-seahawk-II/interview.webp
new file mode 100644
index 0000000..6c30038
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/interview.webp differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/leak-test.jpg b/assets/images/seahawk-II/gallery-seahawk-II/leak-test.jpg
new file mode 100644
index 0000000..0fc613b
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/leak-test.jpg differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/mate-comp-pool.jpeg b/assets/images/seahawk-II/gallery-seahawk-II/mate-comp-pool.jpeg
new file mode 100644
index 0000000..99e8204
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/mate-comp-pool.jpeg differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/mate-comp-team.jpeg b/assets/images/seahawk-II/gallery-seahawk-II/mate-comp-team.jpeg
new file mode 100644
index 0000000..d64e980
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/mate-comp-team.jpeg differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/matt-photo-bomb.jpeg b/assets/images/seahawk-II/gallery-seahawk-II/matt-photo-bomb.jpeg
new file mode 100644
index 0000000..e82e1be
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/matt-photo-bomb.jpeg differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/pool-test.jpeg b/assets/images/seahawk-II/gallery-seahawk-II/pool-test.jpeg
new file mode 100644
index 0000000..9e7e107
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/pool-test.jpeg differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/pre-product-demo-pool-test.jpeg b/assets/images/seahawk-II/gallery-seahawk-II/pre-product-demo-pool-test.jpeg
new file mode 100644
index 0000000..1f9081a
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/pre-product-demo-pool-test.jpeg differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/presentation.jpeg b/assets/images/seahawk-II/gallery-seahawk-II/presentation.jpeg
new file mode 100644
index 0000000..610c696
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/presentation.jpeg differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot-2.webp b/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot-2.webp
new file mode 100644
index 0000000..18b55f2
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot-2.webp differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot.webp b/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot.webp
new file mode 100644
index 0000000..98e8220
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot.webp differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/product-demo.webp b/assets/images/seahawk-II/gallery-seahawk-II/product-demo.webp
new file mode 100644
index 0000000..e9dd895
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/product-demo.webp differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II-mike-and-steph.webp b/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II-mike-and-steph.webp
new file mode 100644
index 0000000..b1c6624
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II-mike-and-steph.webp differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II.jpg b/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II.jpg
new file mode 100644
index 0000000..161eb24
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II.jpg differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II.webp b/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II.webp
new file mode 100644
index 0000000..60c0b68
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II.webp differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/stack.jpg b/assets/images/seahawk-II/gallery-seahawk-II/stack.jpg
new file mode 100644
index 0000000..4dfc431
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/stack.jpg differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/stack.webp b/assets/images/seahawk-II/gallery-seahawk-II/stack.webp
new file mode 100644
index 0000000..ae931ed
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/stack.webp differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/team.jpg b/assets/images/seahawk-II/gallery-seahawk-II/team.jpg
new file mode 100644
index 0000000..9f66127
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/team.jpg differ
diff --git a/assets/images/seahawk-II/gallery-seahawk-II/trophy.webp b/assets/images/seahawk-II/gallery-seahawk-II/trophy.webp
new file mode 100644
index 0000000..d92b727
Binary files /dev/null and b/assets/images/seahawk-II/gallery-seahawk-II/trophy.webp differ
diff --git a/assets/images/seahawk-II/seahawk-II-hero.webp b/assets/images/seahawk-II/seahawk-II-hero.webp
new file mode 100644
index 0000000..5390af4
Binary files /dev/null and b/assets/images/seahawk-II/seahawk-II-hero.webp differ
diff --git a/assets/images/seahawk-II/seahawk-II-info-graphic.svg b/assets/images/seahawk-II/seahawk-II-info-graphic.svg
new file mode 100644
index 0000000..3000c55
--- /dev/null
+++ b/assets/images/seahawk-II/seahawk-II-info-graphic.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/assets/images/seahawk-II/seahawk-II-outline.svg b/assets/images/seahawk-II/seahawk-II-outline.svg
new file mode 100644
index 0000000..4885c71
--- /dev/null
+++ b/assets/images/seahawk-II/seahawk-II-outline.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/assets/images/seahawk/gallery-seahawk/bonus-mission.jpeg b/assets/images/seahawk/gallery-seahawk/bonus-mission.jpeg
new file mode 100644
index 0000000..8a66d5b
Binary files /dev/null and b/assets/images/seahawk/gallery-seahawk/bonus-mission.jpeg differ
diff --git a/assets/images/seahawk/gallery-seahawk/flags.jpeg b/assets/images/seahawk/gallery-seahawk/flags.jpeg
new file mode 100644
index 0000000..d920e25
Binary files /dev/null and b/assets/images/seahawk/gallery-seahawk/flags.jpeg differ
diff --git a/assets/images/seahawk/gallery-seahawk/logic-tube.jpeg b/assets/images/seahawk/gallery-seahawk/logic-tube.jpeg
new file mode 100644
index 0000000..48db2c3
Binary files /dev/null and b/assets/images/seahawk/gallery-seahawk/logic-tube.jpeg differ
diff --git a/assets/images/seahawk/gallery-seahawk/pool-test.jpeg b/assets/images/seahawk/gallery-seahawk/pool-test.jpeg
new file mode 100644
index 0000000..b7c0115
Binary files /dev/null and b/assets/images/seahawk/gallery-seahawk/pool-test.jpeg differ
diff --git a/assets/images/seahawk/gallery-seahawk/seahawk-mate-background.jpeg b/assets/images/seahawk/gallery-seahawk/seahawk-mate-background.jpeg
new file mode 100644
index 0000000..9488c6b
Binary files /dev/null and b/assets/images/seahawk/gallery-seahawk/seahawk-mate-background.jpeg differ
diff --git a/assets/images/seahawk/gallery-seahawk/seahawk-underwater.jpeg b/assets/images/seahawk/gallery-seahawk/seahawk-underwater.jpeg
new file mode 100644
index 0000000..085e6ab
Binary files /dev/null and b/assets/images/seahawk/gallery-seahawk/seahawk-underwater.jpeg differ
diff --git a/assets/images/seahawk/gallery-seahawk/team-photo-hold-seahawk.jpeg b/assets/images/seahawk/gallery-seahawk/team-photo-hold-seahawk.jpeg
new file mode 100644
index 0000000..d092ed6
Binary files /dev/null and b/assets/images/seahawk/gallery-seahawk/team-photo-hold-seahawk.jpeg differ
diff --git a/assets/images/seahawk/gallery-seahawk/team-photo-marketing-display.jpeg b/assets/images/seahawk/gallery-seahawk/team-photo-marketing-display.jpeg
new file mode 100644
index 0000000..cb73524
Binary files /dev/null and b/assets/images/seahawk/gallery-seahawk/team-photo-marketing-display.jpeg differ
diff --git a/assets/images/seahawk/gallery-seahawk/team-photo-mate-background.jpeg b/assets/images/seahawk/gallery-seahawk/team-photo-mate-background.jpeg
new file mode 100644
index 0000000..acf2bb0
Binary files /dev/null and b/assets/images/seahawk/gallery-seahawk/team-photo-mate-background.jpeg differ
diff --git a/assets/images/seahawk/gallery-seahawk/team-photo-post-win.jpeg b/assets/images/seahawk/gallery-seahawk/team-photo-post-win.jpeg
new file mode 100644
index 0000000..56fad49
Binary files /dev/null and b/assets/images/seahawk/gallery-seahawk/team-photo-post-win.jpeg differ
diff --git a/assets/images/seahawk/gallery-seahawk/trophy.png b/assets/images/seahawk/gallery-seahawk/trophy.png
new file mode 100644
index 0000000..519cd6f
Binary files /dev/null and b/assets/images/seahawk/gallery-seahawk/trophy.png differ
diff --git a/assets/images/seahawk/seahawk-hero.jpeg b/assets/images/seahawk/seahawk-hero.jpeg
new file mode 100644
index 0000000..338a598
Binary files /dev/null and b/assets/images/seahawk/seahawk-hero.jpeg differ
diff --git a/assets/images/seahawk/seahawk.jpeg b/assets/images/seahawk/seahawk.jpeg
new file mode 100644
index 0000000..1a3f63c
Binary files /dev/null and b/assets/images/seahawk/seahawk.jpeg differ
diff --git a/assets/js/simple-jekyll-search.js b/assets/js/simple-jekyll-search.js
new file mode 100644
index 0000000..b0bd42b
--- /dev/null
+++ b/assets/js/simple-jekyll-search.js
@@ -0,0 +1,6 @@
+/*!
+ * Simple-Jekyll-Search v1.7.4 (https://github.com/christian-fei/Simple-Jekyll-Search)
+ * Copyright 2015-2020, Christian Fei
+ * Licensed under the MIT License.
+ */
+ !function(){"use strict";var o={compile:function M(r){return i.template.replace(i.pattern,function(t,e){var n=i.middleware(e,r[e],i.template);return void 0!==n?n:r[e]||t})},setOptions:function T(t){i.pattern=t.pattern||i.pattern,i.template=t.template||i.template,"function"==typeof t.middleware&&(i.middleware=t.middleware)}},i={};i.pattern=/\{(.*?)\}/g,i.template="",i.middleware=function(){};var n=function x(t,e){var n=e.length,r=t.length;if(n{title}',templateMiddleware:Function.prototype,sortMiddleware:function(){return 0},noResultsText:"No results found",limit:10,fuzzy:!1,exclude:[]},O=t({required:g=["searchInput","resultsContainer","json"]}),z=function(t){return 0
diff --git a/index.md b/index.md
new file mode 100644
index 0000000..05653e9
--- /dev/null
+++ b/index.md
@@ -0,0 +1,3 @@
+---
+layout: default
+---
\ No newline at end of file
diff --git a/lazer-shark.md b/lazer-shark.md
new file mode 100644
index 0000000..d695261
--- /dev/null
+++ b/lazer-shark.md
@@ -0,0 +1,13 @@
+---
+layout: project-page
+comp: "RoboSub 2025"
+title: "Lazer Shark"
+subtitle: "AUV"
+hero-image: "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png"
+image: "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png"
+description: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+gallery_file: ""
+documentation:
+github:
+---
+
diff --git a/project.md b/project.md
new file mode 100644
index 0000000..782a444
--- /dev/null
+++ b/project.md
@@ -0,0 +1,5 @@
+---
+layout: project
+title: Projects
+---
+
diff --git a/requirements.txt b/requirements.txt
deleted file mode 100644
index befbf39..0000000
--- a/requirements.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-sphinx
-docutils==0.19
-pydata-sphinx-theme
-myst-parser
-sphinxawesome-theme
\ No newline at end of file
diff --git a/seahawk-II.md b/seahawk-II.md
new file mode 100644
index 0000000..ca35fe6
--- /dev/null
+++ b/seahawk-II.md
@@ -0,0 +1,49 @@
+---
+layout: project-page
+color: warning
+comp: "MATE 2024"
+title: "SeaHawk II"
+subtitle: "Explorer First Place Overall MATE World Championship"
+hero-image: https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/782b579c031c16835e0fee2b57a22246c1a79618/assets/images/seahawk-II/seahawk-II-hero.webp
+cad: "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png"
+description: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+pdf: technical-report-2024.pdf
+gallery:
+ - image: https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/41309abdbb5d93dbc6c0119bf8f97a3bb38ad743/assets/images/seahawk-II/gallery-seahawk-II/interview.webp
+ text: Cabrillo Robotics interviewed by Lookout Santa Cruz (Credit Natasha Loudermilk)
+ - image: https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/41309abdbb5d93dbc6c0119bf8f97a3bb38ad743/assets/images/seahawk-II/gallery-seahawk-II/seahawk-II-mike-and-steph.webp
+ text: Advisor Mike Matera and Stephanie L'Heureux with the SeaHawk II (Credit Natasha Loudermilk)
+ - image: https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/41309abdbb5d93dbc6c0119bf8f97a3bb38ad743/assets/images/seahawk-II/gallery-seahawk-II/stack.webp
+ text: Electronics stack up close (Credit Natasha Loudermilk)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/41309abdbb5d93dbc6c0119bf8f97a3bb38ad743/assets/images/seahawk-II/gallery-seahawk-II/hero.jpg?raw=true
+ text: SeaHawk II after leak test (Credit Stephanie L'Heureux)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/41309abdbb5d93dbc6c0119bf8f97a3bb38ad743/assets/images/seahawk-II/gallery-seahawk-II/electrical-engrs.jpeg?raw=true
+ text: Electrical engineers and their stack (Credit Stephanie L'Heureux)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/41309abdbb5d93dbc6c0119bf8f97a3bb38ad743/assets/images/seahawk-II/gallery-seahawk-II/stack.jpg?raw=true
+ text: Electronics stack (Credit Stephanie L'Heureux)
+ - image: https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/782b579c031c16835e0fee2b57a22246c1a79618/assets/images/seahawk-II/gallery-seahawk-II/trophy.webp
+ text: EXPLORER All-Around Champion (Credit Stephanie L'Heureux)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk-II/gallery-seahawk-II/deploy.jpeg?raw=true
+ text: Liam Gilligan and Isaac Eda deploy SeaHawk II for a pool test (Credit Stephanie L'Heureux)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk-II/gallery-seahawk-II/presentation.jpeg?raw=true
+ text: Cabrillo Robotics at their engineering presentation (Credit MATE)
+ - image: https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/782b579c031c16835e0fee2b57a22246c1a79618/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot.webp
+ text: Pilot Isaac Eda and Co-Pilot Stephanie L'Heureux (Credit MATE)
+ - image: https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/782b579c031c16835e0fee2b57a22246c1a79618/assets/images/seahawk-II/gallery-seahawk-II/product-demo-pilot-2.webp
+ text: Deck crew at the competition product demo (Credit MATE)
+ - image: https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/782b579c031c16835e0fee2b57a22246c1a79618/assets/images/seahawk-II/gallery-seahawk-II/product-demo.webp
+ text: Cabrillo Robotics at their product demo (Credit MATE Twitch)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk-II/gallery-seahawk-II/pre-product-demo-pool-test.jpeg?raw=true
+ text: Isaac Wax and the SeaHawk II at a pool test before the product demo (Credit Stephanie L'Heureux)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk-II/gallery-seahawk-II/mate-comp-team.jpeg?raw=true
+ text: Cabrillo Robotics at the MATE World Championships (Credit Unknown)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk-II/gallery-seahawk-II/pool-test.jpeg?raw=true
+ text: SeaHawk II at a pool test (Credit Stephanie L'Heureux)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/a085caa5b114a6f86c9d88600ea182a43de7decc/assets/images/seahawk-II/gallery-seahawk-II/matt-photo-bomb.jpeg?raw=true
+ text: Cabrillo Robotics post victory selfie with Matt photo bomb (Credit Stephanie L'Heureux)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk-II/gallery-seahawk-II/mate-comp-pool.jpeg?raw=true
+ text: MATE World Championship Pool in Kingsport, TN (Credit Stephanie L'Heureux)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk-II/gallery-seahawk-II/dashboard.jpeg?raw=true
+ text: SeaHawk II pilot dashboard (Credit Stephanie L'Heureux)
+---
+
diff --git a/seahawk.md b/seahawk.md
new file mode 100644
index 0000000..0857563
--- /dev/null
+++ b/seahawk.md
@@ -0,0 +1,35 @@
+---
+layout: project-page
+color: info
+comp: "MATE 2023"
+title: "SeaHawk"
+subtitle: "Pioneer First Place Overall MATE World Championship"
+hero-image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk/seahawk-hero.jpeg?raw=true
+cad: "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png"
+description: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+pdf: technical-report-2023.pdf
+gallery:
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk/gallery-seahawk/bonus-mission.jpeg?raw=true
+ text: Cabrillo Robotics at the Bonus Mission (Credit Stephanie L'Heureux)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk/gallery-seahawk/flags.jpeg?raw=true
+ text: Flags of countries represented at the MATE World Championship (Credit Stephanie L'Heureux)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk/gallery-seahawk/logic-tube.jpeg?raw=true
+ text: Assembling the logic tube (Credit Stephanie L'Heureux)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk/gallery-seahawk/pool-test.jpeg?raw=true
+ text: Cabrillo Robotics team members at a pool test (Credit Stephanie L'Heureux)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk/gallery-seahawk/seahawk-mate-background.jpeg?raw=true
+ text: SeaHawk with the MATE Competition background (Credit Stephanie L'Heureux)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk/gallery-seahawk/seahawk-underwater.jpeg?raw=true
+ text: SeaHawk underwater at a pool test (Credit Stephanie L'Heureux)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk/gallery-seahawk/team-photo-hold-seahawk.jpeg?raw=true
+ text: Cabrillo Robotics holds SeaHawk celebrating completing all competition events (Credit Mike Matera)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk/gallery-seahawk/team-photo-marketing-display.jpeg?raw=true
+ text: Cabrillo Robotics in front of their marketing display (Credit Mike Matera)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk/gallery-seahawk/team-photo-mate-background.jpeg?raw=true
+ text: Cabrillo Robotics with their ROV and marketing display (Credit Mike Matera)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk/gallery-seahawk/team-photo-post-win.jpeg?raw=true
+ text: Cabrillo Robotics post first place win with tropy (Credit Unknown)
+ - image: https://github.com/CabrilloRoboticsClub/cabrillorobotics.github.io/blob/258a1699f10c378fb2a1d18c2a986080bf3b6a57/assets/images/seahawk/gallery-seahawk/trophy.png?raw=true
+ text: EXPLORER All-Around Champion (Credit Stephanie L'Heureux)
+---
+
diff --git a/search.json b/search.json
new file mode 100644
index 0000000..df61c6a
--- /dev/null
+++ b/search.json
@@ -0,0 +1,17 @@
+---
+layout: compress
+---
+[
+ {% for post in site.posts %}
+ {
+ "title" : "{{ post.title | escape }}",
+ "tags" : "{{ post.tags | join: ', ' }}",
+ "url" : "{{ site.url }}{{ site.baseurl }}{{ post.url }}",
+ "date" : "{{ post.date | date: '%-B %d, %Y' }}",
+ "description" : "{{ post.description | strip_newlines | strip_html | strip | escape }}",
+ "content" : "{{ post.content | truncate: '300' | strip_html | strip_newlines | strip | escape }}",
+ "image" : "{{post.post-image}}",
+ "readtime" : "{{ post.content | number_of_words | divided_by:180 }}"
+ } {% unless forloop.last %},{% endunless %}
+ {% endfor %}
+]
\ No newline at end of file
diff --git a/src/_static/Cabrillo Logo-Primary-RGB.png b/src/_static/Cabrillo Logo-Primary-RGB.png
deleted file mode 100644
index 664faa9..0000000
Binary files a/src/_static/Cabrillo Logo-Primary-RGB.png and /dev/null differ
diff --git a/src/_static/materov2022/logo/ROV logo.jpg b/src/_static/materov2022/logo/ROV logo.jpg
deleted file mode 100644
index 6d3f11a..0000000
Binary files a/src/_static/materov2022/logo/ROV logo.jpg and /dev/null differ
diff --git a/src/_static/materov2022/logo/Transparent.PNG b/src/_static/materov2022/logo/Transparent.PNG
deleted file mode 100644
index 798b5b1..0000000
Binary files a/src/_static/materov2022/logo/Transparent.PNG and /dev/null differ
diff --git a/src/_static/materov2022/logo/banner.PNG b/src/_static/materov2022/logo/banner.PNG
deleted file mode 100644
index 3c5a136..0000000
Binary files a/src/_static/materov2022/logo/banner.PNG and /dev/null differ
diff --git a/src/_static/materov2022/logo/main_logo.PNG b/src/_static/materov2022/logo/main_logo.PNG
deleted file mode 100644
index 2aa4e54..0000000
Binary files a/src/_static/materov2022/logo/main_logo.PNG and /dev/null differ
diff --git a/src/_static/materov2022/sponsors/Sapphire_Metal_Finishing.png b/src/_static/materov2022/sponsors/Sapphire_Metal_Finishing.png
deleted file mode 100644
index e705a38..0000000
Binary files a/src/_static/materov2022/sponsors/Sapphire_Metal_Finishing.png and /dev/null differ
diff --git a/src/_static/materov2022/sponsors/billet_metal_craft.jpg b/src/_static/materov2022/sponsors/billet_metal_craft.jpg
deleted file mode 100644
index 03571b4..0000000
Binary files a/src/_static/materov2022/sponsors/billet_metal_craft.jpg and /dev/null differ
diff --git a/src/_static/materov2022/sponsors/cabrillo_makerspace.png b/src/_static/materov2022/sponsors/cabrillo_makerspace.png
deleted file mode 100644
index e6dc39b..0000000
Binary files a/src/_static/materov2022/sponsors/cabrillo_makerspace.png and /dev/null differ
diff --git a/src/_static/materov2022/sponsors/cito_medical.jpg b/src/_static/materov2022/sponsors/cito_medical.jpg
deleted file mode 100644
index eb13850..0000000
Binary files a/src/_static/materov2022/sponsors/cito_medical.jpg and /dev/null differ
diff --git a/src/_static/materov2022/sponsors/dassault_systems.png b/src/_static/materov2022/sponsors/dassault_systems.png
deleted file mode 100644
index cc0a40b..0000000
Binary files a/src/_static/materov2022/sponsors/dassault_systems.png and /dev/null differ
diff --git a/src/_static/materov2022/sponsors/logo-ascc-blue.png b/src/_static/materov2022/sponsors/logo-ascc-blue.png
deleted file mode 100644
index b520314..0000000
Binary files a/src/_static/materov2022/sponsors/logo-ascc-blue.png and /dev/null differ
diff --git a/src/_static/materov2022/sponsors/psi_consulting.png b/src/_static/materov2022/sponsors/psi_consulting.png
deleted file mode 100644
index 2bec3f8..0000000
Binary files a/src/_static/materov2022/sponsors/psi_consulting.png and /dev/null differ
diff --git a/src/_static/materov2023/sponsors/altium.png b/src/_static/materov2023/sponsors/altium.png
deleted file mode 100644
index c37d865..0000000
Binary files a/src/_static/materov2023/sponsors/altium.png and /dev/null differ
diff --git a/src/_static/materov2023/sponsors/bay-rubber.jpg b/src/_static/materov2023/sponsors/bay-rubber.jpg
deleted file mode 100644
index 2596edd..0000000
Binary files a/src/_static/materov2023/sponsors/bay-rubber.jpg and /dev/null differ
diff --git a/src/_static/materov2023/sponsors/billet_metal_craft.jpg b/src/_static/materov2023/sponsors/billet_metal_craft.jpg
deleted file mode 100644
index 03571b4..0000000
Binary files a/src/_static/materov2023/sponsors/billet_metal_craft.jpg and /dev/null differ
diff --git a/src/_static/materov2023/sponsors/bulgin.png b/src/_static/materov2023/sponsors/bulgin.png
deleted file mode 100644
index a336c49..0000000
Binary files a/src/_static/materov2023/sponsors/bulgin.png and /dev/null differ
diff --git a/src/_static/materov2023/sponsors/cabrillo_makerspace.png b/src/_static/materov2023/sponsors/cabrillo_makerspace.png
deleted file mode 100644
index e6dc39b..0000000
Binary files a/src/_static/materov2023/sponsors/cabrillo_makerspace.png and /dev/null differ
diff --git a/src/_static/materov2023/sponsors/cabrillofoundation.svg b/src/_static/materov2023/sponsors/cabrillofoundation.svg
deleted file mode 100644
index eff3ac9..0000000
--- a/src/_static/materov2023/sponsors/cabrillofoundation.svg
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
\ No newline at end of file
diff --git a/src/_static/materov2023/sponsors/cito_medical.jpg b/src/_static/materov2023/sponsors/cito_medical.jpg
deleted file mode 100644
index eb13850..0000000
Binary files a/src/_static/materov2023/sponsors/cito_medical.jpg and /dev/null differ
diff --git a/src/_static/materov2023/sponsors/dassault_systems.png b/src/_static/materov2023/sponsors/dassault_systems.png
deleted file mode 100644
index cc0a40b..0000000
Binary files a/src/_static/materov2023/sponsors/dassault_systems.png and /dev/null differ
diff --git a/src/_static/materov2023/sponsors/logo-ascc-blue.png b/src/_static/materov2023/sponsors/logo-ascc-blue.png
deleted file mode 100644
index b520314..0000000
Binary files a/src/_static/materov2023/sponsors/logo-ascc-blue.png and /dev/null differ
diff --git a/src/calendar.md b/src/calendar.md
deleted file mode 100644
index b630141..0000000
--- a/src/calendar.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Calendar
-
-
\ No newline at end of file
diff --git a/src/conf.py b/src/conf.py
deleted file mode 100644
index 506fa32..0000000
--- a/src/conf.py
+++ /dev/null
@@ -1,58 +0,0 @@
-# Configuration file for the Sphinx documentation builder.
-#
-# For the full list of built-in configuration values, see the documentation:
-# https://www.sphinx-doc.org/en/master/usage/configuration.html
-
-# -- Project information -----------------------------------------------------
-# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
-
-project = 'The Cabrillo Robotics Club'
-copyright = '2022, Cabrillo Robotics Club'
-author = 'Cabrillo Robotics Club'
-html_title = 'The Cabrillo Robotics Club'
-
-# -- General configuration ---------------------------------------------------
-# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
-
-extensions = [
- 'myst_parser',
- 'sphinxawesome_theme']
-
-
-templates_path = ['_templates']
-exclude_patterns = [
- '_build',
- 'Thumbs.db',
- '.DS_Store',
- 'venv*/**',
- '_themes',
- ]
-
-# MyST config.
-myst_enable_extensions = ["colon_fence"]
-
-# -- Options for HTML output -------------------------------------------------
-# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
-
-#html_theme = 'pydata_sphinx_theme'
-html_theme = "sphinxawesome_theme"
-html_static_path = ['_static']
-
-# This option is `False` by default
-html_awesome_docsearch = False
-
-#docsearch_config = {
-# "app_id": "MG8IQJ9KU0",
-# "api_key": "241095237ab6fbc4a644836eab43eb09",
-# "index_name": "cabrillorobotics.org"
-#}
-
-#awesome theme config
-html_theme_options = {
- "nav_include_hidden": True,
- "show_nav": True,
- "show_breadcrumbs": True,
- "breadcrumbs_separator": "/",
- "show_prev_next": False,
- "show_scrolltop": True
- }
\ No newline at end of file
diff --git a/src/documentation.md b/src/documentation.md
deleted file mode 100644
index 2d752ac..0000000
--- a/src/documentation.md
+++ /dev/null
@@ -1,9 +0,0 @@
-# Club ICC Documentation
-
-Meeting Agendas and Minutes
-
-[Spring 2023](https://drive.google.com/drive/folders/1dp4b5iYb-hkO_ORpmP8MAlsHbJzh8QsP?usp=share_link)
-
-[Fall 2022](https://drive.google.com/drive/folders/1D0rZH3jVixDTvHRAMQgT0SmAj4Zzqym2?usp=sharing)
-
-[Spring 2022](https://drive.google.com/drive/folders/1UekiNpD_1KOaPVIM9LG_E7XUCqJckb3w?usp=sharing)
diff --git a/src/donate.md b/src/donate.md
deleted file mode 100644
index a734965..0000000
--- a/src/donate.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Donate
-
-Donations to the Cabrillo Robotics Club must go through the Cabrillo Foundation.
-
-```{important}
-In the "where to direct gift" drop down, choose "Other," and type "Cabrillo Robotics Club" in the Notes field.
-
-If you dont do this, the money doesn't go to us!
-```
-
-[Cabrillo Foundation Donation Page](https://foundation.cabrillo.edu/donate-2/)
-
-NOTE. The Cabrillo Foundation does not share donor information with us so if you would like to be recognized for your donation, please send us an email with proof of donation and we can add you to our sponsors list.
diff --git a/src/index.md b/src/index.md
deleted file mode 100644
index db1c8b1..0000000
--- a/src/index.md
+++ /dev/null
@@ -1,45 +0,0 @@
-# Cabrillo Robotics Club
-
-```{toctree}
----
-caption: Sitemap
-maxdepth: 1
-hidden:
-glob:
----
-self
-donate.md
-socials.md
-calendar.md
-materov20*/**
-documentation.md
-```
-
-
-## Donate
-
-Donations to the Cabrillo Robotics Club must go through the Cabrillo Foundation.
-
-```{important}
-In the "where to direct gift" drop down, choose "Other," and type "Cabrillo Robotics Club" in the Notes field.
-
-If you dont do this, the money doesn't go to us!
-```
-
-[Cabrillo Foundation Donation Page](https://foundation.cabrillo.edu/donate-2/)
-
-NOTE. The Cabrillo Foundation does not share donor information with us so if you would like to be recognized for your donation, please send us an email with proof of donation and we can add you to our sponsors list.
-
-## Socials
-
-1. [Google Groups Email List](https://groups.google.com/g/cabrillorobotics) (Public)
-1. [Discord](https://discord.gg/Z5PYYekMWf) (Students and Donors Only)
-1. [Facebook](https://www.facebook.com/CabrilloRobotics/)
-1. [Instagram](https://www.instagram.com/cabrillorobotics/)
-1. [Twitter](https://twitter.com/CabrilloRobotic)
-1. [GitHub](https://github.com/cabrillorobotics)
-1. [YouTube](https://www.youtube.com/channel/UC7C8mbnPujbr6cxQMaxRVWw)
-
-## Calendar
-
-
diff --git a/src/materov2022/index.md b/src/materov2022/index.md
deleted file mode 100644
index 7145e93..0000000
--- a/src/materov2022/index.md
+++ /dev/null
@@ -1,76 +0,0 @@
-# MATE ROV 2022
-
-## Winnings
-
-At the MATE ROV 2022 competition we got the trophies for:
-
-* Pioneer First Place 2022
-
-* Pioneer Engineering Presentation Champion 2022
-
-* Pioneer Technical Documentation Champion 2022
-
-### Press Coverage
-
-* [Santa Cruz Sentinel](https://www.santacruzsentinel.com/2022/07/09/name-dropping-cabrillo-team-wins-underwater-robotics-competition/)
-
-* [The Pajaronian](https://pajaronian.com/cabrillo-robotics-team-takes-home-top-prize/)
-
-* [Lookout Local Santa Cruz](https://lookout.co/santacruz/education/higher-ed/cabrillo-college/story/2022-07-07/cabrillo-college-robotics-club-wins-first-place-in-world-mate-rov-competition/)
-
-* [Santa Cruz Works](https://www.santacruzworks.org/news/cabrillo-college-robotics-club-wins-first-place-in-world-mate-rov-competition)
-
-* [KION 5/46](https://youtu.be/mr34oDlB3G4)
-
-## ROV Hydrozoa
-
-```{image} /_static/materov2022/logo/banner.PNG
-:name: Cabrillo Robotics Hydrozoa Banner
-```
-
-Founded by a group of students at Cabrillo College.
-
-For our software, the robot is running on [ROS1 Noetic] (http://wiki.ros.org/noetic) and the code is AGPLv3 Open Source.
-[Cabrillo ROV 2022 GitHub Reposity](https://github.com/CabrilloRoboticsClub/cabrillo_rov)
-
-For the competition we had write a report on our robot you can read it here:
-[Hydrozoa MATE ROV 2022 Pioneer Technical Report](https://drive.google.com/file/d/1vniAOG5fuoXlKJONgs2LZRRYQhfBqPbc/view)
-
-## Sponsors
-
-Thanks to our sponsors:
-
-* [Cabrillo ASCC Student Senate](https://www.cabrillo.edu/student-senate/)
-```{image} /_static/materov2022/sponsors/logo-ascc-blue.png
-:name: Cabrillo ASCC Logo
-```
-
-* [Cabrillo FabLab and Makerspace](https://cabrillomakerspace.com/)
-```{image} /_static/materov2022/sponsors/cabrillo_makerspace.png
-:name: Cabrillo Makerspace Logo
-```
-
-* [Billet Metal Craft](https://billetmetalcraft.com/)
-```{image} /_static/materov2022/sponsors/billet_metal_craft.jpg
-:name: Billet Metal Craft Logo
-```
-
-* [Sapphire Metal Finishing](https://sapphirefinish.com/)
-```{image} /_static/materov2022/sponsors/Sapphire_Metal_Finishing.png
-:name: Sapphire Metal Finishing Logo
-```
-
-* [Dassault Systems](https://www.solidworks.com/)
-```{image} /_static/materov2022/sponsors/dassault_systems.png
-:name: Dassault Systems Logo
-```
-
-* [CITO Medical](https://citomedical.com/)
-```{image} /_static/materov2022/sponsors/cito_medical.jpg
-:name: CITO Medical Logo
-```
-
-* [PSI Consulting](https://www.psiconsulting.com/)
-```{image} /_static/materov2022/sponsors/psi_consulting.png
-:name: PSI Consulting Logo
-```
diff --git a/src/materov2023/index.md b/src/materov2023/index.md
deleted file mode 100644
index 1fca612..0000000
--- a/src/materov2023/index.md
+++ /dev/null
@@ -1,61 +0,0 @@
-# MATE ROV 2023
-
-## ROV SeaHawk
-
-named after the school sports team
-
-Code Repo: [https://github.com/CabrilloRoboticsClub/cabrillo_rov_2023](https://github.com/CabrilloRoboticsClub/cabrillo_rov_2023)
-
-## Sposors
-
-
-Thanks to our sponsors:
-
-* [Cabrillo ASCC Student Senate](https://www.cabrillo.edu/student-senate/)
-```{image} /_static/materov2023/sponsors/logo-ascc-blue.png
-:name: Cabrillo ASCC Logo
-```
-
-* [Cabrillo FabLab and Makerspace](https://cabrillomakerspace.com/)
-```{image} /_static/materov2023/sponsors/cabrillo_makerspace.png
-:name: Cabrillo Makerspace Logo
-```
-
-* [Billet Metal Craft](https://billetmetalcraft.com/)
-```{image} /_static/materov2023/sponsors/billet_metal_craft.jpg
-:name: Billet Metal Craft Logo
-```
-
-* [Dassault Systems](https://www.solidworks.com/)
-```{image} /_static/materov2023/sponsors/dassault_systems.png
-:name: Dassault Systems Logo
-```
-
-* [CITO Medical](https://citomedical.com/)
-```{image} /_static/materov2023/sponsors/cito_medical.jpg
-:name: CITO Medical Logo
-```
-
-* [Altium](https://www.altium.com/)
-```{image} /_static/materov2023/sponsors/altium.png
-:name: Altium Logo
-```
-
-* [Bay Rubber Company](https://bayrubber.com/)
-```{image} /_static/materov2023/sponsors/bay-rubber.jpg
-:name: Bay Rubber Company Logo
-```
-
-* [Cabrillo Foundation](https://foundation.cabrillo.edu/)
-```{image} /_static/materov2023/sponsors/cabrillofoundation.svg
-:name: Cabrillo Foundation Logo
-```
-* Cabrillo Foundation Donors:
-
-* * Steve Trujillo
-
-* * James and Linda Snook
-
-* * Peters Family
-
-* * YOUR NAME HERE
\ No newline at end of file
diff --git a/src/socials.md b/src/socials.md
deleted file mode 100644
index a350cf0..0000000
--- a/src/socials.md
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-# Socials
-
-* [Google Groups Email List](https://groups.google.com/g/cabrillorobotics) (Public)
-
-
-
-* [Discord](https://discord.gg/Z5PYYekMWf) (Students and Donors Only)
-
-
-
-* [Facebook](https://www.facebook.com/CabrilloRobotics/)
-
-