landing-page-gem 1.0.2 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fb442de0a3984f97d73f62a63f2744335b4d6ce2d094856006a0214096293f84
4
- data.tar.gz: 3778fdaeeb8800851d2d9b97d26184ef2e7bdeda48bebcb7b7dc3af4ad39e9cc
3
+ metadata.gz: 9a5c1cc3822b2a1f37b936600212ef59d5b872622afd89b2afed383659a4156d
4
+ data.tar.gz: f62d360429729c78b973abd6e31ac9baff7d2b61a4731cb2fb413bb49ad1a614
5
5
  SHA512:
6
- metadata.gz: 57abf3add0837ace2512661b1399ee0681d321ecea912a99c0daeaf644e19f295d1ca3708be06cf707907eece42d6c265d5b4cf6570e88ab34b0b93e43dbf23c
7
- data.tar.gz: 2ba7366fbac1237e2a3de571d5821c4325d1ad66dcc0000b6025f405c865b5b7907c13571259adc600103082df1744e9e60c8731d9c0ea8a2f6b24107bed8e6b
6
+ metadata.gz: 182b737fd7465e474af6616c96b2d6c81fa508124c225c3ea35e9374daccd10d399bb7a69f421e0455d5cef0eeca82b417be55310417594f175e7a830ee6b5da
7
+ data.tar.gz: bd4936f8fbc65e021193eb87c5d7526209c77f9428f559b7a2ac3faf5df4657a8ae0aa22bdec24b17c2448a3c06c1e6b398a8bee5c14506486ef4300d4a99322
@@ -7,9 +7,23 @@
7
7
  <!-- Google fonts -->
8
8
  <link rel="preconnect" href="https://fonts.googleapis.com">
9
9
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10
- <!-- Google Cusom Search -->
11
- <link rel="preconnect" href="https://clients1.google.com">
12
- <link rel="preconnect" href="https://www.google.com">
10
+ {% if page.include_gapi %}
11
+ <!-- Google API -->
12
+ <link rel="preconnect" href="https://apis.google.com/js/api.js">
13
+ {% endif %}
14
+ {% if page.include_datatables %}
15
+ <link rel="preconnect" href="https://cdn.datatables.net/1.10.18/css/dataTables.bootstrap4.min.css" crossorigin="anonymous">
16
+ <!-- dataTables "Responsive" extension stylesheet for bootstrap4 theme -->
17
+ <link rel="preconnect" href="https://cdn.datatables.net/responsive/2.2.2/css/responsive.bootstrap4.min.css" crossorigin="anonymous">
18
+ <!-- jQuery for pages that use DataTabes -->
19
+ <link rel="preconnect" href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" crossorigin="anonymous">
20
+ <!-- dataTables assets -->
21
+ <link rel="preconnect" href="https://cdn.datatables.net/1.10.18/js/jquery.dataTables.min.js" crossorigin="anonymous">
22
+ <!-- dataTable's Bootstrap4 theme's JS -->
23
+ <link rel="preconnect" href="https://cdn.datatables.net/1.10.18/js/dataTables.bootstrap4.min.js" crossorigin="anonymous">
24
+ <!-- dataTable's JS for "Responsive" extension -->
25
+ <link rel="preconnect" href="https://cdn.datatables.net/responsive/2.2.2/js/dataTables.responsive.min.js" crossorigin="anonymous">
26
+ {% endif %}
13
27
  <!-- Custom theme JS -->
14
28
  <link rel="preload" as="script" href="{{page.baseurl}}assets/js/dist/kcc-landing-page.{% include hash/landing.yml %}.bundle.js">
15
29
  <link rel="preload" as="style" href="{{page.baseurl}}assets/js/dist/kcc-landing-page.{% include hash/landing.yml %}.css">
@@ -0,0 +1,2 @@
1
+ <!-- Google API -->
2
+ <script src="https://apis.google.com/js/api.js" defer></script>
@@ -0,0 +1,8 @@
1
+ <!-- jQuery for pages that use DataTabes -->
2
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
3
+ <!-- dataTable's JS (v1.10.18 for use w/ bootstrap4 theme) -->
4
+ <script src="https://cdn.datatables.net/1.10.18/js/jquery.dataTables.min.js" crossorigin="anonymous"></script>
5
+ <!-- dataTable's Bootstrap4 theme's JS -->
6
+ <script src="https://cdn.datatables.net/1.10.18/js/dataTables.bootstrap4.min.js" crossorigin="anonymous"></script>
7
+ <!-- dataTable's JS for "Responsive" extension -->
8
+ <script src="https://cdn.datatables.net/responsive/2.2.2/js/dataTables.responsive.min.js" crossorigin="anonymous"></script>
@@ -3,4 +3,4 @@
3
3
  <link rel="stylesheet" href="https://use.typekit.net/mli7lsm.css">
4
4
  {% endif %}
5
5
  <!-- Link to Google Font -->
6
- <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Oswald:wght@400;500;700&family=Roboto:wght@400;500;700;900&family=Saira:wght@700&display=swap" rel="stylesheet">
6
+ <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Oswald:wght@400;500;700&family=Roboto:wght@400;500;700;900&family=Saira:wght@700{% if page.include_material_icons %}&family=Material+Icons{% endif %}&display=swap" rel="stylesheet">
@@ -1,3 +1,10 @@
1
1
  <!-- CDN assets -->
2
2
  <!-- Bootstrap 4 minified stylesheet -->
3
3
  <link rel="stylesheet" href="{{ page.baseurl }}assets/js/dist/bootstrap.{% include hash/landing.yml %}.css">
4
+ {% if page.include_datatables %}
5
+ <!-- dataTables stylesheets -->
6
+ <!-- dataTables Bootstrap themed stylesheet -->
7
+ <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.18/css/dataTables.bootstrap4.min.css" crossorigin="anonymous">
8
+ <!-- dataTables "Responsive" extension stylesheet for bootstrap4 theme -->
9
+ <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/responsive/2.2.2/css/responsive.bootstrap4.min.css" crossorigin="anonymous">
10
+ {% endif %}
@@ -10,5 +10,10 @@
10
10
  {% include navbar.html %}
11
11
  {{ content }}
12
12
  {% include footer.html %}
13
+ {% if page.include_gapi %}
14
+ {% include scripts/google-api.html %}
15
+ {% endif %}
16
+ {%- if page.include_datatables -%}
17
+ {% include scripts/table-cdn.html %}{% endif %}
13
18
  {% include scripts/custom-theme.html %}
14
19
  {% include foot.html %}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: landing-page-gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - wdzajicek
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-09 00:00:00.000000000 Z
11
+ date: 2024-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -46,8 +46,10 @@ files:
46
46
  - _includes/navbar.html
47
47
  - _includes/preconnect.html
48
48
  - _includes/scripts/custom-theme.html
49
+ - _includes/scripts/google-api.html
49
50
  - _includes/scripts/google-noscript.html
50
51
  - _includes/scripts/google-tag.html
52
+ - _includes/scripts/table-cdn.html
51
53
  - _includes/styles/fonts.html
52
54
  - _includes/styles/main.html
53
55
  - _includes/styles/vendor.html