-
Notifications
You must be signed in to change notification settings - Fork 311
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
Dev --> master #2112
Merged
Dev --> master #2112
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
3e2bc89
hhs draft intro content
e736dbd
revision to hire page
728a070
blog config
gemfarmer 3a196d1
documentation
gemfarmer 8caf560
ruby syntax
gemfarmer b479600
ruby syntax
gemfarmer bd21f5f
new hire content and form outline
6616245
hhs intro edits
4cb0e2f
remove form and add mailto
26b394b
fix first mailto
8d82b1c
Merge pull request #2102 from 18F/blog-build
41c5d51
no-image handling and HHS intro edits
74af00a
Merge pull request #2107 from 18F/hire-rewrite
gboone 478d155
hhs intro header edits
aca1c1c
hhs intro revisions
a5f7241
Merge pull request #2108 from 18F/project-intros
gemfarmer e08284d
add project-page links to what we deliver
996374d
typos
16c111a
Merge pull request #2113 from 18F/project-intros
gemfarmer 9f93a82
revert changes to Gemfile.lock
gemfarmer 6f6bd16
updated developer page and fixed link
elainekamlley 9420ba6
Merge pull request #2117 from 18F/some-bug-fixes
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ env: "development" | |
|
||
exclude: | ||
- _pages | ||
- _cards | ||
- _posts | ||
- _authors | ||
- CONTRIBUTING.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
layout: project-tag-results | ||
project-type: "Partner" | ||
title: "Health and Human Services" | ||
subtitle: Helping states update crucial systems | ||
excerpt: HHS hired 18F to help states implement current best practices and upgrade legacy systems. | ||
image: /assets/img/projects/hero_stateandlocal.png | ||
image_accessibility: "Grayscale photograph of eleven people meeting in small groups during a workshop" | ||
tags: | ||
- state and local practice | ||
expiration_date: | ||
github_repo: | ||
project_url: | ||
--- | ||
|
||
Health and Human Services (HHS) is a federal agency, but many crucial HHS programs — like Medicaid — are administered by states. | ||
|
||
HHS encourages states to upgrade legacy systems by offering funding incentives, but many states struggle to manage risk and build usable systems while navigating federal and state contracting rules. HHS hired 18F to step in and help states set these projects up for success through the technology acquisition process. | ||
|
||
### Reducing risk by breaking up contracts | ||
|
||
In our first project with HHS, we helped California get on the right path to buying a new system for child welfare case management by facilitating a two-day workshop to break a monolithic contract into smaller pieces (along with colleagues from California’s Department of Social Services, the Office of Systems Integration, and Code for America). | ||
|
||
Next, HHS asked us to work with other states who needed to procure case management systems for child welfare. We also began applying what we learned to a new challenge: working with the Centers for Medicare and Medicaid Systems (also within HHS) to support states who were upgrading Medicaid data systems. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
require 'pry' | ||
require 'rb-readline' | ||
# script to update the blog build config | ||
posts = './_posts' | ||
post_directory = Dir[File.join(posts, '**', '*')] | ||
stripped_post_directory = post_directory.map do |post| | ||
post.slice(2, post.size) | ||
end | ||
|
||
post_count = stripped_post_directory.count | ||
config_path = './_config-blog.yml' | ||
lines = File.readlines(config_path) | ||
acceptable_indices = [ | ||
post_count - 1, | ||
post_count - 2, | ||
post_count - 3 | ||
] | ||
|
||
stripped_post_directory.each_with_index do |post, index| | ||
if !lines.include? "- #{post}\n" and !acceptable_indices.include? index | ||
lines << "- #{post}" | ||
end | ||
end | ||
|
||
File.open(config_path, 'w') do |f| | ||
f.puts lines | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
if [ -n $FAST_BUILDS ]; then | ||
export FAST_BUILDS=true; | ||
fi | ||
|
||
ruby config_blog.rb | ||
|
||
LC_ALL="en_US.UTF-8" bundle exec jekyll serve --watch --host 0.0.0.0 --config="_config.yml,_config-fast-builds.yml,_config-blog.yml" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Favor modifier if usage when having a single-line body. Another good alternative is the usage of control flow &&/||.
Use && instead of and.