uswds-jekyll 5.4.0 → 5.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +66 -35
- data/_includes/components/banner.html +5 -0
- data/_includes/components/edit-page.html +24 -0
- data/_includes/components/identifier.html +122 -0
- data/_includes/footer.html +4 -9
- data/_includes/scripts.html +2 -14
- data/_sass/uswds/components/_all.scss +1 -0
- data/_sass/uswds/components/_edit-page.scss +8 -0
- data/_sass/uswds/components/_footer.scss +3 -31
- data/_sass/uswds/custom/_uswds-theme-custom-styles.scss +9 -0
- data/assets/js/private_eye_conf.js +2 -1
- metadata +10 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b81c818c8c36ee6ff284b72f88f16291df81c96d6acfca4ad6f2d80fccc5514b
|
4
|
+
data.tar.gz: d2e7d9a759d955280cb663c91f31d6bec81974bf4be8f8c439ddd33c08cf388d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04f7672fc8b239d8c16c78993fed2ea252807114b9e26e6724d1a1ff9fd9a7531ea333cef72ce9c49af4f4b7433437905eb72c413d31d8b4ecbcce9deb4b2359
|
7
|
+
data.tar.gz: cbbc6dab8db13fe5ece8df80f40a5971a34f4498cb2b5a77399757c93d250e7fcbac62148d3ded35e813b9611019ff898dfc38b4013f6b0d3c0eb524da4ceff0
|
data/README.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
**This repository is in maintenance mode and only accepting fixes. The Tech Portfolio and TTS Digital Council are working on a strategy for TTS microsites which will inform the future of this theme. [Open an issue to provide any feedback](https://github.com/18F/uswds-jekyll/issues/new).**
|
2
|
+
|
1
3
|
# Jekyll + U.S. Web Design System
|
2
4
|
|
3
5
|
This is a [Jekyll theme](https://jekyllrb.com/docs/themes/) for the
|
@@ -19,6 +21,7 @@ This is a [Jekyll theme](https://jekyllrb.com/docs/themes/) for the
|
|
19
21
|
- [Search](#search)
|
20
22
|
- [Analytics](#analytics)
|
21
23
|
- [Last modified date](#last-modified-date)
|
24
|
+
- [Edit page](#edit-page)
|
22
25
|
- [Anchor JS](#anchor-js)
|
23
26
|
- [Private Eye JS](#private-eye-js)
|
24
27
|
1. [Assets](#assets)
|
@@ -29,7 +32,7 @@ This is a [Jekyll theme](https://jekyllrb.com/docs/themes/) for the
|
|
29
32
|
- [Overriding includes and layouts](#overriding-includes-and-layouts)
|
30
33
|
1. [Components](#components)
|
31
34
|
- [Header](#header)
|
32
|
-
- [
|
35
|
+
- [Identifier](#identifier)
|
33
36
|
1. [Layouts](#layouts)
|
34
37
|
- [Default](#layout-default)
|
35
38
|
- [Page](#layout-page)
|
@@ -103,7 +106,7 @@ To reference a specific version of this theme:
|
|
103
106
|
|
104
107
|
## Configuration
|
105
108
|
|
106
|
-
Configuration of common elements ([header](#header), [
|
109
|
+
Configuration of common elements ([header](#header), [identifier](#identifier), [navigation](#navigation), etc.) happens in your project's [data files](https://jekyllrb.com/docs/datafiles/). See this project's [data directory](_data) for reference configurations of each component.
|
107
110
|
|
108
111
|
The [default layout](#layout-default) also provides a mechanism for automatically including [stylesheets](#stylesheets) and [scripts](#scripts) on a site-wide, layout-wide, and per-page basis. See [asset load order](#asset-load-order) for more information.
|
109
112
|
|
@@ -143,7 +146,7 @@ primary:
|
|
143
146
|
links: <links>
|
144
147
|
```
|
145
148
|
|
146
|
-
This scheme allows you to define navigational elements that can be shared by different components, such as the [header](#header) and [
|
149
|
+
This scheme allows you to define navigational elements that can be shared by different components, such as the [header](#header) and [sidenav](#Page-subnavigation). See the documentation for those components for more info.
|
147
150
|
|
148
151
|
### Page title
|
149
152
|
|
@@ -174,7 +177,7 @@ subnav:
|
|
174
177
|
## Section two
|
175
178
|
```
|
176
179
|
|
177
|
-
As with the [header](#header)
|
180
|
+
As with the [header](#header), the `sidenav` field may either reference a common [navigation list](#navigation) from `_data/navigation.yml` (recommended) or be a literal list of links.
|
178
181
|
|
179
182
|
The `subnav` field should be used to link to sections _within_ the current page, because links to other pages will cause the linking page's side navigation to collapse when visited.
|
180
183
|
|
@@ -292,10 +295,12 @@ To add a user feedback form, create a new survey through [Touchpoints](https://t
|
|
292
295
|
|
293
296
|
To show the last date a page was last modified by:
|
294
297
|
|
295
|
-
1. Add
|
298
|
+
1. Add these lines to the `edit-page.yml` data file:
|
296
299
|
|
297
300
|
```yml
|
298
|
-
|
301
|
+
last_modified:
|
302
|
+
display_date: true
|
303
|
+
date_format: '%B %d, %Y'
|
299
304
|
```
|
300
305
|
|
301
306
|
1. Add the following to your `Gemfile`:
|
@@ -306,7 +311,17 @@ To show the last date a page was last modified by:
|
|
306
311
|
end
|
307
312
|
```
|
308
313
|
|
309
|
-
This will add the date right before the
|
314
|
+
This will add the date right before the identifier component.
|
315
|
+
|
316
|
+
### Edit page
|
317
|
+
To add a link which will allow visitors to submit edits to the current page via GitHub, add the following lines to to the `edit-page.yml` data file:
|
318
|
+
|
319
|
+
```yml
|
320
|
+
edit_page:
|
321
|
+
display_link: true
|
322
|
+
text: "Edit this page"
|
323
|
+
```
|
324
|
+
This will add the edit link right before the identifier component.
|
310
325
|
|
311
326
|
### Anchor JS
|
312
327
|
|
@@ -424,12 +439,10 @@ The [header.html include](_includes/header.html) sets the `header` template vari
|
|
424
439
|
|
425
440
|
See this repo's [header.yml](_data/header.yml) for more info.
|
426
441
|
|
427
|
-
###
|
428
|
-
|
429
|
-
The [footer.html include](_includes/footer.html) sets the `footer` template variable to `site.data.footer`, the value of which is set in your Jekyll project's `_data/footer.yml` file. Then it includes [components/footer.html](_includes/components/footer.html) to
|
430
|
-
render the footer's markup.
|
442
|
+
### Identifier
|
431
443
|
|
432
|
-
|
444
|
+
The [components/identifier.html include](_includes/components/identifier.html) sets the `identifier` template variable to `site.data.identifier`, the value of which is set in your Jekyll project's `_data/identifier.yml` file.
|
445
|
+
See this repo's [identifier.yml](_data/identifier.yml) for more info.
|
433
446
|
|
434
447
|
## Layouts
|
435
448
|
|
@@ -546,9 +559,6 @@ See [this example pull request](https://github.com/18F/before-you-ship/pull/458)
|
|
546
559
|
--> header.yml
|
547
560
|
type: [basic | basic-mega | extended | extended-mega]
|
548
561
|
|
549
|
-
--> footer.yml
|
550
|
-
type: [slim | default | big]
|
551
|
-
|
552
562
|
--> theme.yml (examples)
|
553
563
|
colors:
|
554
564
|
usa-banner:
|
@@ -590,41 +600,62 @@ See [this example pull request](https://github.com/18F/before-you-ship/pull/458)
|
|
590
600
|
side-nav-link-hover: 'primary-dark'
|
591
601
|
side-nav-link-hover-bg: 'base-lightest'
|
592
602
|
side-nav-link-current: 'primary-dark'
|
593
|
-
footer:
|
594
|
-
primary-footer-bg: 'base-lightest'
|
595
|
-
primary-footer-link: 'ink'
|
596
|
-
footer-bg: 'base-lighter'
|
597
|
-
footer-text: 'ink'
|
598
|
-
footer-link: 'ink'
|
599
|
-
footer-social-link: 'black-transparent-10'
|
600
603
|
|
601
604
|
```
|
602
605
|
|
603
606
|
1. Check that css is referencing `uswds-theme.css`
|
604
607
|
|
608
|
+
|
605
609
|
## Development
|
606
610
|
|
607
|
-
|
611
|
+
This section explains how to develop this theme and/or test it locally.
|
608
612
|
|
609
|
-
1. Clone this repo
|
610
613
|
|
611
|
-
|
614
|
+
### Requirements
|
612
615
|
|
613
|
-
|
616
|
+
- [Ruby](https://www.ruby-lang.org/)
|
617
|
+
- [Bundler](https://bundler.io/) 2.x
|
618
|
+
- [Node.js](https://nodejs.org/)
|
614
619
|
|
615
|
-
1. Start Jekyll to preview the effects of your changes. This will build the Jekyll site, watch the Sass files, and recompile the Sass when there are changes.
|
616
620
|
|
617
|
-
|
621
|
+
### Setup
|
618
622
|
|
619
|
-
|
623
|
+
Install the Node.js dependencies.
|
620
624
|
|
621
|
-
|
622
|
-
[installation](#installation) instructions, then change your
|
623
|
-
`Gemfile` to point at the local clone of this repo:
|
625
|
+
$ npm install
|
624
626
|
|
625
|
-
|
626
|
-
|
627
|
-
|
627
|
+
Install Ruby dependencies.
|
628
|
+
|
629
|
+
$ npm run setup-jekyll
|
630
|
+
|
631
|
+
Start the application. This allows you to preview the effects of your changes.
|
632
|
+
Jekyll will build the site, watch the Sass files, and rebuild when there are
|
633
|
+
changes.
|
634
|
+
|
635
|
+
$ npm start
|
636
|
+
|
637
|
+
Open your web browser to [localhost:4000](http://localhost:4000/).
|
638
|
+
|
639
|
+
|
640
|
+
### To update USWDS
|
641
|
+
|
642
|
+
When new version of USWDS is released, you should pull in the latest assets.
|
643
|
+
|
644
|
+
$ rake update
|
645
|
+
|
646
|
+
Review and commit the assets.
|
647
|
+
|
648
|
+
|
649
|
+
### Working with a Jekyll site
|
650
|
+
|
651
|
+
If you want to test an existing Jekyll site that uses uswds-jekyll, you can link
|
652
|
+
the gem to your local uswds-jekyll repo.
|
653
|
+
|
654
|
+
In your Jekyll site, change your `Gemfile` to point at the local clone of this repo.
|
655
|
+
|
656
|
+
```ruby
|
657
|
+
gem 'uswds-jekyll', :path => '../path/to/uswds-jekyll'
|
658
|
+
```
|
628
659
|
|
629
660
|
### Publish to Rubygems
|
630
661
|
|
@@ -16,6 +16,11 @@
|
|
16
16
|
</div>
|
17
17
|
</header>
|
18
18
|
<div class="usa-banner__content usa-accordion__content" id="gov-banner">
|
19
|
+
<script type="text/javascript">
|
20
|
+
// Hide the gov banner immediately rather than waiting for external JS
|
21
|
+
// sources to load and execute.
|
22
|
+
document.getElementById("gov-banner").setAttribute("hidden", "");
|
23
|
+
</script>
|
19
24
|
<div class="grid-row grid-gap-lg">
|
20
25
|
<div class="usa-banner__guidance tablet:grid-col-6">
|
21
26
|
<img class="usa-banner__icon usa-media-block__img" src="{{ site.baseurl }}/assets/uswds/img/icon-dot-gov.svg" role="img" alt="Dot gov">
|
@@ -0,0 +1,24 @@
|
|
1
|
+
{% assign options = site.data.edit-page %}
|
2
|
+
|
3
|
+
{% if options.edit_page.display_link or (options.last_modified.display_date and page.last_modified_at) %}
|
4
|
+
<div class="grid-container grid-container-desktop">
|
5
|
+
<div class="grid-row tablet-lg:grid-gap-2 edit-page">
|
6
|
+
<div class="grid-col-12 tablet:grid-col-6 edit-page__link">
|
7
|
+
<p>
|
8
|
+
{% if options.edit_page %}
|
9
|
+
<span>
|
10
|
+
{% include components/github-edit.html footer=identifier path=page.path %}
|
11
|
+
</span>
|
12
|
+
{% endif %}
|
13
|
+
</p>
|
14
|
+
</div>
|
15
|
+
<div class="grid-col-12 tablet:grid-col-6 edit-page__date">
|
16
|
+
<p>
|
17
|
+
{% if options.last_modified and page.last_modified_at %}
|
18
|
+
<span><small>Last updated: {{ page.last_modified_at | date: options.last_modified.date_format }}</small></span>
|
19
|
+
{% endif %}
|
20
|
+
</p>
|
21
|
+
</div>
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
{% endif %}
|
@@ -0,0 +1,122 @@
|
|
1
|
+
{% assign user = site.data.identifier %}
|
2
|
+
{% assign static = site.data.static.identifier %}
|
3
|
+
<div class="usa-identifier">
|
4
|
+
<section
|
5
|
+
class="usa-identifier__section usa-identifier__section--masthead"
|
6
|
+
aria-label="{{ static.masthead.label.content[user.lang] }}">
|
7
|
+
<div class="usa-identifier__container">
|
8
|
+
{%- if user.masthead.parent.logo -%}
|
9
|
+
<div class="usa-identifier__logos">
|
10
|
+
<a href="{{ user.masthead.parent.url[user.lang] }}" class="usa-identifier__logo">
|
11
|
+
<img
|
12
|
+
class="usa-identifier__logo-img"
|
13
|
+
{% if user.masthead.parent.logo == "default" %}
|
14
|
+
src="{{ site.baseurl }}/assets/uswds/img/circle-gray-20.svg"
|
15
|
+
{% else %}
|
16
|
+
src="{{ site.baseurl }}/{{ user.masthead.parent.logo }}"
|
17
|
+
{% endif %}
|
18
|
+
{% if user.lang == "en" %}
|
19
|
+
alt="{{ user.masthead.parent.name[user.lang] }} logo"
|
20
|
+
{% else if user.lang == "es" %}
|
21
|
+
alt="Logo de la {{ user.masthead.parent.name[user.lang] }}"
|
22
|
+
{% endif %}
|
23
|
+
role="img">
|
24
|
+
</a>
|
25
|
+
{%- if user.masthead.agency.logo %}
|
26
|
+
<a href="javascript:void(0);" class="usa-identifier__logo">
|
27
|
+
<img
|
28
|
+
class="usa-identifier__logo-img"
|
29
|
+
{% if user.masthead.agency.logo == "default" %}
|
30
|
+
src="{{ site.baseurl }}/assets/uswds/img/circle-gray-20.svg"
|
31
|
+
{% else %}
|
32
|
+
src="{{ site.baseurl }}/{{ user.masthead.agency.logo }}"
|
33
|
+
{% endif %}
|
34
|
+
{% if user.lang == "en" %}
|
35
|
+
alt="{{ user.masthead.agency.name[user.lang] }} logo"
|
36
|
+
{% else if user.lang == "es" %}
|
37
|
+
alt="Logo de la {{ user.masthead.agency.name[user.lang] }}"
|
38
|
+
{% endif %}
|
39
|
+
role="img">
|
40
|
+
</a>
|
41
|
+
{%- endif -%}
|
42
|
+
</div>
|
43
|
+
{%- endif -%}
|
44
|
+
<div class="usa-identifier__identity" aria-label="{{ static.masthead.description.label.content[user.lang] }}">
|
45
|
+
<p class="usa-identifier__identity-domain">{{ user.domain }}</p>
|
46
|
+
<p class="usa-identifier__identity-disclaimer">
|
47
|
+
{{- static.masthead.text.content[user.lang] }} <a href="{{ user.masthead.parent.url[user.lang] }}">{{ user.masthead.parent.name[user.lang] }}</a>
|
48
|
+
{%- if user.masthead.agency.url[user.lang] %}
|
49
|
+
{%- if user.lang == "en" %} and
|
50
|
+
{%- else if user.lang == "es" %} y
|
51
|
+
{%- endif -%}
|
52
|
+
{% if user.masthead.agency.name[user.lang] %}
|
53
|
+
{%- if user.lang == "en" %} the
|
54
|
+
{%- endif %}
|
55
|
+
{%- endif %} <a href="{{ user.masthead.agency.url[user.lang] }}">
|
56
|
+
{%- if user.masthead.agency.name[user.lang] -%}
|
57
|
+
{{- user.masthead.agency.name[user.lang] }}
|
58
|
+
{%- else -%}
|
59
|
+
{{ user.masthead.agency.shortname }}
|
60
|
+
{%- endif -%}
|
61
|
+
</a>
|
62
|
+
{%- endif -%}
|
63
|
+
{%- if user.masthead.taxpayer_disclaimer.display -%}
|
64
|
+
. {{ static.masthead.taxpayer_disclaimer.content[user.lang] }}
|
65
|
+
{%- endif -%}
|
66
|
+
</p>
|
67
|
+
</div>
|
68
|
+
</div>
|
69
|
+
</section>
|
70
|
+
<nav class="usa-identifier__section usa-identifier__section--required-links" aria-label="{{ static.required_links.label.content[user.lang] }}">
|
71
|
+
<div class="usa-identifier__container">
|
72
|
+
<ul class="usa-identifier__required-links-list">
|
73
|
+
<li class="usa-identifier__required-links-item">
|
74
|
+
<a href="{{ user.required_links.links.about.url[user.lang] }}" class="usa-identifier__required-link">
|
75
|
+
{{- static.required_links.links.about.content[user.lang] }} {{ user.masthead.parent.shortname -}}
|
76
|
+
</a>
|
77
|
+
</li>
|
78
|
+
<li class="usa-identifier__required-links-item">
|
79
|
+
<a href="{{ user.required_links.links.accessibility.url[user.lang] }}"
|
80
|
+
class="usa-identifier__required-link">
|
81
|
+
{{- static.required_links.links.accessibility.content[user.lang] -}}
|
82
|
+
</a>
|
83
|
+
</li>
|
84
|
+
<li class="usa-identifier__required-links-item">
|
85
|
+
<a href="{{ user.required_links.links.foia.url[user.lang] }}"
|
86
|
+
class="usa-identifier__required-link usa-link">
|
87
|
+
{{- static.required_links.links.foia.content[user.lang] -}}
|
88
|
+
</a>
|
89
|
+
</li>
|
90
|
+
<li class="usa-identifier__required-links-item">
|
91
|
+
<a href="{{ user.required_links.links.no_fear.url[user.lang] }}"
|
92
|
+
class="usa-identifier__required-link usa-link">
|
93
|
+
{{- static.required_links.links.no_fear.content[user.lang] -}}
|
94
|
+
</a>
|
95
|
+
</li>
|
96
|
+
<li class="usa-identifier__required-links-item">
|
97
|
+
<a href="{{ user.required_links.links.oig.url[user.lang] }}" class="usa-identifier__required-link usa-link">
|
98
|
+
{{- static.required_links.links.oig.content[user.lang] -}}
|
99
|
+
</a>
|
100
|
+
</li>
|
101
|
+
<li class="usa-identifier__required-links-item">
|
102
|
+
<a href="{{ user.required_links.links.performance.url[user.lang] }}" class="usa-identifier__required-link usa-link">
|
103
|
+
{{- static.required_links.links.performance.content[user.lang] -}}
|
104
|
+
</a>
|
105
|
+
</li>
|
106
|
+
<li class="usa-identifier__required-links-item">
|
107
|
+
<a href="{{ user.required_links.links.privacy.url[user.lang] }}" class="usa-identifier__required-link usa-link">
|
108
|
+
{{- static.required_links.links.privacy.content[user.lang] -}}
|
109
|
+
</a>
|
110
|
+
</li>
|
111
|
+
</ul>
|
112
|
+
</div>
|
113
|
+
</nav>
|
114
|
+
{% if user.usagov.display -%}
|
115
|
+
<section class="usa-identifier__section usa-identifier__section--usagov" aria-label="{{ static.usagov.label.content[user.lang] }}">
|
116
|
+
<div class="usa-identifier__container">
|
117
|
+
<div class="usa-identifier__usagov-description">{{ static.usagov.description.content[user.lang] }}</div>
|
118
|
+
<a href="{{ user.usagov.link.url[user.lang] }}" class="usa-link">{{ static.usagov.link.content[user.lang] }}</a>
|
119
|
+
</div>
|
120
|
+
</section>
|
121
|
+
{% endif -%}
|
122
|
+
</div>
|
data/_includes/footer.html
CHANGED
@@ -1,9 +1,4 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
{%
|
4
|
-
|
5
|
-
{% elsif footer.type == 'default' or footer.type == 'medium' %}
|
6
|
-
{% include components/footer--default.html %}
|
7
|
-
{% elsif footer.type == 'big' %}
|
8
|
-
{% include components/footer--big.html %}
|
9
|
-
{% endif %}
|
1
|
+
<footer>
|
2
|
+
{% include components/edit-page.html %}
|
3
|
+
{% include components/identifier.html %}
|
4
|
+
</footer>
|
data/_includes/scripts.html
CHANGED
@@ -40,7 +40,7 @@
|
|
40
40
|
|
41
41
|
var script = document.createElement("script");
|
42
42
|
script.type = "text/javascript";
|
43
|
-
script.src = "
|
43
|
+
script.src = "https://search.usa.gov/javascripts/remote.loader.js";
|
44
44
|
document.getElementsByTagName("head")[0].appendChild(script);
|
45
45
|
|
46
46
|
//]]>
|
@@ -49,17 +49,5 @@
|
|
49
49
|
|
50
50
|
|
51
51
|
{% if site.touchpoints_form_id %}
|
52
|
-
<script
|
53
|
-
//<![CDATA[
|
54
|
-
var touchpoints_config = { siteHandle:"{{ site.touchpoints_form_id }}" };
|
55
|
-
|
56
|
-
var script = document.createElement("script");
|
57
|
-
script.type = "text/javascript";
|
58
|
-
script.src = `https://touchpoints.app.cloud.gov/touchpoints/${touchpoints_config.siteHandle}/js`;
|
59
|
-
script.async = true;
|
60
|
-
document.getElementsByTagName("head")[0].appendChild(script);
|
61
|
-
|
62
|
-
//]]>
|
63
|
-
</script>
|
64
|
-
|
52
|
+
<script src="https://touchpoints.app.cloud.gov/touchpoints/{{ site.touchpoints_form_id }}.js" async></script>
|
65
53
|
{% endif %}
|
@@ -1,32 +1,4 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
}
|
5
|
-
|
6
|
-
.usa-footer__primary-link {
|
7
|
-
@if variable-exists(primary-footer-link) {
|
8
|
-
color: color($primary-footer-link);
|
9
|
-
}
|
10
|
-
}
|
11
|
-
}
|
12
|
-
|
13
|
-
.usa-footer__secondary-section {
|
14
|
-
@if variable-exists(footer-bg) {
|
15
|
-
background-color: color($footer-bg);
|
16
|
-
}
|
17
|
-
@if variable-exists(footer-text) {
|
18
|
-
color: color($footer-text);
|
19
|
-
}
|
20
|
-
|
21
|
-
a {
|
22
|
-
@if variable-exists(footer-link) {
|
23
|
-
color: color($footer-link);
|
24
|
-
}
|
25
|
-
}
|
26
|
-
|
27
|
-
.usa-social-link {
|
28
|
-
@if variable-exists(footer-social-link) {
|
29
|
-
background-color: color($footer-social-link);
|
30
|
-
}
|
31
|
-
}
|
1
|
+
footer {
|
2
|
+
margin-top: auto;
|
3
|
+
order: 10;
|
32
4
|
}
|
@@ -4,6 +4,7 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
4
4
|
defaultMessage: "This link is private to TTS.",
|
5
5
|
ignoreUrls: [
|
6
6
|
'18f.slack.com',
|
7
|
+
'airtable.com',
|
7
8
|
'anywhere.gsa.gov',
|
8
9
|
'bookit.gsa.gov',
|
9
10
|
'calendar.gsa.gov',
|
@@ -36,4 +37,4 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
36
37
|
'tock.18f.gov'
|
37
38
|
]
|
38
39
|
});
|
39
|
-
}, false );
|
40
|
+
}, false );
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: uswds-jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shawn Allen
|
@@ -9,10 +9,10 @@ authors:
|
|
9
9
|
- Brian Hurst
|
10
10
|
- Scott Weber
|
11
11
|
- Dan O. Williams
|
12
|
-
autorequire:
|
12
|
+
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date:
|
15
|
+
date: 2023-03-01 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: jekyll
|
@@ -90,7 +90,7 @@ dependencies:
|
|
90
90
|
- - ">="
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: '0'
|
93
|
-
description:
|
93
|
+
description:
|
94
94
|
email:
|
95
95
|
- daniel.williams@gsa.gov
|
96
96
|
executables: []
|
@@ -102,6 +102,7 @@ files:
|
|
102
102
|
- _includes/analytics.html
|
103
103
|
- _includes/banner.html
|
104
104
|
- _includes/components/banner.html
|
105
|
+
- _includes/components/edit-page.html
|
105
106
|
- _includes/components/footer--big.html
|
106
107
|
- _includes/components/footer--default.html
|
107
108
|
- _includes/components/footer--slim.html
|
@@ -109,6 +110,7 @@ files:
|
|
109
110
|
- _includes/components/graphic-list.html
|
110
111
|
- _includes/components/header.html
|
111
112
|
- _includes/components/hero.html
|
113
|
+
- _includes/components/identifier.html
|
112
114
|
- _includes/components/search.html
|
113
115
|
- _includes/favicon.html
|
114
116
|
- _includes/footer.html
|
@@ -135,6 +137,7 @@ files:
|
|
135
137
|
- _sass/uswds/components/_all.scss
|
136
138
|
- _sass/uswds/components/_alt-color-section.scss
|
137
139
|
- _sass/uswds/components/_card.scss
|
140
|
+
- _sass/uswds/components/_edit-page.scss
|
138
141
|
- _sass/uswds/components/_footer.scss
|
139
142
|
- _sass/uswds/components/_header.scss
|
140
143
|
- _sass/uswds/components/_hero.scss
|
@@ -2274,7 +2277,7 @@ homepage: https://designsystem.digital.gov/
|
|
2274
2277
|
licenses:
|
2275
2278
|
- CC0-1.0
|
2276
2279
|
metadata: {}
|
2277
|
-
post_install_message:
|
2280
|
+
post_install_message:
|
2278
2281
|
rdoc_options: []
|
2279
2282
|
require_paths:
|
2280
2283
|
- lib
|
@@ -2289,8 +2292,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
2289
2292
|
- !ruby/object:Gem::Version
|
2290
2293
|
version: '0'
|
2291
2294
|
requirements: []
|
2292
|
-
rubygems_version: 3.
|
2293
|
-
signing_key:
|
2295
|
+
rubygems_version: 3.1.6
|
2296
|
+
signing_key:
|
2294
2297
|
specification_version: 4
|
2295
2298
|
summary: A Jekyll theme for the U.S. Web Design System.
|
2296
2299
|
test_files: []
|