infotorg-api-jekyll-theme 0.1.5 → 0.1.7
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 +89 -8
- data/_config.yml +8 -0
- data/_includes/documentation_links.html +18 -0
- data/_includes/footer.html +6 -0
- data/_layouts/default.html +4 -1
- data/_layouts/documentation.html +9 -0
- data/_layouts/services.html +13 -7
- data/_layouts/swagger-ui.html +4 -1
- data/assets/css/main.scss +24 -2
- data/assets/images/icons/action-go-outline.svg +12 -0
- data/assets/images/icons/action-go.svg +12 -0
- data/assets/images/icons/services/employee.svg +11 -0
- data/assets/images/icons/services/movables.svg +12 -0
- data/assets/images/icons/services/phone.svg +12 -0
- data/assets/images/icons/services/placeholder.svg +12 -0
- data/assets/{bootstrap.min.js → js/bootstrap.min.js} +0 -0
- data/assets/{bootstrap.min.js.map → js/bootstrap.min.js.map} +0 -0
- metadata +12 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 59a01c6c1a00024bd50f31055ec221158fb4d490058194170ff318c5c7a934e6
|
4
|
+
data.tar.gz: 9f059aa2fd3185509f8b3134e3620578241ce1a44c705be3a8bf3010c71de19b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3408dd567b29d01920ac2a386e439ed9cd80d70313380ef985f5619867f152f1659769ab2fa9466f1f5d704cf3e26f4b8885808318675b3f9e8f75c11d47f280
|
7
|
+
data.tar.gz: fd4b361eda5c82deb2c501f850bcdaa5db812b9034b8947bf194c64583c82c44814b7c4b448e4dba6a5ea3a75339ced44489df87b01e9c00c96b778665ed4691
|
data/README.md
CHANGED
@@ -254,7 +254,7 @@ lang: "en-US"
|
|
254
254
|
title: infotorg API
|
255
255
|
```
|
256
256
|
|
257
|
-

|
257
|
+

|
258
258
|
|
259
259
|
It used as a part of title in a `<title>` tag as well.
|
260
260
|
Let's imagine we have a "Security" page that looks like:
|
@@ -296,7 +296,7 @@ The `site.subtitle` sets a visible subtitle under the title on the page.
|
|
296
296
|
subtitle: Onboarding guidelines and documentation
|
297
297
|
```
|
298
298
|
|
299
|
-

|
299
|
+

|
300
300
|
|
301
301
|
#### Url to a Product page
|
302
302
|
|
@@ -314,7 +314,27 @@ product_url: "https://www.infotorg.no/"
|
|
314
314
|
product_url_title: "Infotorg.no"
|
315
315
|
```
|
316
316
|
|
317
|
-

|
317
|
+

|
318
|
+
|
319
|
+
#### Url to main page
|
320
|
+
|
321
|
+
> Will be shown only on a concrete API documentation page.
|
322
|
+
|
323
|
+
`main_page_url` used to set **url** to the main APIs page (a list of services, also called a lending page). *Default:* https://infotorg.github.io/
|
324
|
+
|
325
|
+
`_config.yml`:
|
326
|
+
```yaml
|
327
|
+
main_page_url: "https://infotorg.github.io/"
|
328
|
+
```
|
329
|
+
|
330
|
+
`main_page_url_title` used to set a **title** to APIs page link. *Default:* Infotorg APIs
|
331
|
+
|
332
|
+
`_config.yml`:
|
333
|
+
```yaml
|
334
|
+
main_page_url_title: "Infotorg APIs"
|
335
|
+
```
|
336
|
+
|
337
|
+

|
318
338
|
|
319
339
|
|
320
340
|
#### Enabling Google Analytics
|
@@ -326,9 +346,9 @@ google_analytics_tag_manager: GTM-XXXX
|
|
326
346
|
|
327
347
|
### Navigation
|
328
348
|
|
329
|
-

|
349
|
+

|
330
350
|
|
331
|
-
Customize site navigational links through a Jekyll data file [_data/navigation.yml](_data/navigation.yml)
|
351
|
+
Customize a site navigational links through a Jekyll data file [_data/navigation.yml](_data/navigation.yml)
|
332
352
|
|
333
353
|
```yaml
|
334
354
|
- name: Overview
|
@@ -354,6 +374,59 @@ Optional keys:
|
|
354
374
|
- `show` - Boolean flag shows/hides the navigation item. Possible values: `true`, `false`.
|
355
375
|
|
356
376
|
|
377
|
+
### External documentation links
|
378
|
+
|
379
|
+
The theme gives you an ability to easily show links to external documentation resources.
|
380
|
+
|
381
|
+

|
382
|
+
|
383
|
+
#### How to use it
|
384
|
+
1. Create a file with links to the documentation resources. By default, this is [_data/documentation_links.yml](_data/documentation_links.yml).
|
385
|
+
|
386
|
+
`_data/documentation_links.yml`
|
387
|
+
```yaml
|
388
|
+
- name: WSDL
|
389
|
+
link: http://ws-test.infotorg.no/xml/EVRY/InfotorgKjoeretoey/2018-11-28/InfotorgKjoeretoey.wsdl
|
390
|
+
target: _blank
|
391
|
+
show: true
|
392
|
+
|
393
|
+
- name: XSD
|
394
|
+
link: http://ws-test.infotorg.no/xml/EVRY/InfotorgKjoeretoey/2018-11-28/InfotorgKjoeretoey.xsd
|
395
|
+
target: _blank
|
396
|
+
show: true
|
397
|
+
|
398
|
+
- name: Documentation
|
399
|
+
link: http://ws-test.infotorg.no/xml/EVRY/InfotorgKjoeretoey/2018-11-28/InfotorgKjoeretoey.xsd.xhtml
|
400
|
+
target: _blank
|
401
|
+
show: true
|
402
|
+
```
|
403
|
+
Optional keys:
|
404
|
+
- `target` - adds a `target` html attribute to a navigation link. Possible values are: `_self`, `_blank`, `_parent`, `_top`. [[More details](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a)]
|
405
|
+
- `show` - Boolean flag shows/hides the item. Possible values: `true`, `false`.
|
406
|
+
2. On a page you need the resources link use [documentation](_layouts/documentation.html) layout
|
407
|
+
```yaml
|
408
|
+
---
|
409
|
+
layout: documentation
|
410
|
+
title: Documentation
|
411
|
+
permalink: documentation
|
412
|
+
---
|
413
|
+
```
|
414
|
+
|
415
|
+
Or you can manually include documentations links instead of using layout.
|
416
|
+
```html
|
417
|
+
---
|
418
|
+
title: Documentation
|
419
|
+
permalink: documentation
|
420
|
+
---
|
421
|
+
<h1>{{ page.title }}</h1>
|
422
|
+
|
423
|
+
{% include documentation_links.html links=site.data.documentation_links %}
|
424
|
+
```
|
425
|
+
[documentation_links](_includes/documentation_links.html) requires only links [[see step 1 above](#how-to-use-it)].
|
426
|
+
|
427
|
+
> NOTE: a page where you're including the `documentation_links` should have the `.html` extension, not `.md`.
|
428
|
+
|
429
|
+
|
357
430
|
### Layouts
|
358
431
|
|
359
432
|
The bread and butter of any theme. Below you’ll find the layouts included with the theme, what they look like and the type of content they’ve been built for.
|
@@ -365,6 +438,7 @@ The bread and butter of any theme. Below you’ll find the layouts included with
|
|
365
438
|
Refers to files within the [_layouts](_layouts) directory, that define the markup for your theme.
|
366
439
|
|
367
440
|
- [default.html](_layouts/default.html) — The base layout that lays the foundation for subsequent layouts. The derived layouts inject their contents into this file at the line that says ` {{ content }} ` and are linked to this file via [FrontMatter](https://jekyllrb.com/docs/frontmatter/) declaration `layout: default`.
|
441
|
+
- [documentation.html](_layouts/documentation.html) — The layout for automatic output external documentation links. [[More Info.](#documentation-layout)]
|
368
442
|
- [services.html](_layouts/services.html) — The layout for your Services list. [[More Info.](#services-layout)]
|
369
443
|
- [swagger-ui.html](_layouts/swagger-ui.html) — The layout for your [Swagger UI](https://swagger.io/tools/swagger-ui/) documentation that contain FrontMatter: `layout: swagger-ui`. [[More Info.](#swagger-ui-layout)]
|
370
444
|
|
@@ -374,19 +448,25 @@ Each of the layouts injects all needed CSS and JavaScript to render your page co
|
|
374
448
|
|
375
449
|
[`default.html`](_layouts/default.html) is a flexible HTML layout for the site's landing-page / home-page / index-page. <br/>
|
376
450
|
|
377
|
-

|
451
|
+

|
452
|
+
|
453
|
+
#### Documentation Layout
|
454
|
+
|
455
|
+
[documentation.html](_layouts/documentation.html) based on the default layout to show a list of links to external documentation defined in the [_data/documentation_links.yml](_data/documentation_links.yml) file.
|
456
|
+
|
457
|
+

|
378
458
|
|
379
459
|
#### Services Layout
|
380
460
|
|
381
461
|
[services.html](_layouts/services.html) based on the default layout to show a list of services defined in the [_data/services.yml](_data/services.yml) file.
|
382
462
|
|
383
|
-

|
463
|
+

|
384
464
|
|
385
465
|
#### Swagger UI Layout
|
386
466
|
|
387
467
|
[services.html](_layouts/services.html) is a flexible HTML layout for the to show Swagger UI.
|
388
468
|
|
389
|
-

|
469
|
+

|
390
470
|
|
391
471
|
Path to Open API file can be set in the `openapi` option in the [_config.yml](_config.yml) or via FrontMatter: `openapi: /assets/openapi/YOUR_OPEN_API_FILE`
|
392
472
|
|
@@ -414,6 +494,7 @@ Refers to snippets of code within the [_includes](_includes) directory that can
|
|
414
494
|
- [head-google-analytics.html](_includes/head-google-analytics.html) — Inserts Google Analytics module.
|
415
495
|
- [navigation.html](_includes/navigation.html) — Inserts navigation block (for desktop and mobile devices). Managing by [show_navigation](_config.yml) option in a global [_config.yml](_config.yml) or via FrontMatter: `show_navigation: true/false`
|
416
496
|
- [title.html](_includes/title.html) — Defines the site's main header section.
|
497
|
+
- [documentation_links.html](_includes/documentation_links.html) — Output [external documentation links](#external-documentation-links).
|
417
498
|
|
418
499
|
### Sass
|
419
500
|
|
data/_config.yml
CHANGED
@@ -35,11 +35,19 @@ product_url: ''
|
|
35
35
|
# Sets the product link title. Default: Infotorg.no
|
36
36
|
product_url_title: ''
|
37
37
|
|
38
|
+
# Sets an url to the main APIs page (a list of services, also called a lending page).
|
39
|
+
# Should be shown only on a concrete API documentation page
|
40
|
+
main_page_url: 'https://infotorg.github.io/'
|
41
|
+
# Sets an title to APIs page link. Default: Infotorg APIs
|
42
|
+
main_page_url_title: 'Infotorg APIs'
|
43
|
+
|
44
|
+
|
38
45
|
# Your Google Analytics GTM-XXXX code
|
39
46
|
google_analytics_tag_manager: ''
|
40
47
|
|
41
48
|
|
42
49
|
# --- Swagger UI configuration ---
|
50
|
+
# Make sense for REST services.
|
43
51
|
|
44
52
|
# Path to Open API file name, used for Swagger UI.
|
45
53
|
# As a convention, all Open API files should be stored in the /assets/openapi folder.
|
@@ -0,0 +1,18 @@
|
|
1
|
+
{% assign links = include.links | where:'show', true %}
|
2
|
+
|
3
|
+
{% if links.size > 0 %}
|
4
|
+
<p class="mb-3">Refer to the documentation by the links below:</p>
|
5
|
+
|
6
|
+
<div class="pt-3">
|
7
|
+
{% for item in links %}
|
8
|
+
<a
|
9
|
+
href="{{ item.link }}"
|
10
|
+
{% if item.target %}target="{{ item.target }}"{% endif %}
|
11
|
+
{% if item.direct_download and item.direct_download == true %}download="{{ item.link | split: '/' | last }}"{% endif %}
|
12
|
+
class="btn btn-outline-secondary action-go"
|
13
|
+
>
|
14
|
+
{{ item.name }}
|
15
|
+
</a>
|
16
|
+
{% endfor %}
|
17
|
+
</div>
|
18
|
+
{% endif %}
|
data/_includes/footer.html
CHANGED
@@ -4,6 +4,12 @@
|
|
4
4
|
<a href="{{ site.product_url | default: 'https://www.infotorg.no/' }}">
|
5
5
|
{{ site.product_url_title | default: 'Infotorg.no' }}
|
6
6
|
</a>
|
7
|
+
|
8
|
+
{% if page.layout != 'services' and site.main_page_url and site.main_page_url != '' %}
|
9
|
+
<a href="{{ site.main_page_url | default: '..' }}" class="ms-3">
|
10
|
+
{{ site.main_page_url_title | default: 'Infotorg APIs' }}
|
11
|
+
</a>
|
12
|
+
{% endif %}
|
7
13
|
</div>
|
8
14
|
<div class="company">
|
9
15
|
<span class="service-from-text">En tjeneste fra</span>
|
data/_layouts/default.html
CHANGED
@@ -28,12 +28,15 @@
|
|
28
28
|
<div class="container layout-{{ page.layout }}">
|
29
29
|
{{ content }}
|
30
30
|
|
31
|
+
{% if page.show_cube_bg == true %}
|
31
32
|
<div class="bg-cube"></div>
|
33
|
+
{% endif %}
|
32
34
|
</div>
|
33
35
|
</main>
|
34
36
|
|
35
37
|
<!-- Footer -->
|
36
38
|
{% include footer.html %}
|
37
|
-
|
39
|
+
|
40
|
+
<script src="{{ 'assets/js/bootstrap.min.js' | relative_url }}"></script>
|
38
41
|
</body>
|
39
42
|
</html>
|
data/_layouts/services.html
CHANGED
@@ -18,16 +18,20 @@ comment: Infotorg Services APIs layout
|
|
18
18
|
id="heading-{{ forloop.index }}"
|
19
19
|
class="accordion-header"
|
20
20
|
>
|
21
|
+
{% assign icon_exists = false %}
|
21
22
|
{% assign icons_dir = "assets/images/icons/services/" %}
|
22
23
|
{% assign icon_path = icons_dir | prepend: '/' | append: item.icon %}
|
23
24
|
|
24
|
-
{%
|
25
|
-
{%
|
26
|
-
{%
|
25
|
+
{% if item.icon and item.icon != '' %}
|
26
|
+
{% for static_file in site.static_files %}
|
27
|
+
{% if static_file.path == icon_path %}
|
28
|
+
{% assign icon_exists = true %}
|
29
|
+
|
30
|
+
{% break %}
|
31
|
+
{% endif %}
|
32
|
+
{% endfor %}
|
33
|
+
{% endif %}
|
27
34
|
|
28
|
-
{% break %}
|
29
|
-
{% endif %}
|
30
|
-
{% endfor %}
|
31
35
|
|
32
36
|
<button
|
33
37
|
id="collapse-item-toggler-{{ forloop.index }}"
|
@@ -39,8 +43,10 @@ comment: Infotorg Services APIs layout
|
|
39
43
|
aria-controls="collapse-{{ forloop.index }}"
|
40
44
|
>
|
41
45
|
<span class="service-icon">
|
42
|
-
{% if icon_exists
|
46
|
+
{% if icon_exists %}
|
43
47
|
<img src="{{ icons_dir }}{{ item.icon }}">
|
48
|
+
{% else %}
|
49
|
+
<img src="{{ icons_dir }}placeholder.svg">
|
44
50
|
{% endif %}
|
45
51
|
</span>
|
46
52
|
|
data/_layouts/swagger-ui.html
CHANGED
@@ -37,14 +37,17 @@
|
|
37
37
|
<div id="swagger-ui"></div>
|
38
38
|
</div>
|
39
39
|
</main>
|
40
|
+
|
41
|
+
{% if page.show_cube_bg == true %}
|
40
42
|
<div class="flex-shrink-0 container">
|
41
43
|
<div class="bg-cube"></div>
|
42
44
|
</div>
|
45
|
+
{% endif %}
|
43
46
|
|
44
47
|
<!-- Footer -->
|
45
48
|
{% include footer.html %}
|
46
49
|
|
47
|
-
<script src="{{ 'assets/bootstrap.min.js' | relative_url }}"></script>
|
50
|
+
<script src="{{ 'assets/js/bootstrap.min.js' | relative_url }}"></script>
|
48
51
|
<script src="https://unpkg.com/swagger-ui-dist@3/swagger-ui-standalone-preset.js"></script>
|
49
52
|
<script src="https://unpkg.com/swagger-ui-dist@3/swagger-ui-bundle.js" charset="UTF-8"></script>
|
50
53
|
<script>
|
data/assets/css/main.scss
CHANGED
@@ -74,12 +74,16 @@
|
|
74
74
|
|
75
75
|
.nav-item {
|
76
76
|
& .active {
|
77
|
-
background: #
|
77
|
+
background: #fff;
|
78
78
|
box-shadow: 0 0 20px 0 rgba(144, 163, 173, 0.3);
|
79
79
|
}
|
80
80
|
|
81
|
+
&:hover {
|
82
|
+
background: #94b38b;
|
83
|
+
}
|
84
|
+
|
81
85
|
a {
|
82
|
-
color:
|
86
|
+
color: $color-calm-grey-darkest;
|
83
87
|
font-weight: 500;
|
84
88
|
}
|
85
89
|
}
|
@@ -230,3 +234,21 @@
|
|
230
234
|
.table thead > tr > th {
|
231
235
|
vertical-align: middle;
|
232
236
|
}
|
237
|
+
|
238
|
+
.action-go {
|
239
|
+
padding: 10px 16px;
|
240
|
+
margin-right: 20px;
|
241
|
+
}
|
242
|
+
.action-go:after {
|
243
|
+
display: inline-block;
|
244
|
+
content: "";
|
245
|
+
width: 28px;
|
246
|
+
height: 29px;
|
247
|
+
background-image: url(../images/icons/action-go.svg);
|
248
|
+
background-repeat: no-repeat;
|
249
|
+
margin-left: 10px;
|
250
|
+
vertical-align: middle;
|
251
|
+
}
|
252
|
+
.action-go:hover:after {
|
253
|
+
background-image: url(../images/icons/action-go-outline.svg);
|
254
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="29" viewBox="0 0 28 29">
|
2
|
+
<g fill="none" fill-rule="evenodd">
|
3
|
+
<g>
|
4
|
+
<g>
|
5
|
+
<g>
|
6
|
+
<path d="M0 0L28 0 28 28 0 28z" transform="translate(-809 -456) translate(661 446.4) translate(148 10)"/>
|
7
|
+
<path fill="white" d="M0 14c0-2.522.63-4.855 1.891-7C3.151 4.855 4.855 3.152 7 1.891 9.145.631 11.478 0 14 0c2.522 0 4.855.63 7 1.891 2.145 1.26 3.848 2.964 5.109 5.109C27.369 9.145 28 11.478 28 14c0 2.522-.63 4.855-1.891 7-1.26 2.145-2.964 3.848-5.109 5.109C18.855 27.369 16.522 28 14 28c-2.522 0-4.855-.63-7-1.891-2.145-1.26-3.848-2.964-5.109-5.109C.631 18.855 0 16.522 0 14zM14 1.642c-2.25 0-4.32.553-6.208 1.659-1.888 1.106-3.385 2.613-4.491 4.52-1.106 1.907-1.66 3.976-1.66 6.208 0 2.231.554 4.29 1.66 6.179 1.106 1.888 2.613 3.385 4.52 4.491 1.907 1.106 3.976 1.66 6.208 1.66 2.231 0 4.29-.554 6.179-1.66 1.888-1.106 3.385-2.613 4.491-4.52 1.106-1.907 1.66-3.976 1.66-6.208 0-2.231-.554-4.29-1.66-6.179-1.106-1.888-2.613-3.385-4.52-4.491-1.907-1.106-3.967-1.66-6.179-1.66zm.218 5.473c.053-.052.121-.079.19-.079.068 0 .136.027.188.08l6.21 6.209c.186.186.278.43.278.674 0 .244-.092.489-.279.674l-6.209 6.21c-.052.052-.12.079-.189.079s-.136-.027-.189-.08l-.97-.97c-.047-.047-.074-.11-.077-.175-.004-.074.023-.149.078-.205l4.513-4.515H7.345c-.062 0-.118-.02-.163-.056-.046-.035-.08-.084-.096-.14l-.01-.072v-1.503c0-.072.029-.137.075-.186.048-.052.117-.082.194-.082l10.42-.001-4.515-4.514c-.033-.033-.055-.072-.068-.113-.019-.064-.014-.136.018-.196l.05-.07.97-.969z" transform="translate(-809 -456) translate(661 446.4) translate(148 10)"/>
|
8
|
+
</g>
|
9
|
+
</g>
|
10
|
+
</g>
|
11
|
+
</g>
|
12
|
+
</svg>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="29" viewBox="0 0 28 29">
|
2
|
+
<g fill="none" fill-rule="evenodd">
|
3
|
+
<g>
|
4
|
+
<g>
|
5
|
+
<g>
|
6
|
+
<path d="M0 0L28 0 28 28 0 28z" transform="translate(-809 -456) translate(661 446.4) translate(148 10)"/>
|
7
|
+
<path fill="#063954" d="M0 14c0-2.522.63-4.855 1.891-7C3.151 4.855 4.855 3.152 7 1.891 9.145.631 11.478 0 14 0c2.522 0 4.855.63 7 1.891 2.145 1.26 3.848 2.964 5.109 5.109C27.369 9.145 28 11.478 28 14c0 2.522-.63 4.855-1.891 7-1.26 2.145-2.964 3.848-5.109 5.109C18.855 27.369 16.522 28 14 28c-2.522 0-4.855-.63-7-1.891-2.145-1.26-3.848-2.964-5.109-5.109C.631 18.855 0 16.522 0 14zM14 1.642c-2.25 0-4.32.553-6.208 1.659-1.888 1.106-3.385 2.613-4.491 4.52-1.106 1.907-1.66 3.976-1.66 6.208 0 2.231.554 4.29 1.66 6.179 1.106 1.888 2.613 3.385 4.52 4.491 1.907 1.106 3.976 1.66 6.208 1.66 2.231 0 4.29-.554 6.179-1.66 1.888-1.106 3.385-2.613 4.491-4.52 1.106-1.907 1.66-3.976 1.66-6.208 0-2.231-.554-4.29-1.66-6.179-1.106-1.888-2.613-3.385-4.52-4.491-1.907-1.106-3.967-1.66-6.179-1.66zm.218 5.473c.053-.052.121-.079.19-.079.068 0 .136.027.188.08l6.21 6.209c.186.186.278.43.278.674 0 .244-.092.489-.279.674l-6.209 6.21c-.052.052-.12.079-.189.079s-.136-.027-.189-.08l-.97-.97c-.047-.047-.074-.11-.077-.175-.004-.074.023-.149.078-.205l4.513-4.515H7.345c-.062 0-.118-.02-.163-.056-.046-.035-.08-.084-.096-.14l-.01-.072v-1.503c0-.072.029-.137.075-.186.048-.052.117-.082.194-.082l10.42-.001-4.515-4.514c-.033-.033-.055-.072-.068-.113-.019-.064-.014-.136.018-.196l.05-.07.97-.969z" transform="translate(-809 -456) translate(661 446.4) translate(148 10)"/>
|
8
|
+
</g>
|
9
|
+
</g>
|
10
|
+
</g>
|
11
|
+
</g>
|
12
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" viewBox="0 0 33 33">
|
2
|
+
<g fill="none" fill-rule="evenodd">
|
3
|
+
<g>
|
4
|
+
<g>
|
5
|
+
<g>
|
6
|
+
<path fill="#E44634" fill-rule="nonzero" d="M18.49 2.653c.354 0 .647.263.693.605l.007.095v8.341c0 .355-.264.648-.605.694l-.095.006h-4.88c-.354 0-.647-.263-.693-.605l-.007-.095v-1.202l1.4-.147v.649h3.479V4.052H14.31v4.506c0 .355-.263.648-.605.694l-.095.006H4.003v15.349h23.993V9.258h-7.97v-1.4h8.67c.354 0 .647.264.694.605l.006.095v16.75c0 .354-.263.647-.605.693l-.095.006H3.304c-.354 0-.647-.263-.694-.605l-.006-.095V8.558c0-.354.263-.647.605-.693l.095-.007h9.606V3.353c0-.355.264-.648.605-.694l.095-.006h4.88zm-8.367 10.044c1.897 0 3.434 1.537 3.434 3.434 0 1.125-.54 2.123-1.375 2.75 1.784.769 3.051 2.51 3.136 4.555l.005.22h-1.4c0-2.099-1.702-3.8-3.8-3.8-2.033 0-3.694 1.596-3.795 3.604l-.005.196h-1.4c0-2.14 1.293-3.98 3.14-4.777-.835-.626-1.375-1.624-1.375-2.748 0-1.897 1.538-3.434 3.435-3.434zm16.244 5.78v1.4h-7.955v-1.4h7.955zm-16.244-4.38c-1.124 0-2.035.91-2.035 2.034 0 1.124.911 2.035 2.035 2.035 1.123 0 2.034-.911 2.034-2.035 0-1.123-.91-2.034-2.034-2.034zm16.244 1.334v1.4h-7.955v-1.4h7.955z" transform="translate(-362 -904) translate(362 884.4) translate(0 20.2)"/>
|
7
|
+
</g>
|
8
|
+
</g>
|
9
|
+
</g>
|
10
|
+
</g>
|
11
|
+
</svg>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" viewBox="0 0 33 33">
|
2
|
+
<g fill="none" fill-rule="evenodd">
|
3
|
+
<g>
|
4
|
+
<g>
|
5
|
+
<g>
|
6
|
+
<path fill="#E44634" fill-rule="nonzero" d="M15.717 2.3c.144-.065.304-.078.455-.04l.11.039L28.98 7.908c.52.23.554.937.098 1.228l-.097.052-12.696 5.63c-.145.064-.305.076-.456.038l-.111-.038L4.003 9.633v12.774l11.786 5.495c.134.063.288.063.422 0l11.785-5.495V11.005l1.126-.448c.103-.041.219.009.26.111.01.024.014.05.014.074v12.112c0 .238-.12.457-.316.585l-.088.049-12.696 5.92c-.15.07-.319.084-.476.042l-.116-.041-12.696-5.921c-.216-.1-.363-.303-.397-.534l-.007-.1V8.558c0-.472.453-.799.89-.674l.093.034L16 13.411l10.967-4.862L16 3.704 7.02 7.682 5.6 7.155c-.104-.038-.156-.154-.118-.257.019-.05.057-.092.107-.113l10.128-4.486z" transform="translate(-362 -967) translate(362 949.4) translate(0 18.2) matrix(-1 0 0 1 32 0)"/>
|
7
|
+
<path fill="#E44634" fill-rule="nonzero" d="M16.7 14.109v11.99c0 .387-.313.7-.7.7-.387 0-.7-.313-.7-.7V14.11h1.4zM25.068 13.658v1.086c0 .076-.043.146-.112.18l-3.472 1.696c-.099.048-.219.007-.267-.092-.013-.028-.02-.058-.02-.088v-1.086c0-.077.043-.147.112-.18l3.471-1.696c.1-.049.22-.007.268.092.013.027.02.057.02.088z" transform="translate(-362 -967) translate(362 949.4) translate(0 18.2)"/>
|
8
|
+
</g>
|
9
|
+
</g>
|
10
|
+
</g>
|
11
|
+
</g>
|
12
|
+
</svg>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" viewBox="0 0 33 33">
|
2
|
+
<g fill="none" fill-rule="evenodd">
|
3
|
+
<g>
|
4
|
+
<g>
|
5
|
+
<g>
|
6
|
+
<path d="M0.959 0.582L33.799 0.582 33.799 33.422 0.959 33.422z" transform="translate(-361 -1030) translate(361 1012.4) translate(0 17.2)"/>
|
7
|
+
<path fill="#E44634" d="M8.466 7.581c-.197 0-.386.078-.524.217l-.532.531c-1.393 1.394-1.8 3.656-1.146 6.366.693 2.872 2.476 5.855 5.021 8.4 2.545 2.543 5.528 4.325 8.4 5.02 2.71.654 4.971.247 6.365-1.146l.531-.531c.29-.29.29-.758 0-1.048l-3.052-3.052c-.289-.289-.758-.289-1.047 0l-2.285 2.285c-.281.282-.713.349-1.066.166-1.874-.969-3.762-2.379-5.462-4.079-1.7-1.7-3.107-3.587-4.078-5.46-.183-.354-.116-.785.165-1.066l2.286-2.286c.289-.289.289-.758 0-1.047L8.99 7.798c-.14-.14-.328-.217-.524-.217m1.816-1.075l3.053 3.052c1.002 1.004 1.002 2.63 0 3.633l-1.804 1.802c.865 1.517 2.04 3.035 3.43 4.425 1.39 1.39 2.91 2.566 4.426 3.43l1.802-1.803c1.003-1.003 2.629-1.003 3.632 0l3.053 3.053c1.002 1.003 1.002 2.628 0 3.631l-.532.531c-1.312 1.315-3.127 1.988-5.26 1.988-.953-.007-1.901-.126-2.826-.356-3.195-.77-6.484-2.726-9.26-5.505-2.778-2.78-4.735-6.07-5.506-9.26-.811-3.357-.232-6.23 1.628-8.09l.531-.53c1.004-1.003 2.629-1.003 3.633 0zm7.816 1.967c4.342 0 7.874 3.534 7.874 7.875 0 .505-.409.914-.914.914-.504 0-.913-.409-.913-.914-.004-3.338-2.709-6.043-6.047-6.047-.505 0-.914-.41-.914-.914 0-.505.41-.914.914-.914zm0-3.862c6.472 0 11.737 5.265 11.737 11.737 0 .505-.41.914-.914.914-.505 0-.914-.409-.914-.914 0-5.464-4.447-9.91-9.909-9.91-.505 0-.914-.409-.914-.913 0-.505.41-.914.914-.914z" transform="translate(-361 -1030) translate(361 1012.4) translate(0 17.2)"/>
|
8
|
+
</g>
|
9
|
+
</g>
|
10
|
+
</g>
|
11
|
+
</g>
|
12
|
+
</svg>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" viewBox="0 0 33 33">
|
2
|
+
<g fill="none" fill-rule="evenodd">
|
3
|
+
<g>
|
4
|
+
<g>
|
5
|
+
<g>
|
6
|
+
<path fill="#E44634" fill-rule="nonzero" d="M15.717 2.3c.144-.065.304-.078.455-.04l.11.039L28.98 7.908c.52.23.554.937.098 1.228l-.097.052-12.696 5.63c-.145.064-.305.076-.456.038l-.111-.038L4.003 9.633v12.774l11.786 5.495c.134.063.288.063.422 0l11.785-5.495V11.005l1.126-.448c.103-.041.219.009.26.111.01.024.014.05.014.074v12.112c0 .238-.12.457-.316.585l-.088.049-12.696 5.92c-.15.07-.319.084-.476.042l-.116-.041-12.696-5.921c-.216-.1-.363-.303-.397-.534l-.007-.1V8.558c0-.472.453-.799.89-.674l.093.034L16 13.411l10.967-4.862L16 3.704 7.02 7.682 5.6 7.155c-.104-.038-.156-.154-.118-.257.019-.05.057-.092.107-.113l10.128-4.486z" transform="translate(-362 -967) translate(362 949.4) translate(0 18.2) matrix(-1 0 0 1 32 0)"/>
|
7
|
+
<path fill="#E44634" fill-rule="nonzero" d="M16.7 14.109v11.99c0 .387-.313.7-.7.7-.387 0-.7-.313-.7-.7V14.11h1.4zM25.068 13.658v1.086c0 .076-.043.146-.112.18l-3.472 1.696c-.099.048-.219.007-.267-.092-.013-.028-.02-.058-.02-.088v-1.086c0-.077.043-.147.112-.18l3.471-1.696c.1-.049.22-.007.268.092.013.027.02.057.02.088z" transform="translate(-362 -967) translate(362 949.4) translate(0 18.2)"/>
|
8
|
+
</g>
|
9
|
+
</g>
|
10
|
+
</g>
|
11
|
+
</g>
|
12
|
+
</svg>
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: infotorg-api-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Volodymyr Chumak
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-01-
|
11
|
+
date: 2021-01-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -48,6 +48,7 @@ files:
|
|
48
48
|
- LICENSE.md
|
49
49
|
- README.md
|
50
50
|
- _config.yml
|
51
|
+
- _includes/documentation_links.html
|
51
52
|
- _includes/footer.html
|
52
53
|
- _includes/head-app-css.html
|
53
54
|
- _includes/head-favicon.html
|
@@ -56,6 +57,7 @@ files:
|
|
56
57
|
- _includes/navigation.html
|
57
58
|
- _includes/title.html
|
58
59
|
- _layouts/default.html
|
60
|
+
- _layouts/documentation.html
|
59
61
|
- _layouts/services.html
|
60
62
|
- _layouts/swagger-ui.html
|
61
63
|
- _sass/_bootstrap.scss
|
@@ -140,8 +142,6 @@ files:
|
|
140
142
|
- _sass/bootstrap/mixins/_visually-hidden.scss
|
141
143
|
- _sass/bootstrap/utilities/_api.scss
|
142
144
|
- _sass/bootstrap/vendor/_rfs.scss
|
143
|
-
- assets/bootstrap.min.js
|
144
|
-
- assets/bootstrap.min.js.map
|
145
145
|
- assets/css/main.scss
|
146
146
|
- assets/css/print.scss
|
147
147
|
- assets/css/swagger-ui/3.x/theme-feeling-blue.css
|
@@ -168,13 +168,19 @@ files:
|
|
168
168
|
- assets/images/favicon/favicon-96x96.png
|
169
169
|
- assets/images/favicon/favicon.ico
|
170
170
|
- assets/images/favicon/safari-pinned-tab.svg
|
171
|
+
- assets/images/icons/action-go-outline.svg
|
172
|
+
- assets/images/icons/action-go.svg
|
171
173
|
- assets/images/icons/collapse.svg
|
172
174
|
- assets/images/icons/info.svg
|
173
175
|
- assets/images/icons/services/eiendom.svg
|
176
|
+
- assets/images/icons/services/employee.svg
|
174
177
|
- assets/images/icons/services/foretak.svg
|
175
178
|
- assets/images/icons/services/kreditt.svg
|
176
179
|
- assets/images/icons/services/likningopplysning.svg
|
180
|
+
- assets/images/icons/services/movables.svg
|
177
181
|
- assets/images/icons/services/person.svg
|
182
|
+
- assets/images/icons/services/phone.svg
|
183
|
+
- assets/images/icons/services/placeholder.svg
|
178
184
|
- assets/images/icons/services/small-boats.svg
|
179
185
|
- assets/images/icons/services/vehicle.svg
|
180
186
|
- assets/images/infotorg-developer.png
|
@@ -185,6 +191,8 @@ files:
|
|
185
191
|
- assets/images/logo.svg
|
186
192
|
- assets/images/onboarding-process.svg
|
187
193
|
- assets/images/tieto-evry-logo.svg
|
194
|
+
- assets/js/bootstrap.min.js
|
195
|
+
- assets/js/bootstrap.min.js.map
|
188
196
|
- assets/openapi/.gitkeep
|
189
197
|
- assets/openapi/eiendom.json
|
190
198
|
homepage: https://github.com/coderua/infotorg-api-jekyll-theme
|