kcc-gem-theme 0.4.7 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +93 -5
- data/_includes/footer.html +121 -8
- data/_includes/nav-global.html +113 -4
- data/_includes/nav-local.html +2 -2
- data/assets/css/kcc-theme.css +1 -1
- data/assets/css/main.css +1 -1
- data/assets/img/heading-bg-underline-tan.png +0 -0
- data/assets/img/heading-bg-underline.png +0 -0
- data/assets/scss/0-tools/_vars.scss +21 -17
- data/assets/scss/1-base/_links.scss +2 -2
- data/assets/scss/1-base/_typography.scss +115 -283
- data/assets/scss/2-modules/_error.scss +2 -2
- data/assets/scss/2-modules/_latest-news-widget.scss +3 -3
- data/assets/scss/2-modules/{_global-nav.scss → _nav-global.scss} +47 -60
- data/assets/scss/3-layout/_margins.scss +14 -0
- data/assets/scss/3-layout/_padding.scss +2 -0
- data/assets/scss/3-layout/_tables.scss +8 -0
- data/assets/scss/4-pages/index/_home.scss +12 -0
- data/assets/scss/kcc-theme.scss +4 -2
- metadata +8 -4
- data/assets/scss/3-layout/_posts.scss +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b964dd214277f0041438e250dca7475a7ca205e447c92f181c8b57784011b1c
|
4
|
+
data.tar.gz: 29bdae093b2d3facf7bd99d7662800ac391391aab9a3b00e90712cf49f55adb9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f3fb91d447468a8eeeff84e9eb540b976cb5a6c98d77d33c4f4062f7804e4dd16eef4e3cb971cf69995aab448053d4497f1913d3b1d29781c283bfeb3fb915f
|
7
|
+
data.tar.gz: e1e3f21fc26db6a9829102d0898efa0f3bd4c46516e5da1dadbd4773cbdf5543c5496db26b090b6e03ccb97b3f08373d1fb56e05d2603a005c0da19759d9e9c2
|
data/README.md
CHANGED
@@ -1,10 +1,16 @@
|
|
1
1
|
# kcc-gem-theme
|
2
2
|
|
3
|
+
### A Jekyll theme for new KCC sites.
|
4
|
+
|
3
5
|
[](https://badge.fury.io/rb/kcc-gem-theme)
|
4
6
|
|
5
|
-
|
7
|
+
---
|
8
|
+
|
9
|
+
This theme's GitHub repo has all the Gulp, npm, & Webpack dependancies included to compile & view it in a browser, just like our new sites, for convenient development and previewing of changes.
|
10
|
+
|
11
|
+
---
|
6
12
|
|
7
|
-
|
13
|
+
<br>
|
8
14
|
|
9
15
|
## Installation
|
10
16
|
|
@@ -28,21 +34,103 @@ Or install it yourself as:
|
|
28
34
|
|
29
35
|
$ gem install kcc-gem-theme
|
30
36
|
|
31
|
-
|
37
|
+
|
38
|
+
---
|
39
|
+
|
40
|
+
<br>
|
32
41
|
|
33
42
|
## Contributing
|
34
43
|
|
35
44
|
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
45
|
|
46
|
+
---
|
47
|
+
|
48
|
+
<br>
|
49
|
+
|
37
50
|
## Development
|
38
51
|
|
39
|
-
|
52
|
+
This Gem Theme project is setup just like other KCC projects. You can run `$ npm run dev`, `$ npm run production`, `$ npx webpack`, or `$ gulp`.
|
53
|
+
|
54
|
+
1. Run the command below to work on development of the theme and live preview it at http://localhost:3000.
|
55
|
+
|
56
|
+
```shell
|
57
|
+
$ npm run dev
|
40
58
|
|
41
|
-
|
59
|
+
# A convenient alias:
|
60
|
+
alias npm-d="npm run dev"
|
61
|
+
```
|
62
|
+
|
63
|
+
2. Once satisfied with the changes run a production build and look at the preview to make sure everything is ok.
|
64
|
+
|
65
|
+
```shell
|
66
|
+
$ npm run production
|
67
|
+
|
68
|
+
# A convenient alias:
|
69
|
+
alias npm-p="npm run production"
|
70
|
+
```
|
71
|
+
|
72
|
+
3. (Optional) Make a new version release: Up the version in the kcc-gem-theme.gemspec file.
|
73
|
+
|
74
|
+
```shell
|
75
|
+
### Example .gemspec file ###
|
76
|
+
# frozen_string_literal: true
|
77
|
+
|
78
|
+
Gem::Specification.new do |spec|
|
79
|
+
spec.name = "kcc-gem-theme"
|
80
|
+
spec.version = "0.4.4" # increase the appropriate number following semantic versioning
|
81
|
+
# ...
|
82
|
+
### Remainder of .gemspec file omitted. ###
|
83
|
+
```
|
84
|
+
|
85
|
+
4. Push the changes to GitHub.
|
86
|
+
|
87
|
+
```shell
|
88
|
+
git add .
|
89
|
+
git commit -m "<you commit message>"
|
90
|
+
git push origin master
|
91
|
+
```
|
92
|
+
|
93
|
+
5. Build them gem.
|
94
|
+
|
95
|
+
```shell
|
96
|
+
$ gem build kcc-gem-theme.gemspec
|
97
|
+
|
98
|
+
# should return something like:
|
99
|
+
Successfully built RubyGem
|
100
|
+
Name: kcc-gem-theme
|
101
|
+
Version: 0.4.4
|
102
|
+
File: kcc-gem-theme-0.4.4.gem
|
103
|
+
```
|
104
|
+
|
105
|
+
6. Push the resulting gem to RubyGems.
|
106
|
+
|
107
|
+
```shell
|
108
|
+
gem push kcc-gem-theme-0.4.4.gem
|
109
|
+
|
110
|
+
# should return something like:
|
111
|
+
Pushing gem to https://rubygems.org...
|
112
|
+
Successfully registered gem: kcc-gem-theme (0.4.4)
|
113
|
+
```
|
114
|
+
|
115
|
+
7. Update projects using the gem.
|
116
|
+
|
117
|
+
```shell
|
118
|
+
<username> @ <computername> in ~repositories/kcc-startup-template
|
119
|
+
$ bundle update
|
120
|
+
Fetching gem metadata from https://rubygems.org/...........
|
121
|
+
Fetching gem metadata from https://rubygems.org/.
|
122
|
+
# ...
|
123
|
+
```
|
124
|
+
|
125
|
+
On your next build you should see any new changes to gem theme.
|
42
126
|
|
43
127
|
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
44
128
|
To add a custom directory to your theme-gem, please edit the regexp in `kcc-gem-theme.gemspec` accordingly.
|
45
129
|
|
130
|
+
---
|
131
|
+
|
132
|
+
<br>
|
133
|
+
|
46
134
|
## License
|
47
135
|
|
48
136
|
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/_includes/footer.html
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
<div class="col-lg-6 footer__mobile--margin-bottom">
|
5
5
|
<div class="row">
|
6
6
|
<div class="col-lg-12 text-center">
|
7
|
-
<a href="{{ site.public-url }}" class="footer-link" target="_blank" rel="noopener"><h5 class="
|
7
|
+
<a href="{{ site.public-url }}" class="footer-link" target="_blank" rel="noopener"><h5 class="typography__footer-heading">{{ site.public-url | replace: "https://", "" }}</h5></a>
|
8
8
|
</div>
|
9
9
|
</div>
|
10
10
|
<div class="row">
|
@@ -12,32 +12,57 @@
|
|
12
12
|
<div class="text-center">
|
13
13
|
<span>
|
14
14
|
<a href="http://www.facebook.com/KankakeeCommunityCollege/" class="footer-social-links" target="_blank" rel="noopener">
|
15
|
-
<
|
15
|
+
<svg version="1.1" id="facebook" class="footer-icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve" aria-labelledby="facebook-title">
|
16
|
+
<title id="facebook-title" lang="en">Facebook</title>
|
17
|
+
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M320.526,268.436l7.223-51.045h-50.08v-34.799c0-10.788,8.827-19.615,19.615-19.615h32.393v-47.002l-40.702-1.634c-38.005-1.524-63.793,27.143-63.793,60.903v42.146h-42.858v51.045h42.858v129.282h52.487V268.436H320.526z"/>
|
18
|
+
</svg>
|
16
19
|
</a>
|
17
20
|
</span>
|
18
21
|
<span>
|
19
22
|
<a href="http://twitter.com/KCCedu" class="footer-social-links" target="_blank" rel="noopener">
|
20
|
-
<
|
23
|
+
<svg version="1.1" id="twitter" class="footer-icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve" aria-labelledby="twitter-title">
|
24
|
+
<title id="twitter-title" lang="en">Twitter</title>
|
25
|
+
<path fill="#FFFFFF" d="M393.859,170.531c-10.142,4.498-21.039,7.539-32.479,8.905c11.677-6.998,20.642-18.081,24.865-31.286c-10.925,6.48-23.028,11.187-35.91,13.723c-10.315-10.991-25.015-17.858-41.278-17.858c-31.234,0-56.554,25.32-56.554,56.55c0,4.433,0.501,8.749,1.465,12.888c-47-2.358-88.67-24.873-116.562-59.087c-4.868,8.354-7.656,18.067-7.656,28.432c0,19.618,9.984,36.929,25.158,47.069c-9.271-0.293-17.99-2.837-25.615-7.073c-0.004,0.236-0.005,0.473-0.005,0.712c0,27.399,19.493,50.256,45.364,55.451c-4.746,1.292-9.742,1.982-14.899,1.982c-3.645,0-7.187-0.354-10.64-1.014c7.196,22.467,28.081,38.816,52.827,39.274c-19.354,15.166-43.738,24.208-70.233,24.208c-4.564,0-9.066-0.269-13.489-0.79c25.026,16.045,54.751,25.406,86.688,25.406c104.021,0,160.9-86.171,160.9-160.901c0-2.452-0.054-4.891-0.163-7.315C376.689,191.833,386.278,181.873,393.859,170.531z"/>
|
26
|
+
</svg>
|
21
27
|
</a>
|
22
28
|
</span>
|
23
29
|
<span>
|
24
30
|
<a href="http://www.instagram.com/kccedu/" class="footer-social-links" target="_blank" rel="noopener">
|
25
|
-
<
|
31
|
+
<svg version="1.1" id="instagram" class="footer-icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve" aria-labelledby="instagram-title">
|
32
|
+
<name id="instagram-title" lang="en">Instagram</name>
|
33
|
+
<g>
|
34
|
+
<path fill="#FFFFFF" d="M317.858,407.985H194.142c-47.339,0-86.071-38.73-86.071-86.07V190.086c0-47.34,38.732-86.071,86.071-86.071h123.717c47.34,0,86.072,38.731,86.072,86.071v131.829C403.931,369.255,365.198,407.985,317.858,407.985 M317.858,385.243c16.82,0,32.697-6.614,44.705-18.623c12.01-12.008,18.622-27.885,18.622-44.705V190.086c0-16.82-6.612-32.697-18.622-44.706c-12.008-12.009-27.885-18.622-44.705-18.622H194.142c-16.82,0-32.697,6.613-44.706,18.622s-18.621,27.886-18.621,44.706v131.829c0,16.82,6.612,32.697,18.621,44.705c12.009,12.009,27.886,18.623,44.706,18.623H317.858z"/>
|
35
|
+
<path fill="#FFFFFF" d="M337.929,254.827c0,44.994-36.477,81.47-81.472,81.47c-44.994,0-81.471-36.476-81.471-81.47c0-44.995,36.477-81.471,81.471-81.471C301.452,173.356,337.929,209.832,337.929,254.827 M256.065,201.544c-29.464,0-53.348,23.885-53.348,53.347c0,29.464,23.884,53.35,53.348,53.35s53.347-23.886,53.347-53.35C309.412,225.429,285.529,201.544,256.065,201.544"/>
|
36
|
+
<path fill="#FFFFFF" d="M358.526,172.089c0,10.654-8.637,19.292-19.29,19.292c-10.655,0-19.292-8.638-19.292-19.292c0-10.653,8.637-19.29,19.292-19.29C349.89,152.799,358.526,161.436,358.526,172.089"/>
|
37
|
+
</g>
|
38
|
+
</svg>
|
26
39
|
</a>
|
27
40
|
</span>
|
28
41
|
<span>
|
29
42
|
<a href="http://www.youtube.com/user/KankakeeCommCollege" class="footer-social-links" target="_blank" rel="noopener">
|
30
|
-
<
|
43
|
+
<svg version="1.1" id="youtube" class="footer-icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve" aria-labelledby="youtube-title">
|
44
|
+
<title id="youtube-title" lang="en">YouTube</title>
|
45
|
+
<path fill="#FFFFFF" d="M339.306,134.92H172.691c-91.187,0-91.187,25.977-91.187,89.865v62.432c0,60.757,12.915,89.864,91.187,89.864h166.614c70.7,0,91.19-17.012,91.19-89.864v-62.432C430.496,157.537,427.053,134.92,339.306,134.92z M220.347,303.457v-98.009l94.064,48.846L220.347,303.457z"/>
|
46
|
+
</svg>
|
31
47
|
</a>
|
32
48
|
</span>
|
33
49
|
<span>
|
34
50
|
<a href="http://www.pinterest.com/kccedu/" class="footer-social-links" target="_blank" rel="noopener">
|
35
|
-
<
|
51
|
+
<svg version="1.1" id="pinterest" class="footer-icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve" aria-labelledby="pinterest-title">
|
52
|
+
<title id="pinterest-title" lang="en">Pinterest</title>
|
53
|
+
<path fill="#FFFFFF" d="M256.005,105.086c-83.343,0-150.915,67.566-150.915,150.912c0,61.795,37.159,114.882,90.332,138.223c-0.425-10.538-0.076-23.188,2.627-34.653c2.901-12.252,19.418-82.231,19.418-82.231s-4.821-9.636-4.821-23.878c0-22.363,12.962-39.066,29.104-39.066c13.727,0,20.357,10.311,20.357,22.656c0,13.8-8.8,34.439-13.326,53.557c-3.781,16.008,8.026,29.065,23.819,29.065c28.593,0,47.85-36.724,47.85-80.234c0-33.075-22.276-57.832-62.794-57.832c-45.778,0-74.297,34.139-74.297,72.271c0,13.147,3.877,22.42,9.949,29.599c2.791,3.298,3.18,4.625,2.168,8.411c-0.723,2.777-2.386,9.462-3.074,12.111c-1.005,3.821-4.102,5.188-7.556,3.776c-21.085-8.607-30.905-31.698-30.905-57.654c0-42.869,36.155-94.272,107.856-94.272c57.617,0,95.537,41.693,95.537,86.449c0,59.2-32.912,103.428-81.427,103.428c-16.293,0-31.618-8.808-36.868-18.811c0,0-8.761,34.771-10.617,41.484c-3.198,11.636-9.462,23.264-15.188,32.328c13.573,4.007,27.91,6.188,42.771,6.188c83.336,0,150.904-67.565,150.904-150.915C406.909,172.652,339.341,105.086,256.005,105.086z"/>
|
54
|
+
</svg>
|
36
55
|
</a>
|
37
56
|
</span>
|
38
57
|
<span>
|
39
58
|
<a href="http://www.linkedin.com/company/kankakee-community-college" class="footer-social-links" target="_blank" rel="noopener">
|
40
|
-
<
|
59
|
+
<svg version="1.1" id="linkedin" class="footer-icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve" aria-labelledby="linkedin-title">
|
60
|
+
<title id="linkedin-title">LinkedIn</title>
|
61
|
+
<g>
|
62
|
+
<path fill="#FFFFFF" d="M142.394,216.601h48.7v156.684h-48.7V216.601z M166.755,138.716c15.567,0,28.219,12.651,28.219,28.226c0,15.588-12.651,28.24-28.219,28.24c-15.608,0-28.242-12.652-28.242-28.24C138.513,151.368,151.146,138.716,166.755,138.716"/>
|
63
|
+
<path fill="#FFFFFF" d="M221.638,216.601h46.707v21.408h0.65c6.502-12.316,22.385-25.305,46.076-25.305c49.314,0,58.416,32.454,58.416,74.639v85.941h-48.664v-76.199c0-18.168-0.334-41.54-25.302-41.54c-25.339,0-29.23,19.792-29.23,40.227v77.512h-48.653V216.601z"/>
|
64
|
+
</g>
|
65
|
+
</svg>
|
41
66
|
</a>
|
42
67
|
</span>
|
43
68
|
</div>
|
@@ -45,7 +70,95 @@
|
|
45
70
|
</div>
|
46
71
|
</div>
|
47
72
|
<div class="col-lg-6">
|
48
|
-
<a href="http://www.kcc.edu" target="_blank" rel="noopener"
|
73
|
+
<a href="http://www.kcc.edu" target="_blank" rel="noopener">
|
74
|
+
<svg version="1.1" id="KCC-text-logo" class="img-fluid mx-auto" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
75
|
+
width="416.394px" height="28.682px" viewBox="0 0 416.394 28.682" enable-background="new 0 0 416.394 28.682"
|
76
|
+
xml:space="preserve">
|
77
|
+
<title id="kcc-text-logo-title" lang="en">Kankakee Community College</title>
|
78
|
+
<g>
|
79
|
+
<polygon fill="#0F3B63" points="6.913,9.049 8.856,9.049 17.992,0.174 23.125,0.174 12.053,10.789 19.401,21.924 14.123,21.924
|
80
|
+
8.098,12.615 6.155,12.615 4.176,21.924 0,21.924 4.623,0.174 8.799,0.174 "/>
|
81
|
+
<path fill="#0F3B63" d="M30.973,20.01h-0.087c-1.157,2.031-3.402,2.088-5.171,2.088c-3.451,0-5.53-0.725-4.655-4.842
|
82
|
+
c0.777-3.654,2.907-4.67,6.676-4.67c1.856,0,3.677,0.029,4.184,1.74h0.116l0.419-1.973c0.524-2.465,0.506-3.334-2.54-3.334
|
83
|
+
c-1.595,0-2.901,0.145-3.321,2.117h-3.654c0.943-4.438,4.025-4.611,7.505-4.611c4.872,0,6.742,0.754,5.657,5.857l-2.028,9.541
|
84
|
+
h-3.654L30.973,20.01z M24.714,17.256c-0.457,2.145,0.371,2.348,2.835,2.348c1.943,0,3.401-0.174,3.863-2.348
|
85
|
+
c0.45-2.117-1.104-2.176-2.902-2.176C26.655,15.08,25.176,15.08,24.714,17.256z"/>
|
86
|
+
<path fill="#0F3B63" d="M44.589,6.699L44.103,8.99h0.116c1.286-2.232,3.163-2.465,5.309-2.465c4.002,0,4.869,1.652,4.08,5.365
|
87
|
+
l-2.133,10.033H47.82l2.053-9.656c0.468-2.205,0.136-2.959-2.213-2.959c-3.19,0-3.945,1.508-4.525,4.234l-1.781,8.381h-3.654
|
88
|
+
l3.236-15.225H44.589z"/>
|
89
|
+
<polygon fill="#0F3B63" points="60.645,12.615 61.544,12.615 67.064,6.699 71.182,6.699 64.266,13.863 69.048,21.924 64.64,21.924
|
90
|
+
61.014,15.109 60.115,15.109 58.666,21.924 55.012,21.924 59.635,0.174 63.289,0.174 "/>
|
91
|
+
<path fill="#0F3B63" d="M81.026,20.01h-0.087c-1.157,2.031-3.402,2.088-5.171,2.088c-3.451,0-5.53-0.725-4.655-4.842
|
92
|
+
c0.777-3.654,2.907-4.67,6.677-4.67c1.856,0,3.677,0.029,4.183,1.74h0.116l0.419-1.973c0.524-2.465,0.506-3.334-2.54-3.334
|
93
|
+
c-1.595,0-2.901,0.145-3.321,2.117h-3.654c0.943-4.438,4.025-4.611,7.505-4.611c4.872,0,6.742,0.754,5.657,5.857l-2.028,9.541
|
94
|
+
h-3.654L81.026,20.01z M74.768,17.256c-0.457,2.145,0.371,2.348,2.835,2.348c1.943,0,3.401-0.174,3.863-2.348
|
95
|
+
c0.45-2.117-1.104-2.176-2.902-2.176C76.708,15.08,75.229,15.08,74.768,17.256z"/>
|
96
|
+
<polygon fill="#0F3B63" points="93.356,12.615 94.255,12.615 99.776,6.699 103.894,6.699 96.977,13.863 101.759,21.924
|
97
|
+
97.352,21.924 93.725,15.109 92.826,15.109 91.377,21.924 87.724,21.924 92.347,0.174 96,0.174 "/>
|
98
|
+
<path fill="#0F3B63" d="M117.955,17.082c-1.018,4.785-3.821,5.016-8.171,5.016c-5.829,0-6.623-1.855-5.372-7.742
|
99
|
+
c1.159-5.451,2.535-7.83,8.683-7.83c6.263,0,6.716,1.826,5.304,8.469H107.93c-0.697,3.275-0.832,4.32,2.445,4.32
|
100
|
+
c2.03,0,3.445,0.029,3.926-2.232H117.955z M115.238,12.674c0.666-3.133,0.251-3.365-2.736-3.365c-3.161,0-3.506,0.668-4.079,3.365
|
101
|
+
H115.238z"/>
|
102
|
+
<path fill="#0F3B63" d="M134.484,17.082c-1.017,4.785-3.82,5.016-8.171,5.016c-5.829,0-6.623-1.855-5.372-7.742
|
103
|
+
c1.159-5.451,2.535-7.83,8.683-7.83c6.264,0,6.716,1.826,5.305,8.469H124.46c-0.696,3.275-0.831,4.32,2.445,4.32
|
104
|
+
c2.03,0,3.444,0.029,3.926-2.232H134.484z M131.768,12.674c0.666-3.133,0.252-3.365-2.735-3.365c-3.161,0-3.506,0.668-4.079,3.365
|
105
|
+
H131.768z"/>
|
106
|
+
<path fill="#0F3B63" d="M162.747,7.453L163,6.264c0.536-2.521-0.412-2.695-4.066-2.695c-4.205,0-5.078,0.695-5.984,4.959
|
107
|
+
l-1.023,4.812c-0.896,4.35-0.553,5.191,3.826,5.191c3.365,0,4.897-0.115,5.557-3.219l0.253-1.189h4.176l-0.302,1.422
|
108
|
+
c-1.307,6.553-4.998,6.322-10.441,6.553c-7.717,0.291-8.544-2.232-7.281-8.584l1.061-4.986C150.253,1.566,153.283,0,159.691,0
|
109
|
+
c5.423,0,8.52,0.029,7.484,6.264l-0.252,1.189H162.747z"/>
|
110
|
+
<path fill="#0F3B63" d="M182.254,14.326c-1.252,5.887-2.465,7.771-8.815,7.771s-6.763-1.885-5.511-7.771
|
111
|
+
c1.258-5.916,2.471-7.801,8.82-7.801C183.1,6.525,183.511,8.41,182.254,14.326z M171.575,14.355
|
112
|
+
c-0.862,4.061-0.793,4.959,2.455,4.959s3.7-0.898,4.563-4.959c0.875-4.117,0.811-5.047-2.438-5.047
|
113
|
+
C172.909,9.309,172.451,10.238,171.575,14.355z"/>
|
114
|
+
<path fill="#0F3B63" d="M190.516,6.699l-0.469,2.205h0.115c1.226-1.943,3.377-2.379,5.291-2.379s4.014,0.492,3.951,2.697h0.115
|
115
|
+
c1.146-2.117,3.357-2.697,5.389-2.697c3.943,0,4.959,1.363,4.164,5.104l-2.189,10.295h-3.654l2.115-9.947
|
116
|
+
c0.32-1.914,0.016-2.668-1.984-2.668c-2.959,0-3.822,1.334-4.396,4.031l-1.824,8.584h-3.654l2.115-9.947
|
117
|
+
c0.319-1.914,0.016-2.668-1.985-2.668c-2.958,0-3.821,1.334-4.395,4.031l-1.825,8.584h-3.653l3.235-15.225H190.516z"/>
|
118
|
+
<path fill="#0F3B63" d="M217.312,6.699l-0.469,2.205h0.115c1.225-1.943,3.377-2.379,5.291-2.379s4.012,0.492,3.951,2.697h0.115
|
119
|
+
c1.146-2.117,3.357-2.697,5.387-2.697c3.943,0,4.959,1.363,4.164,5.104l-2.188,10.295h-3.654l2.113-9.947
|
120
|
+
c0.32-1.914,0.018-2.668-1.984-2.668c-2.957,0-3.82,1.334-4.395,4.031l-1.824,8.584h-3.654l2.115-9.947
|
121
|
+
c0.318-1.914,0.016-2.668-1.986-2.668c-2.957,0-3.82,1.334-4.395,4.031l-1.824,8.584h-3.654l3.236-15.225H217.312z"/>
|
122
|
+
<path fill="#0F3B63" d="M247.338,21.924l0.5-2.348h-0.117c-1.271,2.029-3.262,2.521-5.35,2.521c-3.045,0-4.854-1.043-4.174-4.379
|
123
|
+
l2.344-11.02h3.654l-2.041,9.6c-0.463,2.174-0.438,3.016,1.91,3.016c2.814,0,3.965-1.189,4.525-3.828l1.869-8.787h3.654
|
124
|
+
l-3.236,15.225H247.338z"/>
|
125
|
+
<path fill="#0F3B63" d="M261.391,6.699l-0.486,2.291h0.115c1.287-2.232,3.164-2.465,5.309-2.465c4.002,0,4.869,1.652,4.08,5.365
|
126
|
+
l-2.133,10.033h-3.654l2.053-9.656c0.469-2.205,0.137-2.959-2.213-2.959c-3.189,0-3.945,1.508-4.525,4.234l-1.781,8.381H254.5
|
127
|
+
l3.236-15.225H261.391z"/>
|
128
|
+
<path fill="#0F3B63" d="M275.293,21.924h-3.654l3.236-15.225h3.654L275.293,21.924z M279.258,3.277h-3.654l0.658-3.104h3.654
|
129
|
+
L279.258,3.277z"/>
|
130
|
+
<path fill="#0F3B63" d="M280.066,6.699h1.914l0.732-3.451h3.654l-0.732,3.451h5.828l-0.592,2.783h-5.828l-1.658,7.803
|
131
|
+
c-0.268,1.391-0.402,2.029,1.135,2.029c2.059,0,2.172-1.625,2.51-3.219h3.221c-0.924,4.611-2.379,6.002-6.322,6.002
|
132
|
+
c-4.002,0-5.023-0.928-4.203-4.785l1.664-7.83h-1.914L280.066,6.699z"/>
|
133
|
+
<path fill="#0F3B63" d="M299.35,22.533c-1.574,3.451-2.844,6.148-7.107,6.148c-0.521,0-1.025-0.088-1.541-0.117l0.586-2.754
|
134
|
+
c0.256,0.029,0.504,0.086,0.766,0.086c2.291,0,3.107-2.203,3.801-3.973h-1.768l-1.781-15.225h3.77l1.102,12.963h0.059l5.713-12.963
|
135
|
+
h3.713L299.35,22.533z"/>
|
136
|
+
<path fill="#0F3B63" d="M331.379,7.453l0.254-1.189c0.535-2.521-0.414-2.695-4.066-2.695c-4.205,0-5.078,0.695-5.984,4.959
|
137
|
+
l-1.023,4.812c-0.896,4.35-0.553,5.191,3.826,5.191c3.363,0,4.896-0.115,5.557-3.219l0.252-1.189h4.176l-0.301,1.422
|
138
|
+
c-1.307,6.553-4.998,6.322-10.441,6.553c-7.717,0.291-8.545-2.232-7.281-8.584l1.061-4.986C318.885,1.566,321.914,0,328.324,0
|
139
|
+
c5.422,0,8.52,0.029,7.484,6.264l-0.254,1.189H331.379z"/>
|
140
|
+
<path fill="#0F3B63" d="M350.887,14.326c-1.252,5.887-2.465,7.771-8.814,7.771c-6.352,0-6.764-1.885-5.512-7.771
|
141
|
+
c1.258-5.916,2.471-7.801,8.82-7.801C351.732,6.525,352.145,8.41,350.887,14.326z M340.209,14.355
|
142
|
+
c-0.863,4.061-0.793,4.959,2.455,4.959c3.246,0,3.699-0.898,4.562-4.959c0.875-4.117,0.811-5.047-2.438-5.047
|
143
|
+
S341.084,10.238,340.209,14.355z"/>
|
144
|
+
<polygon fill="#0F3B63" points="356.027,21.924 352.375,21.924 356.998,0.174 360.65,0.174 "/>
|
145
|
+
<polygon fill="#0F3B63" points="363.336,21.924 359.682,21.924 364.305,0.174 367.959,0.174 "/>
|
146
|
+
<path fill="#0F3B63" d="M381.533,17.082c-1.018,4.785-3.822,5.016-8.172,5.016c-5.828,0-6.623-1.855-5.371-7.742
|
147
|
+
c1.158-5.451,2.533-7.83,8.682-7.83c6.264,0,6.717,1.826,5.305,8.469h-10.469c-0.697,3.275-0.832,4.32,2.445,4.32
|
148
|
+
c2.029,0,3.445,0.029,3.926-2.232H381.533z M378.816,12.674c0.666-3.133,0.25-3.365-2.736-3.365c-3.162,0-3.506,0.668-4.08,3.365
|
149
|
+
H378.816z"/>
|
150
|
+
<path fill="#0F3B63" d="M394.045,19.75h-0.086c-1.383,2-3.4,2.348-5.256,2.348c-5.221,0-5.219-2.871-4.27-7.336
|
151
|
+
c0.992-4.67,1.924-8.236,7.58-8.236c2.145,0,3.729,0.465,4.23,2.465h0.117l0.342-2.291h3.654l-3.23,15.195
|
152
|
+
c-1.166,5.482-3.182,6.787-8.75,6.787c-3.713,0-6.361-0.639-5.16-5.191h3.422c-0.445,2.088,0.271,2.406,2.33,2.406
|
153
|
+
c3.104,0,3.904-0.637,4.459-3.248L394.045,19.75z M388.279,13.863c-0.734,3.449-1.16,5.451,2.088,5.451
|
154
|
+
c3.654,0,4.043-1.826,4.812-5.451c0.691-3.248,0.475-4.555-2.686-4.555C389.971,9.309,389.092,10.035,388.279,13.863z"/>
|
155
|
+
<path fill="#0F3B63" d="M415.289,17.082c-1.018,4.785-3.822,5.016-8.172,5.016c-5.828,0-6.623-1.855-5.371-7.742
|
156
|
+
c1.158-5.451,2.533-7.83,8.682-7.83c6.264,0,6.717,1.826,5.305,8.469h-10.469c-0.697,3.275-0.832,4.32,2.445,4.32
|
157
|
+
c2.029,0,3.445,0.029,3.926-2.232H415.289z M412.572,12.674c0.666-3.133,0.25-3.365-2.736-3.365c-3.162,0-3.506,0.668-4.08,3.365
|
158
|
+
H412.572z"/>
|
159
|
+
</g>
|
160
|
+
</svg>
|
161
|
+
</a>
|
49
162
|
<p>100 College Drive Kankakee, IL 60901 <br>
|
50
163
|
<a class="links__darker-link" href="tel:18158028100">815-802-8100</a> <br>
|
51
164
|
© <span id="currentYear">2018</span> Kankakee Community College</p>
|
data/_includes/nav-global.html
CHANGED
@@ -1,5 +1,111 @@
|
|
1
|
-
<nav id="globalNav" role="navigation" class="navbar global
|
2
|
-
<a class="clickable navbar-brand
|
1
|
+
<nav id="globalNav" role="navigation" class="navbar nav-global fixed-top navbar-fixed-top">
|
2
|
+
<a class="clickable navbar-brand nav-global__navbar-brand" href="http://www.kcc.edu" aria-label="Kankakee Community College">
|
3
|
+
<svg version="1.1" id="KCC-logo" class="nav-global__kcc-logo-inverse" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="82.398px" height="36px" viewBox="0 0 82.398 36" enable-background="new 0 0 82.398 36"
|
4
|
+
xml:space="preserve" aria-labelledby="kcc-logo-title">
|
5
|
+
<title id="kcc-logo-title" lang="en">KCC</title>
|
6
|
+
<g>
|
7
|
+
<path fill="#FFFFFF" d="M63.95,23.918c0,0-9.805,9.808-21.45,4.511c-12.867-5.855-24.053-2.522-24.053-2.522l0,0
|
8
|
+
c0,0,11.531-4.624,23.573-0.584C53.948,29.322,63.95,23.918,63.95,23.918" />
|
9
|
+
<path fill="#FFFFFF" d="M58.976,21.669c0.266-0.131,0.53-0.284,0.793-0.468c1.723-1.229,2.082-2.817,2.457-4.58l0.1-0.473h-4.428
|
10
|
+
l-0.102,0.473c-0.401,1.891-1.289,2.021-3.073,2.021c-2.58,0-2.491-0.925-1.979-3.332l0.535-2.516
|
11
|
+
c0.488-2.301,0.885-3.053,3.336-3.053c1.461,0,2.449,0.107,2.294,1.547l-0.132,0.625h4.428l0.133-0.625
|
12
|
+
c0.942-4.836-1.025-5.288-5.455-5.288c-4.729,0-7.753,0.774-8.886,6.105l-0.887,4.171c-0.865,4.068,0.375,5.429,2.668,5.881
|
13
|
+
c-2.01-0.106-4.13-0.388-6.329-0.908c0.025-0.017,0.051-0.031,0.076-0.049c1.722-1.229,2.082-2.817,2.457-4.58l0.1-0.473h-4.429
|
14
|
+
l-0.1,0.473c-0.403,1.891-1.29,2.021-3.075,2.021c-2.58,0-2.491-0.925-1.979-3.332l0.535-2.516
|
15
|
+
c0.489-2.301,0.885-3.053,3.336-3.053c1.462,0,2.45,0.107,2.294,1.547l-0.133,0.625h4.429l0.133-0.625
|
16
|
+
c0.942-4.836-1.026-5.288-5.455-5.288c-4.729,0-7.754,0.774-8.887,6.105l-0.887,4.171c-0.235,1.109-0.315,2.02-0.258,2.763
|
17
|
+
c-0.454,0.011-0.901,0.036-1.345,0.069l-2.718-5.068l7.357-7.911h-5.203l-5.438,6.062h-1.29L25.26,6.13h-4.3l-3.427,16.125h2.67
|
18
|
+
c-4.016,1.973-6.466,4.121-6.466,4.121s12.566-7.161,28.131-1.712c15.313,5.359,26.794-6.114,26.794-6.114
|
19
|
+
S64.897,20.649,58.976,21.669z M23.176,15.934h1.289l1.987,3.986c-1.599,0.413-3.089,0.938-4.445,1.51L23.176,15.934z" />
|
20
|
+
</g>
|
21
|
+
</svg>
|
22
|
+
<svg version="1.1" id="KCC-white-text-logo" class="img-fluid nav-global__kcc-logo" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="432px" height="36px" viewBox="0 0 432 36" enable-background="new 0 0 432 36"
|
23
|
+
xml:space="preserve" aria-labelledby="kcc-white-text-logo-title">
|
24
|
+
<title id="kcc-white-text-logo-title" lang="en">Kankakee Community College</title>
|
25
|
+
<g>
|
26
|
+
<path fill="#FFFFFF" d="M14.716,12.708h1.943l9.136-8.875h5.133L19.856,14.448l7.348,11.135h-5.278l-6.025-9.309h-1.943
|
27
|
+
l-1.979,9.309H7.803l4.623-21.75h4.176L14.716,12.708z" />
|
28
|
+
<path fill="#FFFFFF" d="M38.776,23.669h-0.087c-1.157,2.031-3.402,2.088-5.171,2.088c-3.451,0-5.53-0.725-4.655-4.842
|
29
|
+
c0.777-3.654,2.907-4.67,6.676-4.67c1.856,0,3.677,0.029,4.184,1.74h0.116l0.419-1.973c0.524-2.465,0.506-3.334-2.54-3.334
|
30
|
+
c-1.595,0-2.901,0.145-3.321,2.117h-3.654c0.943-4.438,4.025-4.611,7.505-4.611c4.872,0,6.742,0.754,5.657,5.857l-2.028,9.541
|
31
|
+
h-3.654L38.776,23.669z M32.518,20.915c-0.457,2.145,0.371,2.348,2.835,2.348c1.943,0,3.401-0.174,3.863-2.348
|
32
|
+
c0.45-2.117-1.104-2.176-2.902-2.176C34.458,18.739,32.979,18.739,32.518,20.915z" />
|
33
|
+
<path fill="#FFFFFF" d="M52.393,10.358l-0.487,2.291h0.116c1.286-2.232,3.163-2.465,5.309-2.465c4.002,0,4.869,1.652,4.08,5.365
|
34
|
+
l-2.133,10.033h-3.654l2.053-9.656c0.468-2.205,0.136-2.959-2.213-2.959c-3.19,0-3.945,1.508-4.525,4.234l-1.781,8.381h-3.654
|
35
|
+
l3.236-15.225H52.393z" />
|
36
|
+
<path fill="#FFFFFF" d="M68.448,16.274h0.899l5.521-5.916h4.118l-6.917,7.164l4.782,8.061h-4.408l-3.626-6.814h-0.899l-1.449,6.814
|
37
|
+
h-3.654l4.623-21.75h3.654L68.448,16.274z" />
|
38
|
+
<path fill="#FFFFFF" d="M88.829,23.669h-0.087c-1.157,2.031-3.402,2.088-5.171,2.088c-3.451,0-5.53-0.725-4.655-4.842
|
39
|
+
c0.777-3.654,2.907-4.67,6.677-4.67c1.856,0,3.677,0.029,4.183,1.74h0.116l0.419-1.973c0.524-2.465,0.506-3.334-2.54-3.334
|
40
|
+
c-1.595,0-2.901,0.145-3.321,2.117h-3.654c0.943-4.438,4.025-4.611,7.505-4.611c4.872,0,6.742,0.754,5.657,5.857l-2.028,9.541
|
41
|
+
h-3.654L88.829,23.669z M82.571,20.915c-0.457,2.145,0.371,2.348,2.835,2.348c1.943,0,3.401-0.174,3.863-2.348
|
42
|
+
c0.45-2.117-1.104-2.176-2.902-2.176C84.512,18.739,83.033,18.739,82.571,20.915z" />
|
43
|
+
<path fill="#FFFFFF" d="M101.16,16.274h0.899l5.521-5.916h4.118l-6.917,7.164l4.782,8.061h-4.408l-3.626-6.814h-0.899l-1.449,6.814
|
44
|
+
h-3.654l4.623-21.75h3.654L101.16,16.274z" />
|
45
|
+
<path fill="#FFFFFF" d="M125.758,20.741c-1.017,4.785-3.821,5.016-8.171,5.016c-5.829,0-6.623-1.855-5.372-7.742
|
46
|
+
c1.159-5.451,2.535-7.83,8.683-7.83c6.264,0,6.716,1.826,5.305,8.469h-10.469c-0.697,3.275-0.832,4.32,2.445,4.32
|
47
|
+
c2.03,0,3.445,0.029,3.926-2.232H125.758z M123.042,16.333c0.666-3.133,0.251-3.365-2.736-3.365c-3.161,0-3.506,0.668-4.079,3.365
|
48
|
+
H123.042z" />
|
49
|
+
<path fill="#FFFFFF" d="M142.288,20.741c-1.017,4.785-3.821,5.016-8.171,5.016c-5.829,0-6.623-1.855-5.372-7.742
|
50
|
+
c1.159-5.451,2.535-7.83,8.683-7.83c6.264,0,6.716,1.826,5.305,8.469h-10.469c-0.697,3.275-0.832,4.32,2.445,4.32
|
51
|
+
c2.03,0,3.445,0.029,3.926-2.232H142.288z M139.571,16.333c0.666-3.133,0.251-3.365-2.736-3.365c-3.161,0-3.506,0.668-4.079,3.365
|
52
|
+
H139.571z" />
|
53
|
+
<path fill="#FFFFFF" d="M170.55,11.112l0.253-1.189c0.536-2.521-0.413-2.695-4.067-2.695c-4.205,0-5.078,0.695-5.984,4.959
|
54
|
+
l-1.023,4.812c-0.896,4.35-0.553,5.191,3.826,5.191c3.364,0,4.897-0.115,5.556-3.219l0.253-1.189h4.176l-0.302,1.422
|
55
|
+
c-1.306,6.553-4.998,6.322-10.441,6.553c-7.718,0.291-8.544-2.232-7.282-8.584l1.061-4.986c1.479-6.961,4.509-8.527,10.918-8.527
|
56
|
+
c5.423,0,8.52,0.029,7.484,6.264l-0.252,1.189H170.55z" />
|
57
|
+
<path fill="#FFFFFF" d="M190.057,17.985c-1.251,5.887-2.464,7.771-8.815,7.771s-6.762-1.885-5.511-7.771
|
58
|
+
c1.257-5.916,2.47-7.801,8.821-7.801C190.903,10.185,191.314,12.069,190.057,17.985z M179.378,18.015
|
59
|
+
c-0.863,4.061-0.793,4.959,2.455,4.959s3.7-0.898,4.563-4.959c0.875-4.117,0.812-5.047-2.437-5.047
|
60
|
+
C180.712,12.968,180.254,13.897,179.378,18.015z" />
|
61
|
+
<path fill="#FFFFFF" d="M198.318,10.358l-0.468,2.205h0.116c1.225-1.943,3.376-2.379,5.291-2.379s4.013,0.492,3.951,2.697h0.116
|
62
|
+
c1.146-2.117,3.357-2.697,5.387-2.697c3.943,0,4.959,1.363,4.164,5.104l-2.188,10.295h-3.654l2.114-9.947
|
63
|
+
c0.32-1.914,0.017-2.668-1.984-2.668c-2.958,0-3.822,1.334-4.395,4.031l-1.824,8.584h-3.654l2.114-9.947
|
64
|
+
c0.32-1.914,0.016-2.668-1.985-2.668c-2.958,0-3.821,1.334-4.395,4.031l-1.825,8.584h-3.654l3.236-15.225H198.318z" />
|
65
|
+
<path fill="#FFFFFF" d="M225.115,10.358l-0.469,2.205h0.115c1.225-1.943,3.377-2.379,5.291-2.379s4.012,0.492,3.951,2.697h0.115
|
66
|
+
c1.146-2.117,3.357-2.697,5.387-2.697c3.943,0,4.959,1.363,4.164,5.104l-2.188,10.295h-3.654l2.113-9.947
|
67
|
+
c0.32-1.914,0.018-2.668-1.984-2.668c-2.957,0-3.82,1.334-4.395,4.031l-1.824,8.584h-3.654l2.115-9.947
|
68
|
+
c0.318-1.914,0.016-2.668-1.986-2.668c-2.957,0-3.82,1.334-4.395,4.031l-1.824,8.584h-3.654l3.236-15.225H225.115z" />
|
69
|
+
<path fill="#FFFFFF" d="M255.141,25.583l0.5-2.348h-0.117c-1.271,2.029-3.262,2.521-5.35,2.521c-3.045,0-4.854-1.043-4.174-4.379
|
70
|
+
l2.344-11.02h3.654l-2.041,9.6c-0.463,2.174-0.438,3.016,1.91,3.016c2.814,0,3.965-1.189,4.525-3.828l1.869-8.787h3.654
|
71
|
+
l-3.236,15.225H255.141z" />
|
72
|
+
<path fill="#FFFFFF" d="M269.193,10.358l-0.486,2.291h0.115c1.287-2.232,3.164-2.465,5.309-2.465c4.002,0,4.869,1.652,4.08,5.365
|
73
|
+
l-2.133,10.033h-3.654l2.053-9.656c0.469-2.205,0.137-2.959-2.213-2.959c-3.189,0-3.945,1.508-4.525,4.234l-1.781,8.381h-3.654
|
74
|
+
l3.236-15.225H269.193z" />
|
75
|
+
<path fill="#FFFFFF" d="M283.096,25.583h-3.654l3.236-15.225h3.654L283.096,25.583z M287.061,6.937h-3.654l0.658-3.104h3.654
|
76
|
+
L287.061,6.937z" />
|
77
|
+
<path fill="#FFFFFF" d="M287.869,10.358h1.914l0.732-3.451h3.654l-0.732,3.451h5.828l-0.592,2.783h-5.828l-1.658,7.803
|
78
|
+
c-0.268,1.391-0.402,2.029,1.135,2.029c2.059,0,2.172-1.625,2.51-3.219h3.221c-0.924,4.611-2.379,6.002-6.322,6.002
|
79
|
+
c-4.002,0-5.023-0.928-4.203-4.785l1.664-7.83h-1.914L287.869,10.358z" />
|
80
|
+
<path fill="#FFFFFF" d="M307.152,26.192c-1.574,3.451-2.844,6.148-7.107,6.148c-0.521,0-1.025-0.088-1.541-0.117l0.586-2.754
|
81
|
+
c0.256,0.029,0.504,0.086,0.766,0.086c2.291,0,3.107-2.203,3.801-3.973h-1.768l-1.781-15.225h3.77l1.102,12.963h0.059l5.713-12.963
|
82
|
+
h3.713L307.152,26.192z" />
|
83
|
+
<path fill="#FFFFFF" d="M339.182,11.112l0.254-1.189c0.535-2.521-0.414-2.695-4.066-2.695c-4.205,0-5.078,0.695-5.984,4.959
|
84
|
+
l-1.023,4.812c-0.896,4.35-0.553,5.191,3.826,5.191c3.363,0,4.896-0.115,5.557-3.219l0.252-1.189h4.176l-0.301,1.422
|
85
|
+
c-1.307,6.553-4.998,6.322-10.441,6.553c-7.717,0.291-8.545-2.232-7.281-8.584l1.061-4.986c1.479-6.961,4.508-8.527,10.918-8.527
|
86
|
+
c5.422,0,8.52,0.029,7.484,6.264l-0.254,1.189H339.182z" />
|
87
|
+
<path fill="#FFFFFF" d="M358.689,17.985c-1.252,5.887-2.465,7.771-8.814,7.771c-6.352,0-6.764-1.885-5.512-7.771
|
88
|
+
c1.258-5.916,2.471-7.801,8.82-7.801C359.535,10.185,359.947,12.069,358.689,17.985z M348.012,18.015
|
89
|
+
c-0.863,4.061-0.793,4.959,2.455,4.959c3.246,0,3.699-0.898,4.562-4.959c0.875-4.117,0.811-5.047-2.438-5.047
|
90
|
+
S348.887,13.897,348.012,18.015z" />
|
91
|
+
<path fill="#FFFFFF" d="M363.83,25.583h-3.652l4.623-21.75h3.652L363.83,25.583z" />
|
92
|
+
<path fill="#FFFFFF" d="M371.139,25.583h-3.654l4.623-21.75h3.654L371.139,25.583z" />
|
93
|
+
<path fill="#FFFFFF" d="M389.336,20.741c-1.018,4.785-3.822,5.016-8.172,5.016c-5.828,0-6.623-1.855-5.371-7.742
|
94
|
+
c1.158-5.451,2.533-7.83,8.682-7.83c6.264,0,6.717,1.826,5.305,8.469h-10.469c-0.697,3.275-0.832,4.32,2.445,4.32
|
95
|
+
c2.029,0,3.445,0.029,3.926-2.232H389.336z M386.619,16.333c0.666-3.133,0.25-3.365-2.736-3.365c-3.162,0-3.506,0.668-4.08,3.365
|
96
|
+
H386.619z" />
|
97
|
+
<path fill="#FFFFFF" d="M401.848,23.409h-0.086c-1.383,2-3.4,2.348-5.256,2.348c-5.221,0-5.219-2.871-4.27-7.336
|
98
|
+
c0.992-4.67,1.924-8.236,7.58-8.236c2.145,0,3.729,0.465,4.23,2.465h0.117l0.342-2.291h3.654l-3.23,15.195
|
99
|
+
c-1.166,5.482-3.182,6.787-8.75,6.787c-3.713,0-6.361-0.639-5.16-5.191h3.422c-0.445,2.088,0.271,2.406,2.33,2.406
|
100
|
+
c3.104,0,3.904-0.637,4.459-3.248L401.848,23.409z M396.082,17.522c-0.734,3.449-1.16,5.451,2.088,5.451
|
101
|
+
c3.654,0,4.043-1.826,4.812-5.451c0.691-3.248,0.475-4.555-2.686-4.555C397.773,12.968,396.895,13.694,396.082,17.522z" />
|
102
|
+
<path fill="#FFFFFF" d="M423.092,20.741c-1.018,4.785-3.822,5.016-8.172,5.016c-5.828,0-6.623-1.855-5.371-7.742
|
103
|
+
c1.158-5.451,2.533-7.83,8.682-7.83c6.264,0,6.717,1.826,5.305,8.469h-10.469c-0.697,3.275-0.832,4.32,2.445,4.32
|
104
|
+
c2.029,0,3.445,0.029,3.926-2.232H423.092z M420.375,16.333c0.666-3.133,0.25-3.365-2.736-3.365c-3.162,0-3.506,0.668-4.08,3.365
|
105
|
+
H420.375z" />
|
106
|
+
</g>
|
107
|
+
</svg>
|
108
|
+
</a>
|
3
109
|
<script>
|
4
110
|
(function() {
|
5
111
|
var cx = '006320264078644364913:sy48bet-lr8';
|
@@ -10,6 +116,9 @@
|
|
10
116
|
var s = document.getElementsByTagName('script')[0];
|
11
117
|
s.parentNode.insertBefore(gcse, s);
|
12
118
|
})();
|
13
|
-
</script> <a id="searchIcon" href="#" class="
|
14
|
-
<div class="
|
119
|
+
</script> <a id="searchIcon" href="#" class="nav-global__search-toggle d-lg-none"><span id="searchImg" style="background-image: url('{{ page.baseurl }}assets/img/search.svg')" class="nav-global__search-icon" alt="Search icon"></span></a>
|
120
|
+
<div id="searchCollapse" aria-hidden="true" class="nav-global__gcse-wrapper nav-global__search-collapse">
|
121
|
+
<gcse:searchbox-only resultsUrl="{{ page.baseurl }}search/"></gcse:searchbox-only>
|
122
|
+
</div>
|
123
|
+
<div class="nav-global__search--open-background"></div>
|
15
124
|
</nav>
|
data/_includes/nav-local.html
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
<nav id="mainNav" role="navigation" class="navbar navbar-expand-lg navbar-light bg-light local-nav fixed-top navbar-fixed-top">
|
2
2
|
<a href="{{ page.baseurl }}" class="links__local-nav__newsroom-heading-link typography__newsroom-heading navbar-brand">
|
3
|
-
<h1 class="
|
3
|
+
<h1 class="typography__nav-heading">{{ page.title }}</h1>
|
4
4
|
</a>
|
5
5
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
6
6
|
<span class="navbar-toggler-icon"></span>
|
@@ -9,7 +9,7 @@
|
|
9
9
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
10
10
|
<ul class="navbar-nav ml-auto">
|
11
11
|
<li id="home" class="nav-item active">
|
12
|
-
<a class="nav-link links__local-nav__nav-link--color" href="{{page.baseurl}}">Home <span class="sr-only">(current)</span></a>
|
12
|
+
<a class="nav-link links__local-nav__nav-link--color typography__nav-link" href="{{page.baseurl}}">Home <span class="sr-only">(current)</span></a>
|
13
13
|
</li>
|
14
14
|
<!-- <li class="nav-item dropdown">
|
15
15
|
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|