Skip to content

Commit

Permalink
Merge pull request #859 from zowe/onboarding/events/show_six
Browse files Browse the repository at this point in the history
Show six events
  • Loading branch information
balhar-jakub authored Sep 25, 2023
2 parents 4ef79bc + ff783e4 commit 6c81723
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 1 deletion.
2 changes: 1 addition & 1 deletion _data/projects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
slack_url: https://join.slack.com/t/iba-mainframe-tools/shared_invite/zt-pejbtt4j-l7KuizvDedJSCxwGtxmMBg
doc_url: https://plugins.jetbrains.com/plugin/18688-zowe-explorer
img_url: assets/img/intellij_squad.webp
stage: Generally Available
stage: Long Term Support
dedication: Extension
- name: Zowe Kotlin Client SDK
description: This SDK covert zOSMF Rest API with Kotlin object oriented code using Retrofit. Zowe client Kotlin SDK will allow you to send http requests to your zOSMF.
Expand Down
14 changes: 14 additions & 0 deletions _data/upcoming_events.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
- event: GSE UK Virtual
from: 2024/04/23
to: 2024/04/25
schedule: April 23 - April 25 (2024)
description: Where technology and talent meet in a virtual space.
url: https://www.gse.org/events/gse-uk-virtual-conference-2024/
- event: Share Orlando
from: 2024/03/03
to: 2024/03/07
schedule: March 03 - March 07 (2024)
description: Join us for SHARE Orlando, March 03-07, 2024 for a program
of unmatched education, face-to-face networking opportunities, live technical sessions
and receptions.
url: https://www.share.org/Events/SHARE-Orlando-2024
- event: Open Source in Finance
from: 2023/11/01
to: 2023/11/01
Expand Down
23 changes: 23 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,29 @@ redirect_from:
</div>
{% endfor %}
</div>
<div class="row py-4">
{% for events in site.data.upcoming_events limit:3 offset:3 %}
<div class="col-md-4 px-3 pb-4 pb-md-0"> <!-- ml-auto mr-auto -->
<div class="w-100 px-4 py-4 rounded shadow bg-light h-100">
{% if events.url %}
<h5 class="border-bottom border-primary pb-2"><a href="{{ events.url }}">{{ events.event }}</a></h5>
{% else %}
<h5 class="border-bottom border-primary pb-2">{{ events.event }}</h5>
{% endif %}
{% assign currentTime = 'now' | date: '%s' | plus: 0 %}
{% assign fromEvent = events.from | date: '%s' | plus: 0 %}
{% assign toEvent = events.to | date: '%s' | plus: 0 %}
{% if currentTime > toEvent %}
<span class="past" style="font-weight: 600"><i class="fa-solid fa-circle-check"></i> {{ events.schedule }}</span>
{% else %}
<span style="font-weight: 600"><i class="fa-solid fa-circle-check future"></i> {{ events.schedule }}</span>
{% endif %}
<br>
<span class="text-muted small">{{ events.description }}</span>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
{% endif %}
Expand Down

0 comments on commit 6c81723

Please sign in to comment.