Skip to content

Commit 9cc8ef5

Browse files
Create 2025-05-26-newsletter.md
1 parent 2773191 commit 9cc8ef5

File tree

1 file changed

+164
-0
lines changed

1 file changed

+164
-0
lines changed
Lines changed: 164 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
---
2+
layout: post
3+
title: US-RSE [Month Year] Newsletter
4+
subtitle: [Month Year]
5+
category: newsletter
6+
tags: [newsletter, [Month]]
7+
date: YYYY-MM-DD 00:00:00 -0400
8+
---
9+
10+
<a name="top"></a>
11+
12+
### 💜 This Month: [Headline Theme] 💜
13+
14+
In this monthly newsletter, we share recent, current, and planned activities of the US-RSE Association, and related news that we think is of interest to US-RSE members. Newsletters are also available on our [website](https://us-rse.org/newsletters/). To receive our newsletter, [join US-RSE](https://us-rse.org/join/).
15+
16+
In this issue:
17+
* [1. USRSE'25 Conference](#conference2025)
18+
* [2. [HEADLINE THEME](#headline)
19+
* [3. Steering Committee Updates](#sc-update)
20+
* [4. Organizational Founding Membership](#orgmember)
21+
* [5. Community and Travel Funds](#community-funds)
22+
* [6. Community News](#news)
23+
* [7. Interesting Events and Opportunities](#events)
24+
* [8. Featured Reads, Videos, or Podcasts](#reads)
25+
* [9. Get Involved](#involved)
26+
* [10. Recent Job Postings](#jobs)
27+
28+
-----------------
29+
30+
<a name="conference2025"></a>
31+
# 🔔 **1. US-RSE Conference 2025 (USRSE'25)**
32+
33+
<!-- Update with current announcements -->
34+
35+
-----------------
36+
37+
<a name="headline"></a>
38+
# 💟 **2. [HEADLINE]**
39+
40+
<!-- Add monthly theme / highlight -->
41+
42+
-----------------
43+
44+
<a name="sc-update"></a>
45+
# 🛞 **3. Steering Committee Updates**
46+
47+
<!-- Fill in with current Steering Committee news -->
48+
49+
-----------------
50+
51+
<a name="orgmember"></a>
52+
# 🤝 **4. Organizational Founding Membership**
53+
54+
Organizations that join on or before **November 30, 2025** will be recognized in perpetuity as founding members. Current fee lock through **December 31, 2028**.
55+
56+
Please reach out to Sandra Gesing at [[email protected]](mailto:[email protected]) if you are interested in becoming a member.
57+
58+
### Premier Members
59+
{% for org in site.data.org-members.premier %}
60+
- [{{ org.name }}]({{ org.url }})
61+
{% endfor %}
62+
63+
### Standard Members
64+
{% for org in site.data.org-members.standard %}
65+
- [{{ org.name }}]({{ org.url }})
66+
{% endfor %}
67+
68+
### Basic Members
69+
{% for org in site.data.org-members.basic %}
70+
- [{{ org.name }}]({{ org.url }})
71+
{% endfor %}
72+
73+
-----------------
74+
75+
<a name="community-funds"></a>
76+
# ✈️ **5. Community and Travel Funds Program**
77+
78+
{% assign current_month = 'now' | date: '%m' | plus: 0 %}
79+
{% assign current_year = 'now' | date: '%Y' %}
80+
81+
{% if current_month <= 3 %}
82+
{% assign next_deadline = current_year | append: "-03-31" %}
83+
{% elsif current_month <= 6 %}
84+
{% assign next_deadline = current_year | append: "-06-30" %}
85+
{% elsif current_month <= 9 %}
86+
{% assign next_deadline = current_year | append: "-09-30" %}
87+
{% else %}
88+
{% assign next_deadline = current_year | append: "-12-31" %}
89+
{% endif %}
90+
91+
<div class="alert alert-primary" role="alert">
92+
<strong>Next Application Deadline:</strong> {{ next_deadline | date: "%B %-d, %Y" }}
93+
</div>
94+
95+
You can apply at [us-rse.org/funds-and-awards](https://us-rse.org/funds-and-awards/)
96+
97+
-----------------
98+
99+
<a name="news"></a>
100+
# 🗞️ **6. Community News**
101+
102+
### **Community Calls**
103+
<!-- Add Upcoming and Previous calls here -->
104+
105+
-----------------
106+
107+
<a name="events"></a>
108+
# 👀 **7. Interesting Events and Opportunities**
109+
110+
<!-- Include opportunity-box and event-box includes -->
111+
112+
-----------------
113+
114+
<a name="reads"></a>
115+
# 📚 **8. Featured Reads, Videos, and Podcasts**
116+
117+
<!-- Add new articles and podcast links -->
118+
119+
-----------------
120+
121+
<a name="involved"></a>
122+
# 🏃 **9. Get Involved**
123+
124+
US-RSE Working Groups:
125+
{% assign wgs = site.data.menus["working-groups"][0].items %}
126+
<ul>
127+
{% for wg in wgs %}
128+
<li><a href="{{ site.baseurl }}/{{ wg.link }}">{{ wg.name }}</a></li>
129+
{% endfor %}
130+
</ul>
131+
132+
-----------------
133+
134+
<a name="jobs"></a>
135+
# 🧑‍💼 **10. Recent Job Postings**
136+
137+
{% assign today = 'now' | date: "%Y-%m-%d" %}
138+
<ul>
139+
{% for job in site.data.jobs %}
140+
{% if job.expires | date: "%Y-%m-%d" >= today %}
141+
<li>
142+
<strong><a href="{{ job.url }}" target="_blank" rel="noopener">{{ job.name }}</a></strong><br>
143+
📍 {{ job.location }}<br>
144+
🗓️ Posted: {{ job.posted }} | Expires: {{ job.expires }}
145+
</li>
146+
{% endif %}
147+
{% endfor %}
148+
</ul>
149+
150+
### Other Job Boards
151+
152+
<ul>
153+
{% for board in site.data.job-boards.boards %}
154+
<li><a href="{{ board.url }}" target="_blank">{{ board.name }}</a></li>
155+
{% endfor %}
156+
</ul>
157+
158+
-----------------
159+
160+
**This newsletter is a joint effort of members of the US-RSE Association.**
161+
162+
© US-RSE • 2021–{{ 'now' | date: "%Y" }} • US-RSE is a fiscally sponsored project of [Community Initiatives](http://communityin.org/)
163+
164+
[Email](mailto:[email protected]) [Mastodon](https://fosstodon.org/@us_rse) [Twitter](https://twitter.com/us_rse) [YouTube](https://youtube.com/@us_rse) [LinkedIn](https://linkedin.com/company/us-rse/) [GitHub](https://github.com/USRSE)

0 commit comments

Comments
 (0)