Skip to content

Commit

Permalink
add last modified date to pages
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredbain committed Feb 4, 2025
1 parent f5c9420 commit 6720b2e
Show file tree
Hide file tree
Showing 61 changed files with 100 additions and 1 deletion.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ gem "kramdown-parser-gfm", "~> 1.1.0"
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.15"
gem 'jekyll-redirect-from'
gem "jekyll-last-modified-at"
gem 'jekyll-paginate-v2', "3.0.0"
gem 'jekyll-sitemap'
gem 'jekyll-seo-tag'
Expand Down
3 changes: 3 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ GEM
jekyll (>= 3.7, < 5.0)
jekyll-include-cache (0.2.1)
jekyll (>= 3.7, < 5.0)
jekyll-last-modified-at (1.3.2)
jekyll (>= 3.7, < 5.0)
jekyll-paginate-v2 (3.0.0)
jekyll (>= 3.0, < 5.0)
jekyll-redirect-from (0.16.0)
Expand Down Expand Up @@ -109,6 +111,7 @@ DEPENDENCIES
jekyll-autoprefixer
jekyll-feed (~> 0.15)
jekyll-include-cache
jekyll-last-modified-at
jekyll-paginate-v2 (= 3.0.0)
jekyll-redirect-from
jekyll-seo-tag
Expand Down
4 changes: 4 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,11 @@ plugins:
- jekyll-redirect-from
- jekyll-sitemap
- jekyll-seo-tag
- jekyll-last-modified-at

# Optional. The default date format, used if none is specified in the tag.
last-modified-at:
date-format: '%b %d, %Y'
############################################################
# Site configuration for the Jekyll 3 Pagination Gem
# The values here represent the defaults if nothing is set
Expand Down
8 changes: 8 additions & 0 deletions _includes/last-modified.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

<div class="topic_page_footer--container desktop:grid-col-12">
<div class="footer-row" id="content-modified">
<div class="last-reviewed" id="page-last-reviewed" aria-label="page-last-reviewed">
<div class="margin-top-5">Last updated: {{ page.last_modified_at | date: '%b %d, %Y'}}</div>
</div>
</div>
</div>
1 change: 1 addition & 0 deletions _layouts/fellow-landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ <h1 class="usa-hero__heading display display--inverted">
{% include_cached quote.html image="/assets/images/quotes/jacqueline_kazil.jpg" quote="PIFdom is about having the opportunity to have an impact on every American." name="Jacqueline Kazil, 2013 PIF, detailed to the Federal Emergency Management Agency (FEMA)" %}
<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
Expand Down
1 change: 1 addition & 0 deletions _layouts/fellow.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ <h2>Biography</h2>
</div>
<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
Expand Down
1 change: 1 addition & 0 deletions _layouts/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ <h2>PIF Impact Report</h2>

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
Expand Down
1 change: 1 addition & 0 deletions _projects/cdc-analytics-and-interoperable-systems.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Presidential Innovation Fellows working with the CDC will advise, consult, and a

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/cms-oeda.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ The PIF may also participate in hands-on development of FHIR-based APIs.

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/diu-tech-transfer.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ In addition to DIU, the rebranded National Security Innovation Network (NSIN), w

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/diux-startups.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ DIU is looking for two Presidential Innovation Fellows to help bridge the gap be

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/doj-crt.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ The Fellow would also help the Civil Rights Division more broadly embed and inco

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/doj-facilitate-data-driven-decision-making.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ These Presidential Innovation Fellows will have expertise in data science and da

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/dol-building-more-inclusive-economy.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ The Presidential Innovation Fellow will have expertise in product development an

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/dot-autonomous-vehicles.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ The Fellow will also assist the DOT in development of longer-term strategic plan

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/dot-equitable-and-efficient-infrastructure.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ In bringing on a seasoned technology professional, we hope to augment the core t

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/dot-its-jpo.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ The PIF will need to have significant experience with the full technology lifecy

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/epa-oeip.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ To accomplish this, EPA is looking for candidates with strong backgrounds in dat

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/fbi-risk-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ In just six months, a team of Fellows developed and launched an end-to-end solut

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/fda-cio.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ As part of this effort, the Office of the Commissioner is seeking two Presidenti

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/fda-informed.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ In addition, INFORMED is actively pursuing the development of programs to suppor

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/fda-precert.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Because software products can be adapted to respond to glitches, adverse events,

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/fdic-casib.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ FDIC is seeking two Presidential Innovation Fellows:

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/fema-ia.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ A culture where IA leadership and staff at all levels have a constant awareness

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/fema-region-9.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Presidential Innovation Fellows working with FEMA Region 9 will be based in Oakl

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/ftc-otech.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ To be successful in this position, Presidential Innovation Fellows could possess

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/gsa-customer-experience.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ The OMB CAP goal team, which OPP sits on, is a coordinated effort between the Of

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/gsa-digital-customer-transformation.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ If successful, the project would allow for more small businesses to get on -- an

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/gsa-it-enterprise-idm.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ The Fellow will also act as a liaison with persons and/or groups within and outs

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/gsa-tts-login.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Login.gov is looking for help in the following areas:

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ Here’s the response we’ve received from agency leaders we supported:

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/hhs-oig.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Specifically, the Office of the Chief Data Officer (CDO) and the Office of the C

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/mcc-fighting-poverty-with-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ MCC engages in policy and/or technical components of programs aimed at alleviati

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/nasa-asteroid-grand-challenge.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ In addition, she helped to shape the White House Memorandum on Crowdsourcing and

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/nasa-madi.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ The entry point of CAS’s investigatory function (known as Mapping) is the surv

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/navy-disc.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ This role is critical to the future technological development of our Navy, and t

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/nci-cancer-moonshot.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ The Presidential Innovation Fellows continue to build upon the momentum from our

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/nga-cto.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ To help mature and grow the PM and UX team and program at NGA, the right PIFs wo

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/nga-hd.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ For this project, NGA is looking for a combination of the following skill sets:

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/nih-all-of-us.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ For these projects, the PIFs come into a consortium with dozens of companies and

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/nih-uniting-communications-and-science.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ order: 1

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/nist-lab-to-market.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ For these projects, NIST is looking for the PIFs to have backgrounds in science

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
1 change: 1 addition & 0 deletions _projects/onc-blue-button-initiative.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ As a result of the Blue Button Initiative, over 150 million Americans have acces

<section class="usa-section">
<div class="grid-container">
{% include last-modified.html %}
{% include_cached touchpoint-survey-script.html %}
</div>
</section>
Loading

0 comments on commit 6720b2e

Please sign in to comment.