Skip to content

Commit

Permalink
Update history.html
Browse files Browse the repository at this point in the history
  • Loading branch information
PurveshPatelYu authored Jan 28, 2024
1 parent 3899fb0 commit b09ae34
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions website/history.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,26 @@
---
layout: timeline
section-type: default
title: History
layout: default
---
## Archive of all the competitions and events we've done

<div class="container row">
<h1 class="cv-title"><span class="black white-text">{{ site.title }}</span></h1>
{% assign steps = site.steps | sort: 'date' %}
{% for step in steps %}
<div class="item">
<i class="vertical-line"></i>
<h2 class="item-date">{{ step.date | date: '%m/%Y' }}{% if step.enddate %} - {{ step.enddate | date: '%m/%Y' }}{% endif %}</h2>
<div class="card-panel">
<h3 class="card-title">
{{ step.title }}
</h3>
<p>
{{ step.content }}
</p>
</div>
</div>
{% endfor %}
<div class="last-item">
<i class="vertical-line"></i>

</div>
</div>

0 comments on commit b09ae34

Please sign in to comment.