Skip to content

Commit 527c670

Browse files
committed
Blog updates, things just need to be filled in now
1 parent 0cb26eb commit 527c670

7 files changed

+313
-225
lines changed

_includes/post-custom-rs-march-25.html

Lines changed: 296 additions & 0 deletions
Large diffs are not rendered by default.

_includes/rs-march-25-post.html

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

_includes/updates-card.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,22 @@
77
<div class="card-content">
88
<h1 class="title is-size-4-touch">{{page.title}}</h1>
99
<div class="content">
10+
{% if page.md-format %}
1011
{{ page.content | truncate: 300 | strip_html | strip_newlines | strip | escape }}
1112
<!-- Horizontal rule -->
1213
<hr>
13-
1414
<!-- Information at the bottom of the card -->
1515
<span class="information">Published on <span class="has-text-weight-semibold">{{ page.date |
1616
date: "%-B %d, %Y" }}</span></span> | <i class="fas fa-clock"></i> <span
1717
class="has-text-weight-semibold">{% assign words = page.content | number_of_words %}{%-
1818
unless content.size == 0 -%}{{ words | divided_by:180 }} min{% endunless %}</span> read
19+
{% else %}
20+
{{ page.first-paragraph | truncate: 300 | strip_html | strip_newlines | strip | escape }}
21+
<hr>
22+
<span class="information">Published on <span class="has-text-weight-semibold">{{ page.date |
23+
date: "%-B %d, %Y" }}</span></span> | <i class="fas fa-clock"></i> <span
24+
class="has-text-weight-semibold">{{page.read-time}} min</span> read
25+
{% endif %}
1926
</div>
2027
</div>
2128
</div>

_layouts/rs-post.html renamed to _layouts/post-custom.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
{% include post-header.html %}
1717
</div>
1818
{% include post-info.html %}
19-
{% include rs-march-25-post.html %}
19+
{% include {{page.post-html}} %}
2020
<div class="mobile">
2121
{% include post-header.html %}
2222
</div>

_posts/2024-06-23-cabrillo-robotics-wins-international-robotics-competition.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ tags:
77
- MATE
88
- ROV
99
- Seahawk II
10+
md-format: True
1011
---
1112

1213
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.

_posts/2024-09-8-after-international-win-cabrillo-robotics-announces-participation-in-robosub.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ tags:
77
- RoboSub
88
- AUV
99
- Lazer Shark
10+
md-format: True
1011
---
1112
Cabrillo College’s Robotics Club recently announced their participation in the upcoming RoboSub competition, following their [victory](https://cabrillorobotics.org/updates/cabrillo-robotics-wins-international-robotics-competition) at the Marine Advanced Technology Education (MATE) World Championship. In June, the team secured First Place in the most advanced category of the MATE competition, outperforming 29 teams from 9 countries. MATE tasks teams worldwide to design and construct a Remotely Operated Vehicle (ROV), a tethered underwater robot, capable of performing simulated industry tasks. After three consecutive years of participation in the MATE competition, and three first place victories in their respective division, Cabrillo Robotics is ready to embark on a new challenge.
1213
<br>
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
---
22
title: RoboSub March 2025 Update
3-
layout: rs-post
3+
layout: post-custom
44
post-image: "https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/345da333ecd4013257b73888caf448cef262f7ab/assets/images/posts/march-25-update/isaac-james-work-on-chassis.webp"
5-
description: Cabrillo Robotics Club has been making great strides in our LazerShark AUV for RoboSub.
5+
description: Cabrillo Robotics Club has spent the last few months working on our RoboSub Autonomous Underwater Vehicle (AUV), LazerShark.
6+
post-html: post-custom-rs-march-25.html
67
tags:
78
- RoboSub
89
- AUV
910
- Lazer Shark
11+
first-paragraph: Developing software for an AUV is a significant leap from the code we wrote for the SeaHawk II ROV last year. Luckily, our experience and existing codebase for the SeaHawk II meant most of our time was focused on the AUV specific additions, mainly computer vision and navigation. Of course, in order to properly navigate, we would need more sophisticated sensors as well as a simulation environment in order to sanity check our work.
12+
read-time: 4
13+
md-format: False
1014
---

0 commit comments

Comments
 (0)