jekyll-theme-bas-style-kit 0.3.0 → 0.4.0.alpha

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: 3c4a0ad3f7b4d4ea061ee635069310aaa47dadafa329cf8fb4cdf162ec5f6a4a
4
- data.tar.gz: 7f290f1fdc4c35b91360a265ff43bd9eb86318f1e0187cc88e4c8e63c6ab8be6
3
+ metadata.gz: 56555ac55dcbd9b60a0174ebf1bc822c5494b50e990545b7de4d8cb71ace6377
4
+ data.tar.gz: '0790272e4228b918ab7311136def958ea5596d6354150880efd872d71ae40613'
5
5
  SHA512:
6
- metadata.gz: 5f5369159555c464aa379e64b72382fba00731a5d859c12dc72f171d4702b7033b89d97a6630805c9a14bfd2f40858255eaeb2583f42bfada3d59dd1334df6b4
7
- data.tar.gz: cd15e48fe799f1ef7e8c539150706ea2913850e18b601710065a8c55551b0ef5c34baef3a314f99b83e592910d42dc41a962e071a7ddb48d621a9eaa9533ac99
6
+ metadata.gz: 6ca7a0b3411e6c197d77e4fe60fac685eea5cb87b9261923fac7c1e457d721c7ce9bb72d8078e10dd2eaad29d4b9e71a64581b7c2c8fa342366ce7f79403f859
7
+ data.tar.gz: 2b3503db0158d223296aae3964553e578a75eac259d667fff705011ed04070c73247226f7a9741a395adb035e891dd3024c7de401f0015eb8fda2a7eefc5712d
data/CHANGELOG.md CHANGED
@@ -3,10 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
5
5
 
6
- ## 0.3.0 - 28/02/2018 - BREAKING!
7
-
8
6
  ## [Unreleased][unreleased]
9
7
 
8
+ ### Added
9
+
10
+ * 'is something wrong' and 'back to top' footer includes with optional footer spacer when used with footer content
11
+ * Governance statement for use in footers
12
+ * Table of Contents (TOC) generic include
13
+ * Table of Contents (TOC) Style Kit include
14
+ * Page title Style Kit include
15
+ * Standard page layout
16
+
17
+ ### Changed [BREAKING!]
18
+
19
+ * Refactored OGL statement as part of the new governance statement footer include, requiring some variable changes
20
+ * Upgraded to Style Kit 0.4.0-beta
21
+
22
+ ### Fixed
23
+
24
+ * Default URLs to legal policies
25
+
26
+ ### Changed
27
+
28
+ * Updating order of legal policy links and copyright statement (also changed to 'British Antarctic Survey')
29
+ * Updating project copyright from NERC to UKRI
30
+
31
+ ## 0.3.0 - 28/02/2018 - BREAKING!
32
+
10
33
  ### Changed [BREAKING!]
11
34
 
12
35
  * Re-licensing project under the Open Government License
data/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # License
2
2
 
3
- © Natural Environment Research Council (NERC), 2017-2018, British Antarctic Survey.
3
+ © UK Research and Innovation (UKRI), 2017-2018, British Antarctic Survey.
4
4
 
5
5
  You may use and re-use this software and associated documentation files free of charge in any format or medium, under
6
6
  the terms of the Open Government Licence v3.0.
data/README.md CHANGED
@@ -66,7 +66,8 @@ defaults:
66
66
  #### Style Kit specific layouts
67
67
 
68
68
  * [`bsk--base`](/docs/layout/bsk--base.md)
69
- * [`bsk--base`](/docs/layout/bsk--standard.md)
69
+ * [`bsk--standard`](/docs/layout/bsk--standard.md)
70
+ * [`bsk--standard-page`](/docs/layout/bsk--standard-page.md)
70
71
 
71
72
  ### Includes
72
73
 
@@ -86,6 +87,7 @@ All includes are namespaced using a `bas-style-kit/` directory - i.e. the includ
86
87
 
87
88
  * [`head`](/docs/include/head.md)
88
89
  * [`body`](/docs/include/body.md)
90
+ * [`toc`](/docs/include/toc.md)
89
91
 
90
92
  #### Style Kit specific includes
91
93
 
@@ -107,12 +109,16 @@ HTML Body includes:
107
109
  * [`bsk-body--back-to-top`](/docs/include/bsk-body--back-to-top.md)
108
110
  * [`bsk-body--standard-header`](/docs/include/bsk-body--standard-header.md)
109
111
  * [`bsk-body--standard-footer`](/docs/include/bsk-body--standard-footer.md)
112
+ * [`bsk-body--page-header`](/docs/include/bsk-body--page-header.md)
113
+ * [`bsk-body--toc`](/docs/include/bsk-body--toc.md)
110
114
 
111
115
  Footer includes:
112
116
 
117
+ * [`bsk-footer--back-to-top`](/docs/include/bsk-footer--back-to-top.md)
113
118
  * [`bsk-footer--contents`](/docs/include/bsk-footer--contents.md)
119
+ * [`bsk-footer--governance`](/docs/include/bsk-footer--governance.md)
120
+ * [`bsk-footer--is-something-wrong`](/docs/include/bsk-footer--is-something-wrong.md)
114
121
  * [`bsk-footer--legal-policies`](/docs/include/bsk-footer--legal-policies.md)
115
- * [`bsk-footer--ogl`](/docs/include/bsk-footer--ogl.md)
116
122
 
117
123
  Header includes:
118
124
 
@@ -162,6 +168,10 @@ Refer to [Jekyll's documentation](https://jekyllrb.com/docs/configuration/) for
162
168
  Configuration options are used extensively throughout this theme. Some variables are used to set properties such as the
163
169
  brand text or image in the navbar (attributes), others are used to enable various features (feature flags).
164
170
 
171
+ Configuration options operate at different scopes, *site* or *page*. Site options applies to across a site, whereas
172
+ page options can be applied to specific content items. Default values can be set for page options, which can then be
173
+ overridden by specific content items.
174
+
165
175
  Configuration options for this theme are namespaced under a `bas_style_kit_jekyll_theme` option - i.e. an option `foo`
166
176
  is set as `bas_style_kit_jekyll_theme.foo`.
167
177
 
@@ -300,8 +310,10 @@ $ docker-compose push
300
310
  [2]
301
311
 
302
312
  ```shell
313
+ # add 'entrypoint: ash' to the app service in /docker-compose.yml
303
314
  $ docker-compose run app gem build jekyll-theme-bas-style-kit.gemspec
304
315
  $ docker-compose run app gem push jekyll-theme-bas-style-kit-*.gem
316
+ # remove 'entrypoint: ash' from the app service in /docker-compose.yml
305
317
  ```
306
318
 
307
319
  **Note:** Add `entrypoint: ash` to the `app` service in `docker-compose.yml` to run these commands
@@ -320,7 +332,7 @@ The maintainer of this project is the BAS Web & Applications Team, they can be c
320
332
 
321
333
  ## License
322
334
 
323
- © Natural Environment Research Council (NERC), 2017 - 2018, British Antarctic Survey.
335
+ © UK Research and Innovation (UKRI), 2017-2018, British Antarctic Survey.
324
336
 
325
337
  You may use and re-use this software and associated documentation files free of charge in any format or medium, under
326
338
  the terms of the Open Government Licence v3.0.
data/_config.yml CHANGED
@@ -19,7 +19,7 @@ plugins:
19
19
  # Set default permalink format
20
20
  permalink: pretty
21
21
 
22
- # Theme settings
22
+ # Theme settings - global variables
23
23
  #
24
24
 
25
25
  bas_style_kit_jekyll_theme:
@@ -33,8 +33,11 @@ bas_style_kit_jekyll_theme:
33
33
  site_navigation: true
34
34
  development_phase: true
35
35
  standard_footer:
36
+ is_something_wrong: true
37
+ back_to_top: true
38
+ spacer: false
36
39
  divider: true
37
- ogl: true
40
+ governance: true
38
41
  legal_policies: true
39
42
  attributes:
40
43
  container: fixed
@@ -62,9 +65,22 @@ bas_style_kit_jekyll_theme:
62
65
  site_footer:
63
66
  ogl:
64
67
  href: 'http://www.nationalarchives.gov.uk/doc/open-government-licence'
65
- img: 'https://cdn.web.bas.ac.uk/bas-style-kit/0.3.0/img/logos-symbols/ogl-symbol-inverse-transparent-32.png'
66
68
  text_version: 'v3.0'
67
69
  legal_policies:
68
- copyright_href: '/legal/copyright.html'
69
- cookies_href: '/legal/copyright.html'
70
- privacy_href: '/legal/privacy.html'
70
+ copyright_href: '/legal/copyright'
71
+ cookies_href: '/legal/cookies'
72
+ privacy_href: '/legal/privacy'
73
+
74
+ # Theme settings - defaults for page level variables
75
+ #
76
+
77
+ defaults:
78
+ -
79
+ scope:
80
+ # an empty string here means all files in the project
81
+ path: ""
82
+ values:
83
+ bas_style_kit_jekyll_theme:
84
+ feature_flags:
85
+ page:
86
+ toc: true
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  -
3
- href: 'https://cdn.web.bas.ac.uk/bas-style-kit/0.3.0/css/bas-style-kit.min.css'
4
- integrity: 'sha256-yuFC35HZoRiUo5Gkp630hHWFrnmDpoYFsh54qYo2HPc='
3
+ href: 'https://cdn.web.bas.ac.uk/bas-style-kit/0.4.0-beta/css/bas-style-kit.min.css'
4
+ integrity: 'sha256-yLdM6BCsb9KLkrDyGbHke/Wyuu+XYitHJPkBNJLukQE='
5
5
  type: 'remote'
@@ -8,6 +8,6 @@
8
8
  integrity: 'sha256-EareStqgZTnMUqLWtDkCa3SldvB8NPBY8u5C6ZUMWRc='
9
9
  type: 'remote'
10
10
  -
11
- href: 'https://cdn.web.bas.ac.uk/bas-style-kit/0.3.0/js/bas-style-kit.min.js'
12
- integrity: 'sha256-QbuFUcH4HIGWW9ch0hO/j+GkhxP4QNdWWGyHE9lIlc8='
11
+ href: 'https://cdn.web.bas.ac.uk/bas-style-kit/0.4.0-beta/js/bas-style-kit.min.js'
12
+ integrity: 'sha256-buOvInyhMJKHpUjqgaYtulG026RRSemvLNsl3xfXsGQ='
13
13
  type: 'remote'
@@ -1,3 +1,3 @@
1
1
  ---
2
- theme_version: "0.3.0-develop"
3
- bsk_version: "0.3.0"
2
+ theme_version: "0.3.0"
3
+ bsk_version: "0.4.0-beta"
@@ -0,0 +1,3 @@
1
+ <header class="bsk-page-header">
2
+ <h1>{{ page.title }}</h1>
3
+ </header>
@@ -1,12 +1,21 @@
1
1
  <footer class="site-footer">
2
2
  <div class="bsk-footer bsk-footer-default">
3
3
  <div class="{% if site.bas_style_kit_jekyll_theme.attributes.container == 'fixed' %}bsk-container{% elsif site.bas_style_kit_jekyll_theme.attributes.container == 'fluid' %}bsk-container-fluid{% endif %}">
4
+ {% if site.bas_style_kit_jekyll_theme.feature_flags.standard_footer.is_something_wrong == true %}
5
+ {% include bas-style-kit/bsk-footer--is-something-wrong.html %}
6
+ {% endif %}
7
+ {% if site.bas_style_kit_jekyll_theme.feature_flags.standard_footer.back_to_top == true %}
8
+ {% include bas-style-kit/bsk-footer--back-to-top.html %}
9
+ {% endif %}
10
+ {% if site.bas_style_kit_jekyll_theme.feature_flags.standard_footer.spacer == true %}
11
+ <div role="separator" class="bsk-footer-spacer"></div>
12
+ {% endif %}
4
13
  {% include bas-style-kit/bsk-footer--contents.html %}
5
14
  {% if site.bas_style_kit_jekyll_theme.feature_flags.standard_footer.divider == true %}
6
15
  <div role="separator" class="bsk-footer-divider"></div>
7
16
  {% endif %}
8
- {% if site.bas_style_kit_jekyll_theme.feature_flags.standard_footer.ogl == true %}
9
- {% include bas-style-kit/bsk-footer--ogl.html %}
17
+ {% if site.bas_style_kit_jekyll_theme.feature_flags.standard_footer.governance == true %}
18
+ {% include bas-style-kit/bsk-footer--governance.html %}
10
19
  {% endif %}
11
20
  {% if site.bas_style_kit_jekyll_theme.feature_flags.standard_footer.legal_policies == true %}
12
21
  {% include bas-style-kit/bsk-footer--legal-policies.html %}
@@ -0,0 +1 @@
1
+ {% include bas-style-kit/toc.html html=content h_min=2 %}
@@ -0,0 +1,5 @@
1
+ <div class="bsk-footer-back-to-top">
2
+ <a href="{{ site.bas_style_kit_jekyll_theme.attributes.site_back_to_top_target_href }}">
3
+ <i class="fa fa-fw fa-chevron-up" aria-hidden="true"></i> Back to top
4
+ </a>
5
+ </div>
@@ -0,0 +1,5 @@
1
+ <div class="bsk-footer-governance">
2
+ The <a href="https://www.bas.ac.uk">British Antarctic Survey</a> (BAS) is part of <a href="https://www.ukri.org">UK Research and Innovation</a> (UKRI)
3
+ <div class="bsk-footer-ogl"><div class="bsk-ogl-symbol"><a href="{{ site.bas_style_kit_jekyll_theme.attributes.site_footer.ogl.href }}" rel="license"><span class="bsk-ogl-symbol">Open Government Licence</span></a></div>
4
+ All content is available under the <a href="http://www.nationalarchives.gov.uk/doc/open-government-licence" rel="license">Open Government Licence {{ site.bas_style_kit_jekyll_theme.attributes.site_footer.ogl.text_version }}</a>, except where otherwise stated</div>
5
+ </div>
@@ -0,0 +1,3 @@
1
+ <div class="bsk-footer-is-something-wrong">
2
+ <a href="{{ site.bas_style_kit_jekyll_theme.attributes.site_feedback_href }}">Is something wrong with this page?</a>
3
+ </div>
@@ -1,8 +1,8 @@
1
1
  <div class="bsk-footer-policy-links">
2
- © {{site.time | date: "%Y"}} NERC BAS
3
2
  <ul class="bsk-list-inline">
4
3
  <li><a href="{{ site.bas_style_kit_jekyll_theme.attributes.site_footer.legal_policies.cookies_href }}"> Cookies</a></li>
5
4
  <li><a href="{{ site.bas_style_kit_jekyll_theme.attributes.site_footer.legal_policies.copyright_href }}"> Copyright</a></li>
6
5
  <li><a href="{{ site.bas_style_kit_jekyll_theme.attributes.site_footer.legal_policies.privacy_href }}"> Privacy</a></li>
7
6
  </ul>
7
+ © {{site.time | date: "%Y"}} British Antarctic Survey
8
8
  </div>
@@ -0,0 +1,85 @@
1
+ {% capture tocWorkspace %}
2
+ {% comment %}
3
+ Version 1.0.4
4
+ https://github.com/allejo/jekyll-toc
5
+
6
+ "...like all things liquid - where there's a will, and ~36 hours to spare, there's usually a/some way" ~jaybe
7
+
8
+ Usage:
9
+ {% include toc.html html=content sanitize=true class="inline_toc" id="my_toc" h_min=2 h_max=3 %}
10
+
11
+ Parameters:
12
+ * html (string) - the HTML of compiled markdown generated by kramdown in Jekyll
13
+
14
+ Optional Parameters:
15
+ * sanitize (bool) : false - when set to true, the headers will be stripped of any HTML in the TOC
16
+ * class (string) : '' - a CSS class assigned to the TOC
17
+ * id (string) : '' - an ID to assigned to the TOC
18
+ * h_min (int) : 1 - the minimum TOC header level to use; any header lower than this value will be ignored
19
+ * h_max (int) : 6 - the maximum TOC header level to use; any header greater than this value will be ignored
20
+ * ordered (bool) : false - when set to true, an ordered list will be outputted instead of an unordered list
21
+ * item_class (string) : '' - add custom class for each list item; has support for '%level%' placeholder, which is the current heading level
22
+
23
+ Output:
24
+ An ordered or unordered list representing the table of contents of a markdown block. This snippet will only generate the table of contents and will NOT output the markdown given to it
25
+ {% endcomment %}
26
+
27
+ {% capture my_toc %}{% endcapture %}
28
+ {% assign orderedList = include.ordered | default: false %}
29
+ {% assign minHeader = include.h_min | default: 1 %}
30
+ {% assign maxHeader = include.h_max | default: 6 %}
31
+ {% assign nodes = include.html | split: '<h' %}
32
+ {% assign firstHeader = true %}
33
+
34
+ {% capture listModifier %}{% if orderedList %}1.{% else %}-{% endif %}{% endcapture %}
35
+
36
+ {% for node in nodes %}
37
+ {% if node == "" %}
38
+ {% continue %}
39
+ {% endif %}
40
+
41
+ {% assign headerLevel = node | replace: '"', '' | slice: 0, 1 | times: 1 %}
42
+
43
+ {% if headerLevel < minHeader or headerLevel > maxHeader %}
44
+ {% continue %}
45
+ {% endif %}
46
+
47
+ {% if firstHeader %}
48
+ {% assign firstHeader = false %}
49
+ {% assign minHeader = headerLevel %}
50
+ {% endif %}
51
+
52
+ {% assign indentAmount = headerLevel | minus: minHeader | add: 1 %}
53
+ {% assign _workspace = node | split: '</h' %}
54
+
55
+ {% assign _idWorkspace = _workspace[0] | split: 'id="' %}
56
+ {% assign _idWorkspace = _idWorkspace[1] | split: '"' %}
57
+ {% assign html_id = _idWorkspace[0] %}
58
+
59
+ {% capture _hAttrToStrip %}{{ _workspace[0] | split: '>' | first }}>{% endcapture %}
60
+ {% assign header = _workspace[0] | replace: _hAttrToStrip, '' %}
61
+
62
+ {% assign space = '' %}
63
+ {% for i in (1..indentAmount) %}
64
+ {% assign space = space | prepend: ' ' %}
65
+ {% endfor %}
66
+
67
+ {% unless include.item_class == blank %}
68
+ {% capture listItemClass %}{:.{{ include.item_class | replace: '%level%', headerLevel }}}{% endcapture %}
69
+ {% endunless %}
70
+
71
+ {% capture my_toc %}{{ my_toc }}
72
+ {{ space }}{{ listModifier }} {{ listItemClass }} [{% if include.sanitize %}{{ header | strip_html }}{% else %}{{ header }}{% endif %}](#{{ html_id }}){% endcapture %}
73
+
74
+ {% endfor %}
75
+
76
+ {% if include.class %}
77
+ {% capture my_toc %}{:.{{ include.class }}}
78
+ {{ my_toc | lstrip }}{% endcapture %}
79
+ {% endif %}
80
+
81
+ {% if include.id %}
82
+ {% capture my_toc %}{: #{{ include.id }}}
83
+ {{ my_toc | lstrip }}{% endcapture %}
84
+ {% endif %}
85
+ {% endcapture %}{% assign tocWorkspace = '' %}{{ my_toc | markdownify | strip }}
@@ -0,0 +1,22 @@
1
+ ---
2
+ layout: bas-style-kit/bsk--standard
3
+ ---
4
+
5
+ <div class="bsk-row">
6
+ <div class="bsk-col-12-sm-12 bsk-col-12-md-9 bsk-col-12-xl-10 bsk-col-12-md-offset-3 bsk-col-12-xl-offset-2">
7
+ {% include bas-style-kit/bsk-body--page-header.html %}
8
+ </div>
9
+ </div>
10
+ <div class="bsk-row">
11
+ {% if page.bas_style_kit_jekyll_theme.feature_flags.page.toc == true %}
12
+ <div class="bsk-col-12-sm-12 bsk-col-12-md-3 bsk-col-12-lg-3 bsk-col-12-xl-2">
13
+ <aside class="bsk-sidebar bsk-sidebar-default">
14
+ <h2>Contents</h2>
15
+ {% include bas-style-kit/bsk-body--toc.html %}
16
+ </aside>
17
+ </div>
18
+ {% endif %}
19
+ <div class="bsk-col-12-sm-12 bsk-col-12-md-9 bsk-col-12-xl-10 {% unless page.bas_style_kit_jekyll_theme.feature_flags.page.toc == true %}bsk-col-12-md-offset-3 bsk-col-12-xl-offset-2{% endunless %}">
20
+ {{ content }}
21
+ </div>
22
+ </div>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-bas-style-kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0.alpha
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Fennell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-28 00:00:00.000000000 Z
11
+ date: 2018-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -138,13 +138,17 @@ files:
138
138
  - _includes/bas-style-kit/bsk-body--analytics-script.html
139
139
  - _includes/bas-style-kit/bsk-body--back-to-top.html
140
140
  - _includes/bas-style-kit/bsk-body--core-scripts.html
141
+ - _includes/bas-style-kit/bsk-body--page-header.html
141
142
  - _includes/bas-style-kit/bsk-body--standard-footer.html
142
143
  - _includes/bas-style-kit/bsk-body--standard-header.html
143
144
  - _includes/bas-style-kit/bsk-body--standard.html
145
+ - _includes/bas-style-kit/bsk-body--toc.html
144
146
  - _includes/bas-style-kit/bsk-body.html
147
+ - _includes/bas-style-kit/bsk-footer--back-to-top.html
145
148
  - _includes/bas-style-kit/bsk-footer--contents.html
149
+ - _includes/bas-style-kit/bsk-footer--governance.html
150
+ - _includes/bas-style-kit/bsk-footer--is-something-wrong.html
146
151
  - _includes/bas-style-kit/bsk-footer--legal-policies.html
147
- - _includes/bas-style-kit/bsk-footer--ogl.html
148
152
  - _includes/bas-style-kit/bsk-head--core-meta.html
149
153
  - _includes/bas-style-kit/bsk-head--core-styles.html
150
154
  - _includes/bas-style-kit/bsk-head--favicon.html
@@ -160,12 +164,14 @@ files:
160
164
  - _includes/bas-style-kit/bsk-nav-header--brand.html
161
165
  - _includes/bas-style-kit/bsk-nav-header--collapse-trigger.html
162
166
  - _includes/bas-style-kit/head.html
167
+ - _includes/bas-style-kit/toc.html
163
168
  - _layouts/bas-style-kit/blank.html
164
169
  - _layouts/bas-style-kit/bsk--base.html
170
+ - _layouts/bas-style-kit/bsk--standard-page.html
165
171
  - _layouts/bas-style-kit/bsk--standard.html
166
172
  - _layouts/bas-style-kit/html.html
167
173
  - screenshot.png
168
- homepage: https://gitlab.data.bas.ac.uk/BSK/bas-style-kit-jekyll-theme
174
+ homepage: https://github.com/antarctica/bas-style-kit-jekyll-theme
169
175
  licenses:
170
176
  - Nonstandard
171
177
  metadata:
@@ -181,9 +187,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
181
187
  version: '0'
182
188
  required_rubygems_version: !ruby/object:Gem::Requirement
183
189
  requirements:
184
- - - ">="
190
+ - - ">"
185
191
  - !ruby/object:Gem::Version
186
- version: '0'
192
+ version: 1.3.1
187
193
  requirements: []
188
194
  rubyforge_project:
189
195
  rubygems_version: 2.7.4
@@ -1,9 +0,0 @@
1
- <div class="bsk-footer-ogl">
2
- <a class="bsk-ogl-symbol" rel="license" href="{{ site.bas_style_kit_jekyll_theme.attributes.site_footer.ogl.href }}">
3
- <img alt="Open Government Licence symbol" src="{{ site.bas_style_kit_jekyll_theme.attributes.site_footer.ogl.img }}" />
4
- </a>
5
- <div class="bsk-ogl-text">
6
- This website is licensed under the
7
- <a href="{{ site.bas_style_kit_jekyll_theme.attributes.site_footer.ogl.href }}">Open Government Licence {{ site.bas_style_kit_jekyll_theme.attributes.site_footer.ogl.text_version }}</a>
8
- , except where otherwise stated</div>
9
- </div>