diff --git a/.gitignore b/.gitignore index badbc02..76fc4ea 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ _site .sass-cache +.DS_Store diff --git a/_config.yml b/_config.yml index b6865ce..397008a 100644 --- a/_config.yml +++ b/_config.yml @@ -1,45 +1,44 @@ # Site settings -title: Social and Behavioral Sciences Team -description: We are a cross-agency team with backgrounds in a diversity of fields, including economics, policy, psychology, law, medicine, statistics and political science. What unifies us is our commitment to using what research tells us about how people make decisions to better serve Americans and improve government efficiency. +title: Your Site Name +description: A description of your website that will show up in search indexes and social media shares. baseurl: "" # the subpath of your site, e.g. /blog/ -url: "https://sbst.gov" # the base hostname & protocol for your site -logo: /assets/img/logos/logo-name.png -feature_image: /assets/img/potus.jpg +url: "https://example.gov" # the base hostname & protocol for your site +logo: /assets/img/logo-main.gif +feature_image: /assets/img/feature-background.jpg colors: - background: '#fdfdfd' + background: '#ffffff' button: - background: '#126ca7' - hover: '#134050' + background: '#0071bc' + hover: '#3e94cf' text: '#fff' - headers: '#126ca7' - text: '#000000' + headers: '#205493' + text: '#212121' projects: - accent: 'rgb(249, 131, 74)' - contact: - background: '#126ca7' + accent: '#02bfe7' + banner: + background: '#112e51' text: '#fff' button: - background: '#f2c446' - text: '#134050' + background: '#dce4ef' + text: '#112e51' footer: - background: '#4c4c4c' + background: '#323a45' text: '#fff' analytics: google: - code: 'UA-67580537-1' + code: 'UA-48605964-32' # Change this to your GSA analytics code dap: - agency: GSA - subagency: SBST + agency: GSA # Change this to your agency + subagency: 18F # Change this to your agency forms: - type: newsletter + heading: Sign up to receive updates from our team url: https://docs.google.com/forms/d/1Tsdm_2spbxWnmTFMrH5eHxpOAN9W4LB3eaMMXJ1N0rU/formResponse button: Subscribe - privacypolicy: - name: GSA Privacy and Security Notice - url: https://gsa.gov + privacypolicy: Your privacy and security are important to us, we'll only share your information as described in the GSA Privacy and Security Notice fields: - type: email name: entry.1440502332 @@ -50,11 +49,10 @@ forms: footer: image: /assets/img/gsa-logo-dark.jpg - email: sbst@gsa.gov + email: twitter: - - usgsa - - whitehouseostp - text: This site is run by the General Services Administration for the National Science and Technology Council's Subcommittee on the Social and Behavioral Sciences Team. + - 18f + text: This site was built using Federalist, from 18F. # Change to a tag line for your agency # Build settings markdown: kramdown diff --git a/_data/navbar.yml b/_data/navbar.yml index 4ce8789..41e74d4 100644 --- a/_data/navbar.yml +++ b/_data/navbar.yml @@ -1,8 +1,4 @@ - name: About permalink: '/about/' -- name: Approach - permalink: '/approach/' -- name: Work - permalink: '/work/' -- name: Connect - permalink: '/connect/' +- name: Projects + permalink: '/projects/' diff --git a/_includes/contact.html b/_includes/contact.html index 5a91d2d..240905e 100644 --- a/_includes/contact.html +++ b/_includes/contact.html @@ -8,7 +8,7 @@
- Sign up to receive updates from SBST + {{ f.heading }}
{% for field in f.fields %} {% unless field.type == 'hidden' %}{% endunless %} @@ -22,7 +22,7 @@
{% if f.privacypolicy %} -

Your privacy and security are important to us, we'll only share your information as described in the {{ f.privacypolicy.name }}

+

{{ f.privacypolicy }}

{% else %}

{% endif %} diff --git a/_includes/head.html b/_includes/head.html index e71fa09..e60b6a6 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -16,7 +16,7 @@ - + diff --git a/_sass/_banners.scss b/_sass/_banners.scss index 0f573f8..1edc38c 100644 --- a/_sass/_banners.scss +++ b/_sass/_banners.scss @@ -1,20 +1,20 @@ .banner.tagline { - background-color: $contact-background-color; + background-color: $banner-background-color; } .banner.tagline .usa-grid { padding: 3rem; } .banner.tagline p { - color: $contact-text-color; + color: $banner-text-color; margin-bottom: 75px; } .banner.tagline h2 { - color: $contact-text-color; + color: $banner-text-color; margin-top: 75px; } .banner.contact { - background-color: $contact-background-color; + background-color: $banner-background-color; } .banner.contact form { padding-top: 2em; @@ -26,7 +26,7 @@ .banner.contact a, .banner.contact a:hover, .banner.contact a:visited { - color: $contact-text-color; + color: $banner-text-color; } .banner .usa-button, @@ -37,6 +37,6 @@ .banner [type="button"], .banner [type="submit"], .banner [type="reset"] { - background-color: $contact-button-color; - color: $contact-button-text-color; + background-color: $banner-button-color; + color: $banner-button-text-color; } diff --git a/_sass/_base.scss b/_sass/_base.scss index 4236c77..1b2d30d 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -1,13 +1,10 @@ body, p, ul, ol, li, a { color: $text-color; - font-family: 'Lato', sans-serif; - font-weight: 300; } legend, label, h1, h2, h3, h4, h5, h6 { color: $headers-color; - font-family: 'Lato', sans-serif; } legend, diff --git a/_sass/_hero.scss b/_sass/_hero.scss index 4775238..7880883 100644 --- a/_sass/_hero.scss +++ b/_sass/_hero.scss @@ -1,7 +1,7 @@ .hero-unit { background-size: cover; background-repeat: no-repeat; - background-position: 50% 20%; + background-position: 50% 50%; min-height: 32em; position: relative; } diff --git a/_sass/_navbar.scss b/_sass/_navbar.scss index 9c5a425..0f44e23 100644 --- a/_sass/_navbar.scss +++ b/_sass/_navbar.scss @@ -18,7 +18,7 @@ height: 80px; } #logo img { - width: 60%; + margin-top: 0.75rem; } #logo a { border: none; diff --git a/_sass/_projects.scss b/_sass/_projects.scss index 9e1be72..2ca68c0 100644 --- a/_sass/_projects.scss +++ b/_sass/_projects.scss @@ -32,3 +32,9 @@ a .project--description span { a:hover .project--description span { border-bottom: 1px dotted; } + +@media screen and (min-width: 600px) { + .usa-grid .usa-width-one-third:last-child { + margin-right: 1px; + } +} diff --git a/assets/css/google-fonts.css b/assets/css/google-fonts.css new file mode 100644 index 0000000..d4931a6 --- /dev/null +++ b/assets/css/google-fonts.css @@ -0,0 +1,102 @@ +@font-face { + font-family: 'Source Sans Pro'; + font-style: normal; + font-weight: 300; + src: url('../fonts/sourcesanspro-light-webfont.eot'); + src: url('../fonts/sourcesanspro-light-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/sourcesanspro-light-webfont.woff2') format('woff2'), + url('../fonts/sourcesanspro-light-webfont.woff') format('woff'), + url('../fonts/sourcesanspro-light-webfont.ttf') format('truetype'), + url('../fonts/sourcesanspro-light-webfont.svg#source_sans_prolight') format('svg'); +} + +@font-face { + font-family: 'Source Sans Pro'; + font-style: normal; + font-weight: 400; + src: url('../fonts/sourcesanspro-regular-webfont.eot'); + src: url('../fonts/sourcesanspro-regular-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/sourcesanspro-regular-webfont.woff2') format('woff2'), + url('../fonts/sourcesanspro-regular-webfont.woff') format('woff'), + url('../fonts/sourcesanspro-regular-webfont.ttf') format('truetype'), + url('../fonts/sourcesanspro-regular-webfont.svg#source_sans_proregular') format('svg'); + +} + +@font-face { + font-family: 'Source Sans Pro'; + font-style: italic; + font-weight: 400; + src: url('../fonts/sourcesanspro-italic-webfont.eot'); + src: url('../fonts/sourcesanspro-italic-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/sourcesanspro-italic-webfont.woff2') format('woff2'), + url('../fonts/sourcesanspro-italic-webfont.woff') format('woff'), + url('../fonts/sourcesanspro-italic-webfont.ttf') format('truetype'), + url('../fonts/sourcesanspro-italic-webfont.svg#source_sans_proitalic') format('svg'); + +} + +@font-face { + font-family: 'Source Sans Pro'; + font-style: normal; + font-weight: 700; + src: url('../fonts/sourcesanspro-bold-webfont.eot'); + src: url('../fonts/sourcesanspro-bold-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/sourcesanspro-bold-webfont.woff2') format('woff2'), + url('../fonts/sourcesanspro-bold-webfont.woff') format('woff'), + url('../fonts/sourcesanspro-bold-webfont.ttf') format('truetype'), + url('../fonts/sourcesanspro-bold-webfont.svg#source_sans_probold') format('svg'); + +} + +@font-face { + font-family: 'Merriweather'; + font-style: normal; + font-weight: 300; + src: url('../fonts/merriweather-light-webfont.eot'); + src: url('../fonts/merriweather-light-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/merriweather-light-webfont.woff2') format('woff2'), + url('../fonts/merriweather-light-webfont.woff') format('woff'), + url('../fonts/merriweather-light-webfont.ttf') format('truetype'), + url('../fonts/merriweather-light-webfont.svg#source_sans_proregular') format('svg'); + +} + +@font-face { + font-family: 'Merriweather'; + font-style: normal; + font-weight: 400; + src: url('../fonts/merriweather-regular-webfont.eot'); + src: url('../fonts/merriweather-regular-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/merriweather-regular-webfont.woff2') format('woff2'), + url('../fonts/merriweather-regular-webfont.woff') format('woff'), + url('../fonts/merriweather-regular-webfont.ttf') format('truetype'), + url('../fonts/merriweather-regular-webfont.svg#source_sans_proitalic') format('svg'); + +} + +@font-face { + font-family: 'Merriweather'; + font-style: italic; + font-weight: 400; + src: url('../fonts/merriweather-italic-webfont.eot'); + src: url('../fonts/merriweather-italic-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/merriweather-italic-webfont.woff2') format('woff2'), + url('../fonts/merriweather-italic-webfont.woff') format('woff'), + url('../fonts/merriweather-italic-webfont.ttf') format('truetype'), + url('../fonts/merriweather-italic-webfont.svg#source_sans_proitalic') format('svg'); + +} + +@font-face { + font-family: 'Merriweather'; + font-style: normal; + font-weight: 700; + src: url('../fonts/merriweather-bold-webfont.eot'); + src: url('../fonts/merriweather-bold-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/merriweather-bold-webfont.woff2') format('woff2'), + url('../fonts/merriweather-bold-webfont.woff') format('woff'), + url('../fonts/merriweather-bold-webfont.ttf') format('truetype'), + url('../fonts/merriweather-bold-webfont.svg#source_sans_probold') format('svg'); + +} \ No newline at end of file diff --git a/assets/css/main.scss b/assets/css/main.scss index a4ee0a9..14c62dd 100755 --- a/assets/css/main.scss +++ b/assets/css/main.scss @@ -22,10 +22,10 @@ $button-text-color: {{ site.colors.button.text }}; $project-accent-color: {{ site.colors.projects.accent }}; -$contact-background-color: {{ site.colors.contact.background }}; -$contact-text-color: {{ site.colors.contact.text }}; -$contact-button-color: {{ site.colors.contact.button.background }}; -$contact-button-text-color: {{ site.colors.contact.button.text }}; +$banner-background-color: {{ site.colors.banner.background }}; +$banner-text-color: {{ site.colors.banner.text }}; +$banner-button-color: {{ site.colors.banner.button.background }}; +$banner-button-text-color: {{ site.colors.banner.button.text }}; $footer-background-color: {{ site.colors.footer.background }}; $footer-text-color: {{ site.colors.footer.text }}; diff --git a/assets/fonts/merriweather-bold-webfont.eot b/assets/fonts/merriweather-bold-webfont.eot new file mode 100755 index 0000000..c77b53b Binary files /dev/null and b/assets/fonts/merriweather-bold-webfont.eot differ diff --git a/assets/fonts/merriweather-bold-webfont.svg b/assets/fonts/merriweather-bold-webfont.svg new file mode 100755 index 0000000..3227239 --- /dev/null +++ b/assets/fonts/merriweather-bold-webfont.svg @@ -0,0 +1,294 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/merriweather-bold-webfont.ttf b/assets/fonts/merriweather-bold-webfont.ttf new file mode 100755 index 0000000..44f33c2 Binary files /dev/null and b/assets/fonts/merriweather-bold-webfont.ttf differ diff --git a/assets/fonts/merriweather-bold-webfont.woff b/assets/fonts/merriweather-bold-webfont.woff new file mode 100755 index 0000000..a728400 Binary files /dev/null and b/assets/fonts/merriweather-bold-webfont.woff differ diff --git a/assets/fonts/merriweather-bold-webfont.woff2 b/assets/fonts/merriweather-bold-webfont.woff2 new file mode 100755 index 0000000..ff3bddf Binary files /dev/null and b/assets/fonts/merriweather-bold-webfont.woff2 differ diff --git a/assets/fonts/merriweather-italic-webfont.eot b/assets/fonts/merriweather-italic-webfont.eot new file mode 100755 index 0000000..8841854 Binary files /dev/null and b/assets/fonts/merriweather-italic-webfont.eot differ diff --git a/assets/fonts/merriweather-italic-webfont.svg b/assets/fonts/merriweather-italic-webfont.svg new file mode 100755 index 0000000..46f8fe1 --- /dev/null +++ b/assets/fonts/merriweather-italic-webfont.svg @@ -0,0 +1,283 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/merriweather-italic-webfont.ttf b/assets/fonts/merriweather-italic-webfont.ttf new file mode 100755 index 0000000..3180e52 Binary files /dev/null and b/assets/fonts/merriweather-italic-webfont.ttf differ diff --git a/assets/fonts/merriweather-italic-webfont.woff b/assets/fonts/merriweather-italic-webfont.woff new file mode 100755 index 0000000..d7071e3 Binary files /dev/null and b/assets/fonts/merriweather-italic-webfont.woff differ diff --git a/assets/fonts/merriweather-italic-webfont.woff2 b/assets/fonts/merriweather-italic-webfont.woff2 new file mode 100755 index 0000000..f8660d0 Binary files /dev/null and b/assets/fonts/merriweather-italic-webfont.woff2 differ diff --git a/assets/fonts/merriweather-light-webfont.eot b/assets/fonts/merriweather-light-webfont.eot new file mode 100755 index 0000000..4115d28 Binary files /dev/null and b/assets/fonts/merriweather-light-webfont.eot differ diff --git a/assets/fonts/merriweather-light-webfont.svg b/assets/fonts/merriweather-light-webfont.svg new file mode 100755 index 0000000..96c41ee --- /dev/null +++ b/assets/fonts/merriweather-light-webfont.svg @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/merriweather-light-webfont.ttf b/assets/fonts/merriweather-light-webfont.ttf new file mode 100755 index 0000000..03cfa42 Binary files /dev/null and b/assets/fonts/merriweather-light-webfont.ttf differ diff --git a/assets/fonts/merriweather-light-webfont.woff b/assets/fonts/merriweather-light-webfont.woff new file mode 100755 index 0000000..9b34275 Binary files /dev/null and b/assets/fonts/merriweather-light-webfont.woff differ diff --git a/assets/fonts/merriweather-light-webfont.woff2 b/assets/fonts/merriweather-light-webfont.woff2 new file mode 100755 index 0000000..e53e4b5 Binary files /dev/null and b/assets/fonts/merriweather-light-webfont.woff2 differ diff --git a/assets/fonts/merriweather-regular-webfont.eot b/assets/fonts/merriweather-regular-webfont.eot new file mode 100755 index 0000000..c4cde6d Binary files /dev/null and b/assets/fonts/merriweather-regular-webfont.eot differ diff --git a/assets/fonts/merriweather-regular-webfont.svg b/assets/fonts/merriweather-regular-webfont.svg new file mode 100755 index 0000000..47b2ff8 --- /dev/null +++ b/assets/fonts/merriweather-regular-webfont.svg @@ -0,0 +1,294 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/merriweather-regular-webfont.ttf b/assets/fonts/merriweather-regular-webfont.ttf new file mode 100755 index 0000000..3889a60 Binary files /dev/null and b/assets/fonts/merriweather-regular-webfont.ttf differ diff --git a/assets/fonts/merriweather-regular-webfont.woff b/assets/fonts/merriweather-regular-webfont.woff new file mode 100755 index 0000000..1969d2e Binary files /dev/null and b/assets/fonts/merriweather-regular-webfont.woff differ diff --git a/assets/fonts/merriweather-regular-webfont.woff2 b/assets/fonts/merriweather-regular-webfont.woff2 new file mode 100755 index 0000000..3023ce7 Binary files /dev/null and b/assets/fonts/merriweather-regular-webfont.woff2 differ diff --git a/assets/fonts/sourcesanspro-bold-webfont.eot b/assets/fonts/sourcesanspro-bold-webfont.eot new file mode 100755 index 0000000..d77927c Binary files /dev/null and b/assets/fonts/sourcesanspro-bold-webfont.eot differ diff --git a/assets/fonts/sourcesanspro-bold-webfont.svg b/assets/fonts/sourcesanspro-bold-webfont.svg new file mode 100755 index 0000000..e1a5e15 --- /dev/null +++ b/assets/fonts/sourcesanspro-bold-webfont.svg @@ -0,0 +1,965 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/sourcesanspro-bold-webfont.ttf b/assets/fonts/sourcesanspro-bold-webfont.ttf new file mode 100755 index 0000000..1cc1537 Binary files /dev/null and b/assets/fonts/sourcesanspro-bold-webfont.ttf differ diff --git a/assets/fonts/sourcesanspro-bold-webfont.woff b/assets/fonts/sourcesanspro-bold-webfont.woff new file mode 100755 index 0000000..fc0efcf Binary files /dev/null and b/assets/fonts/sourcesanspro-bold-webfont.woff differ diff --git a/assets/fonts/sourcesanspro-bold-webfont.woff2 b/assets/fonts/sourcesanspro-bold-webfont.woff2 new file mode 100755 index 0000000..ec80064 Binary files /dev/null and b/assets/fonts/sourcesanspro-bold-webfont.woff2 differ diff --git a/assets/fonts/sourcesanspro-italic-webfont.eot b/assets/fonts/sourcesanspro-italic-webfont.eot new file mode 100755 index 0000000..3411023 Binary files /dev/null and b/assets/fonts/sourcesanspro-italic-webfont.eot differ diff --git a/assets/fonts/sourcesanspro-italic-webfont.svg b/assets/fonts/sourcesanspro-italic-webfont.svg new file mode 100755 index 0000000..17cb29b --- /dev/null +++ b/assets/fonts/sourcesanspro-italic-webfont.svg @@ -0,0 +1,853 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/sourcesanspro-italic-webfont.ttf b/assets/fonts/sourcesanspro-italic-webfont.ttf new file mode 100755 index 0000000..5bc1ff4 Binary files /dev/null and b/assets/fonts/sourcesanspro-italic-webfont.ttf differ diff --git a/assets/fonts/sourcesanspro-italic-webfont.woff b/assets/fonts/sourcesanspro-italic-webfont.woff new file mode 100755 index 0000000..56f57cd Binary files /dev/null and b/assets/fonts/sourcesanspro-italic-webfont.woff differ diff --git a/assets/fonts/sourcesanspro-italic-webfont.woff2 b/assets/fonts/sourcesanspro-italic-webfont.woff2 new file mode 100755 index 0000000..fe7a809 Binary files /dev/null and b/assets/fonts/sourcesanspro-italic-webfont.woff2 differ diff --git a/assets/fonts/sourcesanspro-light-webfont.eot b/assets/fonts/sourcesanspro-light-webfont.eot new file mode 100755 index 0000000..8c83354 Binary files /dev/null and b/assets/fonts/sourcesanspro-light-webfont.eot differ diff --git a/assets/fonts/sourcesanspro-light-webfont.svg b/assets/fonts/sourcesanspro-light-webfont.svg new file mode 100755 index 0000000..0ced8aa --- /dev/null +++ b/assets/fonts/sourcesanspro-light-webfont.svg @@ -0,0 +1,915 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/sourcesanspro-light-webfont.ttf b/assets/fonts/sourcesanspro-light-webfont.ttf new file mode 100755 index 0000000..551c0b7 Binary files /dev/null and b/assets/fonts/sourcesanspro-light-webfont.ttf differ diff --git a/assets/fonts/sourcesanspro-light-webfont.woff b/assets/fonts/sourcesanspro-light-webfont.woff new file mode 100755 index 0000000..f08c039 Binary files /dev/null and b/assets/fonts/sourcesanspro-light-webfont.woff differ diff --git a/assets/fonts/sourcesanspro-light-webfont.woff2 b/assets/fonts/sourcesanspro-light-webfont.woff2 new file mode 100755 index 0000000..767effe Binary files /dev/null and b/assets/fonts/sourcesanspro-light-webfont.woff2 differ diff --git a/assets/fonts/sourcesanspro-regular-webfont.eot b/assets/fonts/sourcesanspro-regular-webfont.eot new file mode 100755 index 0000000..1a73c5e Binary files /dev/null and b/assets/fonts/sourcesanspro-regular-webfont.eot differ diff --git a/assets/fonts/sourcesanspro-regular-webfont.svg b/assets/fonts/sourcesanspro-regular-webfont.svg new file mode 100755 index 0000000..de5d8ba --- /dev/null +++ b/assets/fonts/sourcesanspro-regular-webfont.svg @@ -0,0 +1,989 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/sourcesanspro-regular-webfont.ttf b/assets/fonts/sourcesanspro-regular-webfont.ttf new file mode 100755 index 0000000..b4f6886 Binary files /dev/null and b/assets/fonts/sourcesanspro-regular-webfont.ttf differ diff --git a/assets/fonts/sourcesanspro-regular-webfont.woff b/assets/fonts/sourcesanspro-regular-webfont.woff new file mode 100755 index 0000000..1e8b24f Binary files /dev/null and b/assets/fonts/sourcesanspro-regular-webfont.woff differ diff --git a/assets/fonts/sourcesanspro-regular-webfont.woff2 b/assets/fonts/sourcesanspro-regular-webfont.woff2 new file mode 100755 index 0000000..9f24cb5 Binary files /dev/null and b/assets/fonts/sourcesanspro-regular-webfont.woff2 differ diff --git a/assets/img/feature-background.jpg b/assets/img/feature-background.jpg new file mode 100644 index 0000000..0f4df95 Binary files /dev/null and b/assets/img/feature-background.jpg differ diff --git a/assets/img/logo-main.gif b/assets/img/logo-main.gif new file mode 100644 index 0000000..d1e99cf Binary files /dev/null and b/assets/img/logo-main.gif differ diff --git a/google823645bd9402facd.html b/google823645bd9402facd.html deleted file mode 100644 index 49447bc..0000000 --- a/google823645bd9402facd.html +++ /dev/null @@ -1 +0,0 @@ -google-site-verification: google823645bd9402facd.html \ No newline at end of file diff --git a/pages/2015-annual-report.md b/pages/2015-annual-report.md deleted file mode 100644 index 4d20b90..0000000 --- a/pages/2015-annual-report.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: project -title: 2015 Annual Report -permalink: /2015-annual-report/ ---- - -[View 2015 Annual Report - PDF]({{ '/assets/files/2015-annual-report.pdf' | prepend: site.baseurl }}){: .usa-button } - -This report was developed by the Social and Behavioral Sciences Team (SBST), a cross-agency team organized under the National Science and Technology Council. Its publication marks an important milestone for the Administration’s policy of using behavioral science to strengthen the ways in which Federal programs and policies serve the nation — a policy that was codified in September 2015. - -In building an initial portfolio of work, SBST focused on projects in two areas where behavioral science had a strong role to play and impacts could be demonstrated relatively rapidly: - -- **Assisting Americans by Streamlining Access to Programs:** projects to streamline access to programs in retirement security, education, healthcare, and economic opportunity. - -- **Improving Government Efficiency:** projects to improve program integrity, promote efficiencies by government workers, and help officials make cost-effective decisions. - -In nearly all cases, SBST was able to generate evidence about the effectiveness of these behavioral insights applications using randomized evaluations — the gold standard of evidence among policymakers and social scientists. - - -[View Executive Order >]({{ '/assets/files/behavioral-science-eo-unsigned.pdf' | prepend: site.baseurl }}) - -[View OIRA / OSTP Guidance >]({{ '/assets/files/forms-guidance.pdf' | prepend: site.baseurl }}) - -[View the Fact Sheet >](https://www.whitehouse.gov/sites/default/files/omb/inforeg/memos/2015/behavioral-science-insights-and-federal-forms.pdf) - -[View the West Wing Week video >](https://www.whitehouse.gov/blog/2015/02/09/behavioral-science-insights-make-government-more-effective-simpler-and-more-user-fri) - - - - -
diff --git a/pages/approach.md b/pages/approach.md deleted file mode 100644 index 2291210..0000000 --- a/pages/approach.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -layout: page -title: Approach -permalink: /approach/ ---- - -SBST translates findings and methods from the social and behavioral sciences into improvements in Federal policies and programs. - -We focus on four aspects of program design where prior research and practice indicate that behavioral insights have an especially strong role to play in program outcomes: - -* Opportunities to streamline access to programs and benefits for qualifying individuals, families, and businesses. - -* Opportunities to improve how Government presents information to consumers, borrowers, and program beneficiaries. - -* Opportunities to enhance how Government presents and structure choices within programs, including default settings and the number and arrangement of options. - -* Opportunities to examine the frequency, presentation, and labeling of benefits, tax credits, and other incentives (financial and non-financial). - -## Where We Work - -Applying behavioral insights in the right context can lead to substantial improvements in program outcomes. How does SBST identify where to apply behavioral insights? - -The most promising opportunities have three features: - -**Policy Goal:** Successful projects require well-defined policy goals with defined outcomes of interest - in part because SBST itself does not set policy. - -**Individual Behavior:** A link between a policy goal and the decisions or actions of individuals is the essence of an SBST project. Where Federal policy outcomes do not depend on behavior, applications of behavioral insights will have little relevance, no matter how worthwhile the goal. - -**Program Touchpoint:** A point of direct interaction between the Federal government and individuals, such as an application process or form, a website that offers program choices, or the structure of incentives (financial and nonfinancial). - -So for example, if the policy goal is to help borrowers manage their student debt, the individual behavior might be whether or not to apply for an income-driven repayment (IDR) plan, and the program touchpoint might be the IDR application. Behavioral insights might suggest ways to most clearly present the IDR options and make the application as simple and intuitive as possible. - - diff --git a/pages/contact.md b/pages/contact.md deleted file mode 100644 index e102347..0000000 --- a/pages/contact.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: page -title: Connect -permalink: /connect/ -image: /assets/img/contact.jpg ---- - -## Interested Agency Collaborators - -Do you have an idea for a project at your agency that you'd like to discuss with SBST? Tell us more about what you're working on and we'll reach out to schedule an appointment during our virtual office hours. - -[Register now >](https://docs.google.com/a/gsa.gov/forms/d/1Ho5LmjXDGwrxwnLE3MVIA7yNv9LdQmeKBcbSRHqK0AQ/viewform) - -## Interested Academic Affiliates - -Are you interested in supporting a project in your area of expertise? Tell us a bit about yourself, and if an opportunity arises, we'll notify you. - -[Register now >](https://docs.google.com/a/gsa.gov/forms/d/1Q-htQ4boVP4sSeAsgkejfQbS3opMMRXR0Er4s7hdsGg/viewform) - -## Interested Fellows and Associates - -Are you interested in joining the team? Tell us a bit about yourself, and if an opportunity arises, we'll notify you. - -[Register now >](https://docs.google.com/forms/d/1lwyc-Qx1LM6esvJ7YXTfw85YVOUIHZJjo3A_lLXkyC4/viewform) diff --git a/pages/home.md b/pages/home.md index 35a92b8..e4bc73e 100644 --- a/pages/home.md +++ b/pages/home.md @@ -1,7 +1,7 @@ --- layout: home permalink: / -hero-image: /assets/img/potus.jpg +hero-image: /assets/img/feature-background.jpg hero-text: "We believe that government works best when it's built for people. " hero-button-text: View the 2015 Annual Report hero-button-link: /2015-annual-report/ diff --git a/pages/work.md b/pages/work.md index 4ecb292..a0a8505 100644 --- a/pages/work.md +++ b/pages/work.md @@ -1,7 +1,7 @@ --- layout: project-list -title: Work -permalink: /work/ +title: Projects +permalink: /projects/ --- As a result of SBST projects, more Servicemembers are saving for retirement, more students are going to college and better managing their student loans, more Veterans are taking advantage of education and career counseling benefits, more small farms are gaining access to credit, and more families are securing health insurance coverage. And improvements in government program integrity and efficiency are saving taxpayer dollars. @@ -9,9 +9,3 @@ As a result of SBST projects, more Servicemembers are saving for retirement, mor [View 2015 Annual Report - PDF]({{ '/assets/files/2015-annual-report.pdf' | prepend: site.baseurl }}){: .usa-button } ## Select Projects from 2015 Annual Report - - - - - -