Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes to Community Pages and Mentorship #842

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
6e129ce
enhanced-landing-page
Claurt07 Jan 11, 2024
3153f4d
- Enhancement to the landing page
Claurt07 Jan 11, 2024
02e0ecb
enhanced community page
Claurt07 Jan 11, 2024
27e5a22
Merge branch 'gh-pages' into enhanced-landing-page
Claurt07 Jan 11, 2024
b3608ed
Merge pull request #5 from Claurt07/enhanced-landing-page
Claurt07 Jan 11, 2024
8535954
Merge branch 'gh-pages' of https://github.com/Claurt07/hotosm-website…
Claurt07 Jan 12, 2024
bc21613
changes to ignored files
Claurt07 Jan 15, 2024
10a0879
Merge branch 'hotosm:gh-pages' into enhanced-landing-page
Claurt07 Jan 15, 2024
69371a8
Create .DS_Store
Claurt07 Jan 15, 2024
428fc6a
Update .gitignore
Claurt07 Jan 15, 2024
d32568d
Enhanced the community + mentorship
Claurt07 Jan 21, 2024
9accf89
minor changes
Claurt07 Jan 22, 2024
67c2174
changes layout communities page
Claurt07 Jan 30, 2024
977ffaa
Update index.md
Claurt07 Jan 31, 2024
32622ee
Merge branch 'gh-pages' into improve-community-pages
Claurt07 Jan 31, 2024
483a201
Merge pull request #8 from Claurt07/improve-community-pages
Claurt07 Jan 31, 2024
0343977
Merge branch 'hotosm:gh-pages' into gh-pages
Claurt07 Jan 31, 2024
79e3048
Merge branch 'hotosm:gh-pages' into improve-community-pages
Claurt07 Jan 31, 2024
fe73c98
aligning versions
Claurt07 Jan 31, 2024
622655a
Delete opensummit23-24
Claurt07 Jan 31, 2024
796a9ef
chagned image
Claurt07 Jan 31, 2024
40aee8c
Merge pull request #9 from Claurt07/improve-community-pages
Claurt07 Jan 31, 2024
bf4498c
Delete .DS_Store
Claurt07 Jan 31, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Enhanced the community + mentorship
- Enhanced the community page by adding a link to mentorships, updating links, and changing text
- Added mentorship page
  • Loading branch information
Claurt07 committed Jan 21, 2024
commit d32568d8ae2e023e75dc2bc49547d78094f852ab
143 changes: 143 additions & 0 deletions _layouts/community-mentorship.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
---
layout: default
---

<header class="project-header">
<h1>{{ page.title }}</h1>
<div class="project-header-meta">

<p class="project-status">
{% if page['Duration']['End Date'] == 'Ongoing' %} ACTIVE {% else %}
{% capture currenttime %}{{ 'now' | date: "%Y-%m-%d %H:%M:%s" }}{% endcapture %}
{% capture pagetime %}{{ page['Duration']['End Date'] }}{% endcapture %}
{% if pagetime < currenttime %} COMPLETED
{% else %} ACTIVE {% endif %}
{% endif %}
</p>
</div>
</header>

<div class="project-body">

{% if page['Feature Image'] %}
<img class="project-feature-image" {% if page[ 'Is image top aligned'] %} style="object-position: top center"
{% endif %} src="{{ page['Feature Image' ]}}"> {% endif %}
</div>

<article class="container project-item">
<div class="project-body">
<section class="article">

{% if page['Project Summary Text'] %}
<div class="pro-summary-wrap">
<div class="project-summary">
<p>{{ page['Project Summary Text'] }}</p>
</div>
</div>
{% endif %}

<div class="pro-content-wrap">
<div class="project-content">

{{ content }}

</div>
</div>

</section>

<aside class="meta">

{% if page.Partner[0] != '' %}
<div class="meta-item">
<h5>Partners <object height="16" width="16" data="/images/link.svg" type="image/svg+xml"></object></h5>
<ul>
{% for page-partner in page.Partner %}
<li>{{ page-partner }}</li>
{% endfor %}
</ul>
</div>
{% endif %}

{% if page.Calendar[0] != '' %}
<div class="meta-item">
<h5>Calendar <object height="16" width="16" data="/images/clock.svg" type="image/svg+xml"></object></h5>
<ul>
{% for page-calendar in page.Calendar %}
<li>{{ page-calendar }}</li>
{% endfor %}
</ul>
</div>
{% endif %}

<div class="meta-item">
<h5>Duration <object height="16" width="16" data="/images/clock.svg" type="image/svg+xml"></object></h5>
{% if page.Duration['Start Date'] and page.Duration['End Date'] %}
<p>{{ page.Duration['Start Date'] | date: "%e %b, %Y" }} –
{{ page.Duration['End Date'] | date: "%e %b, %Y" }}</p>
{% else %}
<p>Ongoing</p>
{% endif %}
</div>

</aside>

</div>

</article>
<!--////////////////////////////////-->
<!--///////// Project News /////////-->
<!--////////////////////////////////-->


{% for post in site.posts %} {% if post['Project'] contains page.title %}

<div class="project-index project-item-news">
<div class="container">
<div class="project-index-news">
<h6>Recent news from {{ page.title }} <span>(<a href="/updates">View all news</a>)</span></h6>
<div class="project-index-news-list">

{% break %} {% endif %} {% endfor %} {% assign news_count = 0 %} {% for post in site.posts %}
{% if post['Project'] contains page.title %} {% assign news_count = news_count | plus: 1 %}
{% if news_count == 6 %} {% break %} {% else %}

<div class="news-index-item">
<div class="news-list-summary">

<div class="news-list-summary-text {% if post['Feature Image'] %}with-image{% endif %}">

<a href="{{ post.url }}">
<h3>{{ post.title }}</h3>
</a>

<p>{{ post['Summary Text']}}</p>
{% capture post.Person %}{% endcapture %}
<div class="news-list-meta">
<p class="news-index-author">
{% include author.html %} {{ post.date | date: '%e %B, %Y' }}
</p>
</div>
</div>

{% if post['Feature Image'] %}
<div class="news-list-image-sm">
<a href="{{ post.url }}"><img class="news-feature-image"
src="{{ post['Feature Image'] }}"></a>
</div>
{% endif %}

</div>
</div>

{% endif %} {% endif %} {% endfor %} {% for post in site.posts %}
{% if post['Project'] contains page.title %}

</div>
</div>
</div>
</div>

{% break %} {% endif %} {% endfor %}

</div>
56 changes: 53 additions & 3 deletions _layouts/community.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ <h5>People:</h5>
</ul>
<ul>
<li><a href="#working-groups">Working Groups</a></li>
<li><a href="/community/mentorship">Mentorship Program</a></li>
<li><a href="#community-grants">Community Grants</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#financials">Financials</a></li>
Expand Down Expand Up @@ -50,7 +51,7 @@ <h3>People</h3>
</div>

<div class="container">

<!--
<div class="community-programs">
<a class="module link-through light" href="/community/working-groups" id="working-groups">
<div class="module-details">
Expand All @@ -66,8 +67,57 @@ <h3>Community Microgrants</h3>
<p class="module-cta">Learn more</p>
</div>
</a>
</div> -->

<div class="get-involved-body">

<div class="hr-h"></div>


<div class="container">
<h2 class="partner-subtitle">{{ page.blocktitle }}</h2>

<div class="module-group top-image">
<a class="module link-through light" href="{{ page.Working-Groups.Link }}" id="support-programs">
<div class="module-image">
<img src="{{ page.Working-Groups.Image }}">
</div>
<div class="module-details">
<h3>{{ page.Working-Groups.Title | markdownify }}</h3>
<div class="module-text">{{ page.Working-Groups.Text | markdownify }}</div>
<p class="module-cta">{{ page.Working-Groups.Action-text | markdownify }}</p>
</div>
</a>
<a class="module link-through light" href="{{ page.Community-Grants.Link }}" id="support-programs">
<div class="module-image">
<img src="{{ page.Community-Grants.Image }}">
</div>
<div class="module-details">
<h3>{{ page.Community-Grants.Title | markdownify }}</h3>
<div class="module-text">{{ page.Community-Grants.Text | markdownify }}</div>
<p class="module-cta">{{ page.Community-Grants.Action-text | markdownify }}</p>
</div>
</a>
<a class="module link-through light" href="{{ page.Mentorship-Program.Link }}" id="support-programs">
<div class="module-image">
<img src="{{ page.Mentorship-Program.Image }}">
</div>
<div class="module-details">
<h3>{{ page.Mentorship-Program.Title | markdownify }}</h3>
<div class="module-text">{{ page.Mentorship-Program.Text | markdownify }}</div>
<p class="module-cta">{{ page.Mentorship-Program.Action-text | markdownify }}</p>
</div>
</a>
</div>

<div class="hr-h"></div>


</div>

</div>


<div class="hr-h"></div>

<div class="event-promo" id="events">
Expand Down Expand Up @@ -96,7 +146,7 @@ <h3>Financials and Organization</h3>
<h6>{{ page.Finances['Annual Report Header'] }}</h6>
<div class="annual-report-wrapper">
<div class="annual-report-image">
<img src="https://cdn.hotosm.org/website/annual-report-2020-thumb.jpg">
<img src="/uploads/2022-2023-ImpactReport2.0.png">
</div>
<div class="annual-report-text">
{{ page.Finances['Annual Report Text'] | markdownify }}
Expand All @@ -107,7 +157,7 @@ <h6>{{ page.Finances['Annual Report Header'] }}</h6>
</div>
</div>

</div>
</div>

</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Is image top aligned: false
Person: Sophie Mower
Project:
- 'Community development: Microgrants and Device Grants'
- Open Mapping Mentorship
---

Since 2017, 221 communities and individuals have applied to HOT’s microgrant program and 66 of them have received the award. With each open call, the applications received have varied in strength.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Summary Text: La communauté OpenStreetMap, une communauté de communautés, est
OpenStreetMap peut aider à combler les écarts de compétences entre les communautés.
Feature Image: https://cdn.hotosm.org/website/Mentorship+Banner.png
Person: Tsongo Muluba Bienvenue
Project:
- Open Mapping Mentorship
---

La communauté OSM, une communauté des communautés est formée des plusieurs contributeurs répartis dans différentes communautés locales de par le monde.
Expand Down
2 changes: 2 additions & 0 deletions _posts/2022-12-09-open-mapping-community-mentorship.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Feature Image: https://cdn.hotosm.org/website/Mentorship+Banner.png
Person: Tsongo Muluba Bienvenue
Working Group:
- Community
Project:
- Open Mapping Mentorship
---

The OpenStreetMap community, a community of communities, is made up of many mappers and other contributors spread out across local communities around the world.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Person:
- Charles Chilufya
Working Group:
- Community
Project:
- Open Mapping Mentorship
---

This blog is a result of the meetings held as a part of the Peer Mentor initiative by the Humanitarian OpenStreetMap. We started off our journey as a Peer Mentor group in September-October 2022 igniting our passion to learn about Open Street Mapping from each other. We were grouped according to our region, ASIA. We met a few times, virtually discussed, shared many ideas and views. Few of them will be documented in the following article for reference to others as well.
Expand Down
36 changes: 25 additions & 11 deletions community.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ date: 2018-02-06 15:20:00 Z
permalink: "/community/"
position: 5
redirect_from: "/people"
blocktitle: Get Involved
Event Promo:
Event Name: HOT OpenSummit '23-24
Description: "**HOT's OpenSummit ‘23-24 is ON!** \n\nGet ready for a year of global events
Expand All @@ -22,13 +23,26 @@ People:
volunteers, interns, and board members. Read more about different community members
or learn more about becoming a part of the community.
Image: https://cdn.hotosm.org/website/Innocent+and+team.jpg
Working Groups Description: Working Groups are at the core of how HOT organizes projects,
supports disaster response, and functions as a community. Each Working Group consists
of members across the community meeting on a monthly, bi-weekly, or weekly basis.
Community Grants Description: HOT offers a range of funding programs to OSM Communities
in low- and middle-income countries with the resources they need to launch and grow
their activities and impact. Learn more about the communities and work that have
benefited from grants.
blocktitle: Community and projects
Working-Groups:
Title: Working Groups
Link: /community/working-groups
Image: /uploads/IMG_20231101_110032703.jpg
Text: Working Groups are at the core of how HOT organizes projects,supports disaster response, and functions as a community. Each Working Group consists of members across the community meeting on a monthly, bi-weekly, or weekly basis.
Action-text: Learn More
Community-Grants:
Title: Community Grants
Link: /community/community-grants
Image: /uploads/DSC09220.jpg
Text: HOT offers a range of funding programs to OSM Communities in low- and middle-income countries with the resources they need to launch and grow their activities and impact. Learn more about the communities and work that have benefited from grants.
Action-text: Learn More
Mentorship-Program:
Title: Mentorship Program
Link: /community/mentorship
Image: /uploads/Mentorship_onboarding1_27May2023%20(1).png
Text: The HOT Community Working Group initiated a Mentorship Program to provide peer to peer learning and knowledge exchange in the humanitarian and open mapping space.
Action-text: Learn More

Finances:
Text: |-
HOT is a global not-for-profit organization registered in the United States of America.
Expand All @@ -38,13 +52,13 @@ Finances:
Access older financial reports and organization bylaws in our archive <a href="https://github.com/hotosm/hotosm-website/tree/gh-pages/downloads">here.</a>
990 Report Button: Download 2021 990 PDF
990 Report URL: "/downloads/2021-Form-990.pdf"
Annual Report Header: 2020-21 Annual Report
Annual Report Header: 2022-23 Annual Report
Annual Report Text: "Each year we publish an annual impact report to recap projects
and share updates from the community. We cover stories from our projects and share
data about the successes and impact of the community. \n\nDownload our latest
annual report below. Access our annual report archive <a href=\"https://hotosm.org/annual-reports/\">here.</a>"
Annual Report Button: Access 2021-22 Annual Report
Annual Report URL: https://impactreport2022.hotosm.org/
annual report below. Access our annual report archive <a href=\"/annual-reports\">here.</a>"
Annual Report Button: Access 2022-23 Annual Report
Annual Report URL: https://www.hotosm.org/uploads/2022-2023-ImpactReport08_30.pdf
layout: community
---

34 changes: 23 additions & 11 deletions community/mentorship.markdown
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
---
title: Open Mapping Mentorship
date: 2023-10-10 12:43:00 Z
2022 Pilot Mentorship: In the pilot phase, the mentorship structure is peer mentorship.
In peer mentorship, all members receive mentorship and are organized by a group
facilitator who is already part of the group. The choice of this type of mentorship
is to boost the interest, knowledge, and confidence of mentors to become great mentors
for the next cohort of mentees.
2023 Mentorship Program: Building on the pilot mentorship program, we are proceeding
with a Mentor-mentee and group mentorship structure. Lessons, feedback, suggestions
from the pilot will be heavily incorporated into this design.
Field name:
layout: page
Partner: Women+ in Geospatial (W+G) Mentorship Programme
Feature Image: /uploads/Mentorship_onboarding1_27May2023%20(1).png
Impact Area:
- Public Health
- Gender Equality
- Displacement & Safe Migration
- Disasters & Climate Resilience
- Sustainable Cities & Communities
Calendar:
- <a href="https://calendar.google.com/calendar/u/0/embed?src=hotosm.org_848e89aaiab04ag94d23rqn558@group.calendar.google.com" target="blank"> Google Calendar </a>

layout: community-mentorship
---

![Mentorship_onboarding1_27May2023 (1).png](/uploads/Mentorship_onboarding1_27May2023%20(1).png)
## Join the Open Mapping Mentorship!

<!-- ![Mentorship_onboarding1_27May2023 (1).png](/uploads/Mentorship_onboarding1_27May2023%20(1).png) -->
The HOT Community Working Group initiated a Mentorship Program to provide peer to peer learning and knowledge exchange in the humanitarian and open mapping space.

The Program is also inspired by Angela Teyvi during her Community Working Group Ask Me Anything (AMA) Session in March 2022. Angela shared how mentorship has played a major role in her career development and capability in humanitarian open mapping. [You can watch the recording here.](https://www.youtube.com/watch?v=x4EckEvVA0I)
Expand All @@ -23,4 +26,13 @@ We built upon the knowledge and efforts of other mapping communities in conducti

The pilot program was initiated in 2022 and continued in 2023.

## 2022 Pilot Mentorship

In the pilot phase, the mentorship structure is peer mentorship. In peer mentorship, all members receive mentorship and are organized by a group facilitator who is already part of the group. The choice of this type of mentorship is to boost the interest, knowledge, and confidence of mentors to become great mentors for the next cohort of mentees.

## 2023 Mentorship Program: Building on the pilot mentorship program, we are proceeding

with a Mentor-mentee and group mentorship structure. Lessons, feedback, suggestions from the pilot will be heavily incorporated into this design.


Read more about it in the [OSM Wiki.](https://wiki.openstreetmap.org/wiki/Humanitarian_OSM_Team/Working_groups/Community/Mentorship)