Skip to content

Commit 1c2b3af

Browse files
Create newsletter-template.md
1 parent 9cc8ef5 commit 1c2b3af

File tree

1 file changed

+167
-0
lines changed

1 file changed

+167
-0
lines changed

_template/newsletter-template.md

Lines changed: 167 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
1+
---
2+
layout: post
3+
title: US-RSE {{ month }} {{ year }} Newsletter
4+
subtitle: {{ month }} {{ year }}
5+
category: newsletter
6+
tags: [newsletter, {{ month }}]
7+
date: {{ date }} 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](#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+
<!-- Monthly headline/highlight -->
41+
42+
-----------------
43+
44+
<a name="sc-update"></a>
45+
# 🛞 **3. Steering Committee Updates**
46+
47+
<!-- Key SC activities, decisions, funding 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+
104+
**Upcoming Call**: [Topic and Date/Time]
105+
**Last Month’s Call**: [Summary or recording link]
106+
107+
-----------------
108+
109+
<a name="events"></a>
110+
# 👀 **7. Interesting Events and Opportunities**
111+
112+
<!-- Include {% include event-box.html %} or opportunity-box -->
113+
114+
-----------------
115+
116+
<a name="reads"></a>
117+
# 📚 **8. Featured Reads, Videos, and Podcasts**
118+
119+
<!-- Add new articles, papers, or podcast highlights -->
120+
121+
-----------------
122+
123+
<a name="involved"></a>
124+
# 🏃 **9. Get Involved**
125+
126+
US-RSE Working Groups:
127+
128+
{% assign wgs = site.data.menus["working-groups"][0].items %}
129+
<ul>
130+
{% for wg in wgs %}
131+
<li><a href="{{ site.baseurl }}/{{ wg.link }}">{{ wg.name }}</a></li>
132+
{% endfor %}
133+
</ul>
134+
135+
-----------------
136+
137+
<a name="jobs"></a>
138+
# 🧑‍💼 **10. Recent Job Postings**
139+
140+
{% assign today = 'now' | date: "%Y-%m-%d" %}
141+
<ul>
142+
{% for job in site.data.jobs %}
143+
{% if job.expires | date: "%Y-%m-%d" >= today %}
144+
<li>
145+
<strong><a href="{{ job.url }}" target="_blank" rel="noopener">{{ job.name }}</a></strong><br>
146+
📍 {{ job.location }}<br>
147+
🗓️ Posted: {{ job.posted }} | Expires: {{ job.expires }}
148+
</li>
149+
{% endif %}
150+
{% endfor %}
151+
</ul>
152+
153+
### Other Job Boards
154+
155+
<ul>
156+
{% for board in site.data.job-boards.boards %}
157+
<li><a href="{{ board.url }}" target="_blank">{{ board.name }}</a></li>
158+
{% endfor %}
159+
</ul>
160+
161+
-----------------
162+
163+
**This newsletter is a joint effort of members of the US-RSE Association.**
164+
165+
© US-RSE • 2021–{{ year }} • US-RSE is a fiscally sponsored project of [Community Initiatives](http://communityin.org/)
166+
167+
[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)