Skip to content

Commit dd5aa5a

Browse files
committed
Added Latest Updates section
1 parent e6cbab4 commit dd5aa5a

File tree

7 files changed

+117
-1
lines changed

7 files changed

+117
-1
lines changed

_config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ description:
1919
to solve civic and social problems.'
2020
baseurl: ''
2121
url: https://www.codeforboston.org
22+
defaults:
23+
- scope:
24+
type: posts
25+
values:
26+
layout: post
2227
# NOTE:If you change the below donate_url you should also update the URL here: https://github.com/codeforboston/.github/FUNDING.yml
2328
donate_url: https://codeforamerica.org/donate-to-a-brigade?utm_campaign=Code%20for%20Boston&utm_source=codeforboston.org
2429
hackpad_url: https://codeforboston.hackpad.com/

_layouts/post.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
layout: page
3+
---
4+
5+
<h1 class="t-section-headline">{{ page.title }}</h1>
6+
<h4>
7+
{{ page.date | date_to_long_string: "ordinal", "US" }}
8+
</h4>
9+
10+
11+
<div class="centered">
12+
<section class="newsletter" >
13+
{{ content }}
14+
</section>
15+
16+
<section>
17+
{% if page.previous %}
18+
19+
{% endif %}
20+
&bull;
21+
{% if page.next %}
22+
23+
{% endif %}
24+
</section>
25+
</div>

_posts/2021-10-19-slug.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
title: These project updates are OFF the CHARTS
3+
---
4+
5+
Greetings Civic Hackers!
6+
7+
As summer breezes give way to autumn chills, we have moved inside at the CIC. Starting on November 1st we will be requiring our in-person attendees to be fully vaccinated or present a negative COVID test to attend Code for Boston. More information on the process for validating this is coming soon, but I share this to let folks know we do continue to offer the option to meet in-person. Once you have joined a project team all you need to do is join a slack channel and confirm your RSVP by Monday at noon, and you’ll be able to have some pizza and see fellow coders on the 4th Floor Kitchen at One Broadway.
8+
9+
What we’re reading & watching:
10+
- [Sharing Software Throughout the UK: A Case Study of LocalGov Drupal](https://beeckcenter.georgetown.edu/report/sharing-software-throughout-the-uk-a-case-study-of-localgov-drupal/)
11+
- [CivicSource](https://www.civicsource.info/) is a newsletter about how local governments use technology from Katya Abazajian at the Beeck Center.
12+
13+
Matt & The Code for Boston Core Team
14+
<hr>
15+
# Events
16+
<hr>
17+
# Jobs
18+
## [Technology Transformation Service: Engineer](https://join.tts.gsa.gov/join/tts-engineer/)
19+
TTS is looking for talented software developers who will help our partner agencies deliver better digital services to the public. As an engineer at TTS, you will be a builder, contributor, and catalyst. Working with folks across the organization, you will solve large, complex problems while promoting user-centered, open, and transparent culture. The role involves diverse responsibilities — you might be writing code one day, meeting with members from partner agencies another day, and launching a new product that will impact the lives of Americans across the country the next week. TTS values open source development, so most of what you will work on will be open source.
20+
# Project Updates
21+
22+
## [Clean Slate](https://docs.google.com/forms/d/e/1FAIpQLSfZ18U2gHI97WqD-C63NvORCZu1vQX6hfLI4-1FOIA1neaaXw/viewform)
23+
* They are meeting primarily on Thursdays now.
24+
* Working on content and layout for MRCC website and upcoming events.
25+
* Working on research for JavaScript testing framework for DocAssemble.
26+
* Got feedback on what previous data team was using to move that part forward.
27+
28+
## [Police Data Trust](https://github.com/codeforboston/police-data-trust)
29+
* Put up the development site
30+
* Decided on dates
31+
* Issues to milestones for product management
32+
* Data scraping PR was merged and will have some data to process through a couple PRs between API and the UI.
33+
34+
## Mattapan Mapping
35+
* Merging in a big refactor.

_sass/_newsletter.scss

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.newsletter {
2+
h1 {
3+
font-size: $base-font-size * $small-font-ratio * $small-font-ratio;
4+
}
5+
h2 {
6+
font-size: $base-font-size * $small-font-ratio;
7+
}
8+
hr {
9+
margin-bottom: 20px;
10+
margin-top: 20px;
11+
}
12+
}

css/main.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,4 +237,4 @@ h3 {
237237

238238
/*** IMPORT PARTIALS FROM 'SASS_DIR' (defaults to '_sass') ***/
239239
@import 'base', 'buttons', 'lists', 'forms', 'page-link-nav', 'components',
240-
'hackathon', 'syntax-highlighting';
240+
'hackathon', 'syntax-highlighting', 'newsletter';

latest_updates.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: Latest Updates
3+
permalink: "/posts/"
4+
layout: page
5+
type: inNavBar
6+
---
7+
8+
<h1 class="t-section-headline">Latest Updates</h1>
9+
<h2>{{ site.posts[0].title }}</h2>
10+
<h4>{{ site.posts[0].date | date_to_long_string: "ordinal", "US" }}</h4>
11+
12+
<section>
13+
<br>
14+
<div class="newsletter">
15+
{{ site.posts[0].content }}
16+
</div>
17+
</section>
18+
19+
<hr style="margin-top: 10px; margin-bottom: 20px;" />
20+
<section style="text-align: center">
21+
<a href="{% link newsletters.html %}">Newsletter Index</a>
22+
</section>

newsletters.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Newsletters
3+
permalink: "/newsletters"
4+
layout: page
5+
---
6+
7+
<h1>Newsletters</h1>
8+
9+
<ul>
10+
{% for post in site.posts %}
11+
<li>
12+
<a href="{{ post.url }}">{{ post.title }}</a>
13+
<br />
14+
{{ post.date | date_to_string: "ordinal", "US" }}
15+
</li>
16+
{% endfor %}
17+
</ul>

0 commit comments

Comments
 (0)