jekyll-theme-isotc211 0.1.1
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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +100 -0
- data/_config.yml +48 -0
- data/_includes/copyright.html +26 -0
- data/_includes/google-analytics.html +11 -0
- data/_includes/head.html +35 -0
- data/_includes/script.html +0 -0
- data/_layouts/default.html +78 -0
- data/_layouts/home.html +17 -0
- data/_layouts/page.html +8 -0
- data/_layouts/post.html +9 -0
- data/_pages/404.adoc +19 -0
- data/_sass/home.scss +198 -0
- data/_sass/jekyll-theme-isotc211.scss +48 -0
- data/_sass/main.scss +185 -0
- data/_sass/offsets.scss +93 -0
- data/assets/logo-iso-noninverted.svg +98 -0
- data/assets/logo-iso.svg +74 -0
- data/assets/logo-ribose.svg +1 -0
- metadata +175 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 350a60879cb25f53154fe1654751b9d4f3ceed813a29082037c6985c4bc01f76
|
|
4
|
+
data.tar.gz: cc9ea8509f0ecc178f0b50e4968b1a19e70fffd681087febbdea1a35f54fb68c
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 45a6bdc607f9dcc1ce1d1d44bd8757148322154534afc710e4247dc7ddfee6f44759cabbd07ce9bbaacef0e9a7e4e04bd370f03f63a8efe339cc07cee1a165d1
|
|
7
|
+
data.tar.gz: 42974920eb2736c26277b787a75a599ed830510a38567a859deb6072a1482f29d8d66c3922ad3b86bd3bfe2ee5ede4c8dbce08f12b88b0df1635edd368041be0
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018 Ribose
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
# ISO/TC211 theme by Ribose
|
|
2
|
+
|
|
3
|
+
This is a theme used across ISO/TC211 sites powered by Ribose,
|
|
4
|
+
including www.isotc211.org and resource sites such as geolexica.com.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
## Contributing
|
|
8
|
+
|
|
9
|
+
Bug reports and pull requests are welcome on GitHub
|
|
10
|
+
at https://github.com/riboseinc/jekyll-theme-open-project.
|
|
11
|
+
|
|
12
|
+
This project is intended to be a safe, welcoming space for collaboration,
|
|
13
|
+
and contributors are expected to adhere
|
|
14
|
+
to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## Theme development
|
|
18
|
+
|
|
19
|
+
Generally, this directory is setup like a Jekyll site. To set it up,
|
|
20
|
+
run `bundle install`.
|
|
21
|
+
|
|
22
|
+
To experiment with this code, add content (projects, software, specs)
|
|
23
|
+
and run `bundle exec jekyll serve`. This starts a Jekyll server
|
|
24
|
+
using this theme at `http://localhost:4000`.
|
|
25
|
+
|
|
26
|
+
Put your layouts in `_layouts`, your includes in `_includes`,
|
|
27
|
+
your sass files in `_sass` and any other assets in `assets`.
|
|
28
|
+
|
|
29
|
+
Add pages, documents, data, etc. like normal to test your theme's contents.
|
|
30
|
+
|
|
31
|
+
As you make modifications to your theme and to your content, your site will
|
|
32
|
+
regenerate and you should see the changes in the browser after a refresh,
|
|
33
|
+
like normal.
|
|
34
|
+
|
|
35
|
+
When your theme is released, only files specified with gemspec file
|
|
36
|
+
will be included. If you modify theme to add more directories that
|
|
37
|
+
need to be included in the gem, edit regexp in the gemspec.
|
|
38
|
+
|
|
39
|
+
### Building and releasing
|
|
40
|
+
|
|
41
|
+
#### Manual test during development
|
|
42
|
+
|
|
43
|
+
When you’re working on visual aspects of the theme, it’s useful
|
|
44
|
+
to see how it would affect the end result (a site *built with* this theme).
|
|
45
|
+
|
|
46
|
+
Here’s how to develop the theme while simultaneously previewing the changes
|
|
47
|
+
on a site. The sequence would be as follows, assuming you have a local copy
|
|
48
|
+
of this repo and have a Jekyll site using this theme:
|
|
49
|
+
|
|
50
|
+
1. For the Jekyll site, change Gemfile to point to local copy
|
|
51
|
+
of the theme (the root of this repo) and run `bundle`.
|
|
52
|
+
|
|
53
|
+
For example, you’d change `gem "jekyll-theme-open-project", "~> 1.0.6"`
|
|
54
|
+
to `gem "jekyll-theme-open-project", :path => "../jekyll-theme-open-project"`.
|
|
55
|
+
The relative path assumes your site root and theme root are sibling directories.
|
|
56
|
+
|
|
57
|
+
2. Run `bundle exec jekyll serve` to start Jekyll’s development server.
|
|
58
|
+
|
|
59
|
+
3. Make changes to both theme and site directory contents.
|
|
60
|
+
|
|
61
|
+
4. If needed, kill with Ctrl+C then relaunch the serve command
|
|
62
|
+
to apply the changes you made to the theme
|
|
63
|
+
(it may not reload automatically if changes only affect the theme and not the site
|
|
64
|
+
you’re serving).
|
|
65
|
+
|
|
66
|
+
4. Once you’re satisfied, release a new version of the theme — see below.
|
|
67
|
+
|
|
68
|
+
5. (To later bump the site to this latest version: revert the Gemfile change,
|
|
69
|
+
update theme dependency version to the one you’ve just released,
|
|
70
|
+
run `bundle --full-index` to update lockfile properly,
|
|
71
|
+
and your site is ready to go.)
|
|
72
|
+
|
|
73
|
+
#### Releasing
|
|
74
|
+
|
|
75
|
+
Make sure theme works: build script is under construction,
|
|
76
|
+
so use good judgement and thorough manual testing.
|
|
77
|
+
|
|
78
|
+
1. First, update version number in .gemspec within this repo’s root.
|
|
79
|
+
|
|
80
|
+
2. Then, execute `./develop/release`. This does the following:
|
|
81
|
+
|
|
82
|
+
* Builds new gem version
|
|
83
|
+
* Pushes gem to rubygems.org
|
|
84
|
+
* Creates new version tag in this repository
|
|
85
|
+
* Pushes changes to GitHub
|
|
86
|
+
|
|
87
|
+
#### Testing with build script (TBD)
|
|
88
|
+
|
|
89
|
+
May not work at the moment — see #26. Please use the other test option.
|
|
90
|
+
|
|
91
|
+
To check your theme, run:
|
|
92
|
+
|
|
93
|
+
./develop/build
|
|
94
|
+
|
|
95
|
+
It’ll build Jekyll site and run some checks, like HTML markup validation.
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
## License
|
|
99
|
+
|
|
100
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/_config.yml
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
title: "An ISO TC 211 site"
|
|
2
|
+
|
|
3
|
+
email: open.source@ribose.com
|
|
4
|
+
|
|
5
|
+
description: >-
|
|
6
|
+
Welcome to this ISO/TC 211 site.
|
|
7
|
+
|
|
8
|
+
# The protocol + domain name of the site
|
|
9
|
+
# url: "https://geolexica.com"
|
|
10
|
+
|
|
11
|
+
includes_dir: .
|
|
12
|
+
|
|
13
|
+
markdown: kramdown
|
|
14
|
+
|
|
15
|
+
permalink: /blog/:month-:day-:year/:title/
|
|
16
|
+
|
|
17
|
+
# Social profile navigation
|
|
18
|
+
# social:
|
|
19
|
+
# links:
|
|
20
|
+
# - url: https://twitter.com/…
|
|
21
|
+
# - url: https://github.com/…
|
|
22
|
+
# - url: https://www.facebook.com/groups/…
|
|
23
|
+
# - url: https://www.linkedin.com/groups/…
|
|
24
|
+
|
|
25
|
+
# Main site navigation.
|
|
26
|
+
# Layouts and pages can include nav_items array referring to link IDs in frontmatter
|
|
27
|
+
nav:
|
|
28
|
+
home:
|
|
29
|
+
url: /
|
|
30
|
+
title: Home
|
|
31
|
+
about:
|
|
32
|
+
url: /about
|
|
33
|
+
title: About
|
|
34
|
+
|
|
35
|
+
# Footer navigation
|
|
36
|
+
footer_nav:
|
|
37
|
+
- url: https://committee.iso.org/home/tc211
|
|
38
|
+
title: ISO/TC 211
|
|
39
|
+
|
|
40
|
+
collections:
|
|
41
|
+
pages:
|
|
42
|
+
output: true
|
|
43
|
+
permalink: /:path/
|
|
44
|
+
|
|
45
|
+
exclude:
|
|
46
|
+
- Gemfile
|
|
47
|
+
- Gemfile.lock
|
|
48
|
+
- .sass-cache/
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<div class="copyright">
|
|
2
|
+
<p class="year">
|
|
3
|
+
© 2018 ISO/TC 211.
|
|
4
|
+
</p>
|
|
5
|
+
|
|
6
|
+
<p class="message">
|
|
7
|
+
All rights reserved. Unless otherwise specified, no part of this
|
|
8
|
+
site or its documents may be reproduced or utilized otherwise in any form or by any
|
|
9
|
+
means, electronic or mechanical, including photocopying, or posting on the
|
|
10
|
+
internet or an intranet, without prior written permission. Permission can
|
|
11
|
+
be requested from the address below.
|
|
12
|
+
</p>
|
|
13
|
+
|
|
14
|
+
<div class="contact-info">
|
|
15
|
+
<p class="name">ISO/TC 211</p>
|
|
16
|
+
<p class="address">
|
|
17
|
+
Some place<br />
|
|
18
|
+
In beautiful<br />
|
|
19
|
+
Geneva<br />
|
|
20
|
+
Switzerland<br />
|
|
21
|
+
<br />
|
|
22
|
+
<a href="mailto:copyright@iso.org">copyright@iso.org</a><br />
|
|
23
|
+
<a href="https://www.iso.org">www.iso.org</a>
|
|
24
|
+
</p>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
3
|
+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
4
|
+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
5
|
+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
6
|
+
|
|
7
|
+
ga('create', '{{ site.google_analytics }}', 'auto');
|
|
8
|
+
ga('send', 'pageview');
|
|
9
|
+
|
|
10
|
+
</script>
|
|
11
|
+
|
data/_includes/head.html
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<head>
|
|
2
|
+
<meta charset="utf-8">
|
|
3
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
5
|
+
|
|
6
|
+
<title>{{ site.title }}: {% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
|
7
|
+
|
|
8
|
+
<link rel="icon" type="image/png" href="/images/favicon-32x32.png" sizes="32x32" />
|
|
9
|
+
<link rel="icon" type="image/png" href="/images/android-chrome-192x192.png" sizes="192x192" />
|
|
10
|
+
<link rel="icon" type="image/png" href="/images/favicon-96x96.png" sizes="96x96" />
|
|
11
|
+
<link rel="icon" type="image/png" href="/images/favicon-16x16.png" sizes="16x16" />
|
|
12
|
+
<link rel="shortcut icon" href="/favicon.ico" />
|
|
13
|
+
|
|
14
|
+
<meta name="msapplication-TileColor" content="#ffffff" />
|
|
15
|
+
<meta name="msapplication-TileImage" content="/images/mstile-144x144.png" />
|
|
16
|
+
<meta name="msapplication-config" content="/browserconfig.xml" />
|
|
17
|
+
<meta name="theme-color" content="#ffffff" />
|
|
18
|
+
|
|
19
|
+
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-LRlmVvLKVApDVGuspQFnRQJjkv0P7/YFrw84YYQtmYG4nK8c+M+NlmYDCv0rKWpG" crossorigin="anonymous">
|
|
20
|
+
<link rel="stylesheet" type="text/css" href="{{ "/assets/style.css" | relative_url }}" />
|
|
21
|
+
|
|
22
|
+
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
23
|
+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
24
|
+
<!--[if lt IE 9]>
|
|
25
|
+
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
|
26
|
+
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
|
27
|
+
<![endif]-->
|
|
28
|
+
|
|
29
|
+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | relative_url }}" />
|
|
30
|
+
|
|
31
|
+
{% if jekyll.environment == 'production' and site.google_analytics %}
|
|
32
|
+
{% include google-analytics.html %}
|
|
33
|
+
{% endif %}
|
|
34
|
+
|
|
35
|
+
</head>
|
|
File without changes
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
|
|
3
|
+
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
|
4
|
+
{% include head.html %}
|
|
5
|
+
|
|
6
|
+
<body class="{{ page.bodyClass | default: layout.bodyClass }}">
|
|
7
|
+
<header>
|
|
8
|
+
<div class="site-headline">
|
|
9
|
+
<div class="parent-org-reference">
|
|
10
|
+
<a href="/" class="logo-link"><img src="{{ "/assets/logo-iso-noninverted.svg" | relative_url }}"></a>
|
|
11
|
+
</div>
|
|
12
|
+
|
|
13
|
+
<div class="site-title">
|
|
14
|
+
<h1>{{ site.title }}</h1>
|
|
15
|
+
<p>
|
|
16
|
+
<span class="description">
|
|
17
|
+
The authoritative
|
|
18
|
+
geographic information terminology database
|
|
19
|
+
</span>
|
|
20
|
+
<span class="committee">
|
|
21
|
+
from ISO/TC 211
|
|
22
|
+
</span>
|
|
23
|
+
</p>
|
|
24
|
+
</div>
|
|
25
|
+
|
|
26
|
+
<ul role="nav">
|
|
27
|
+
{% assign nav_items = page.nav_items | default: layout.nav_items %}
|
|
28
|
+
{% for item in nav_items %}
|
|
29
|
+
<li><a href="{{ site.nav[item].url | relative_url }}">{{ site.nav[item].title }}</a>
|
|
30
|
+
{% endfor %}
|
|
31
|
+
</ul>
|
|
32
|
+
</div>
|
|
33
|
+
</header>
|
|
34
|
+
|
|
35
|
+
<main>
|
|
36
|
+
{{ content }}
|
|
37
|
+
</main>
|
|
38
|
+
|
|
39
|
+
<footer>
|
|
40
|
+
<ul role="nav">
|
|
41
|
+
{% for link in site.social.links %}
|
|
42
|
+
<li>
|
|
43
|
+
<a href="{{ link.url }}">
|
|
44
|
+
{% if link.url contains "twitter.com" %}
|
|
45
|
+
<i class="fab fa-twitter"></i>
|
|
46
|
+
{% elsif link.url contains "github.com" %}
|
|
47
|
+
<i class="fab fa-github"></i>
|
|
48
|
+
{% elsif link.url contains "facebook.com" %}
|
|
49
|
+
<i class="fab fa-facebook"></i>
|
|
50
|
+
{% elsif link.url contains "linkedin.com" %}
|
|
51
|
+
<i class="fab fa-linkedin"></i>
|
|
52
|
+
{% else %}
|
|
53
|
+
{{ link.title }}
|
|
54
|
+
{% endif %}
|
|
55
|
+
</a>
|
|
56
|
+
{% endfor %}
|
|
57
|
+
{% for item in site.footer_nav %}
|
|
58
|
+
<li><a href="{{ item.url }}">{{ item.title }}</a>
|
|
59
|
+
{% endfor %}
|
|
60
|
+
</ul>
|
|
61
|
+
|
|
62
|
+
<div class="powered-by">
|
|
63
|
+
<span class="powered-by-text">Powered by</span>
|
|
64
|
+
<a href="{{ site.powered_by.url }}" class="powered-by-logo"><img src="{{ site.powered_by.logo_path }}" alt="{{ site.powered_by.title }}"/></a>
|
|
65
|
+
</div>
|
|
66
|
+
|
|
67
|
+
<p class="legal">
|
|
68
|
+
© All Rights Reserved
|
|
69
|
+
</p>
|
|
70
|
+
|
|
71
|
+
<div class="logo">
|
|
72
|
+
<a href="https://www.iso.org/"><img src="{{ "/assets/logo-iso-noninverted.svg" | relative_url }}" alt="ISO organization"/></a>
|
|
73
|
+
</div>
|
|
74
|
+
</footer>
|
|
75
|
+
|
|
76
|
+
{% include script.html %}
|
|
77
|
+
</body>
|
|
78
|
+
</html>
|
data/_layouts/home.html
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
bodyClass: home
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<section class="news">
|
|
7
|
+
<h2 class="section-title">News</h2>
|
|
8
|
+
|
|
9
|
+
<div class="items">
|
|
10
|
+
{% for post in site.posts %}
|
|
11
|
+
<article class="news-item-card">
|
|
12
|
+
<h3 class="title"><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h3>
|
|
13
|
+
<div class="excerpt">{{ post.excerpt }}</div>
|
|
14
|
+
</article>
|
|
15
|
+
{% endfor %}
|
|
16
|
+
</div>
|
|
17
|
+
</section>
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
data/_pages/404.adoc
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: page
|
|
3
|
+
title: "Page not found"
|
|
4
|
+
permalink: "/404.html"
|
|
5
|
+
---
|
|
6
|
+
:page-liquid:
|
|
7
|
+
|
|
8
|
+
== Page not found
|
|
9
|
+
|
|
10
|
+
The page you were looking does not exist here.
|
|
11
|
+
|
|
12
|
+
Go to the link:{{ site.url | relative_url }}[Home] page to start again.
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
== Copyright
|
|
16
|
+
|
|
17
|
+
++++
|
|
18
|
+
{% include _includes/copyright.html %}
|
|
19
|
+
++++
|
data/_sass/home.scss
ADDED
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
body.home {
|
|
2
|
+
> main {
|
|
3
|
+
> .news {
|
|
4
|
+
.items {
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-flow: row nowrap;
|
|
7
|
+
justify-content: flex-start;
|
|
8
|
+
align-items: stretch;
|
|
9
|
+
overflow-y: auto;
|
|
10
|
+
}
|
|
11
|
+
.news-item-card {
|
|
12
|
+
flex-basis: 20em;
|
|
13
|
+
max-width: 90vw;
|
|
14
|
+
border-radius: .5em;
|
|
15
|
+
padding: 0 .75em;
|
|
16
|
+
border: 1px solid #f0f0f0;
|
|
17
|
+
margin-right: 1em;
|
|
18
|
+
|
|
19
|
+
.title {
|
|
20
|
+
font-weight: normal;
|
|
21
|
+
a {
|
|
22
|
+
text-decoration: none;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
div.excerpt p {
|
|
27
|
+
font-size: 90%;
|
|
28
|
+
line-height: 1.6;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
> .browse-concepts {
|
|
34
|
+
flex-shrink: 0;
|
|
35
|
+
|
|
36
|
+
display: flex;
|
|
37
|
+
flex-flow: column nowrap;
|
|
38
|
+
align-items: flex-start;
|
|
39
|
+
|
|
40
|
+
background: rgba(white, 0.8);
|
|
41
|
+
|
|
42
|
+
input.search-string,
|
|
43
|
+
a.browse-concepts {
|
|
44
|
+
background-color: #f7f7f7;
|
|
45
|
+
padding: .5em .75em;
|
|
46
|
+
border-radius: .5em;
|
|
47
|
+
border: 0;
|
|
48
|
+
cursor: pointer;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.section-title {
|
|
52
|
+
span {
|
|
53
|
+
white-space: nowrap;
|
|
54
|
+
margin-right: 1em;
|
|
55
|
+
}
|
|
56
|
+
a {
|
|
57
|
+
white-space: nowrap;
|
|
58
|
+
text-transform: none;
|
|
59
|
+
font-size: 90%;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
a.browse-concepts {
|
|
64
|
+
text-decoration: none;
|
|
65
|
+
background: $linkColor;
|
|
66
|
+
color: $linkColorInverse;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.search-controls {
|
|
70
|
+
flex-shrink: 0;
|
|
71
|
+
|
|
72
|
+
display: flex;
|
|
73
|
+
flex-flow: row wrap;
|
|
74
|
+
align-items: center;
|
|
75
|
+
margin-bottom: 1em;
|
|
76
|
+
|
|
77
|
+
input.search-string {
|
|
78
|
+
margin-right: 1em;
|
|
79
|
+
margin-left: -.5em;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.refine {
|
|
83
|
+
display: flex;
|
|
84
|
+
flex-flow: row wrap;
|
|
85
|
+
align-items: center;
|
|
86
|
+
|
|
87
|
+
> * {
|
|
88
|
+
display: flex;
|
|
89
|
+
flex-flow: row nowrap;
|
|
90
|
+
align-items: center;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
input[type=checkbox], label {
|
|
94
|
+
cursor: pointer;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.search-results {
|
|
100
|
+
flex: 1;
|
|
101
|
+
align-self: stretch;
|
|
102
|
+
overflow: auto;
|
|
103
|
+
|
|
104
|
+
padding-bottom: 1em;
|
|
105
|
+
|
|
106
|
+
table {
|
|
107
|
+
width: 100%;
|
|
108
|
+
font-size: 90%;
|
|
109
|
+
|
|
110
|
+
tr.main {
|
|
111
|
+
font-weight: bold;
|
|
112
|
+
td {
|
|
113
|
+
border-top: 2px solid #f0f0f0;
|
|
114
|
+
}
|
|
115
|
+
&:first-child td {
|
|
116
|
+
border-top: 0;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
td, th {
|
|
121
|
+
padding: .5em;
|
|
122
|
+
&:nth-child(1) { // ID
|
|
123
|
+
width: 3.5em;
|
|
124
|
+
}
|
|
125
|
+
&:nth-child(2) { // Language
|
|
126
|
+
width: 3em;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
th {
|
|
131
|
+
background: #f7f7f7;
|
|
132
|
+
font-weight: bold;
|
|
133
|
+
text-align: left;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
td {
|
|
137
|
+
a {
|
|
138
|
+
text-decoration: none;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
&.browser-expandable {
|
|
147
|
+
> main {
|
|
148
|
+
> .browse-concepts {
|
|
149
|
+
.section-title {
|
|
150
|
+
display: flex;
|
|
151
|
+
flex-flow: row wrap;
|
|
152
|
+
align-items: center;
|
|
153
|
+
|
|
154
|
+
button.toggle {
|
|
155
|
+
background: transparent;
|
|
156
|
+
border: 0;
|
|
157
|
+
cursor: pointer;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
&.browser-expanded {
|
|
165
|
+
> header {
|
|
166
|
+
margin-top: -1em;
|
|
167
|
+
padding-bottom: 0;
|
|
168
|
+
|
|
169
|
+
.site-title .description {
|
|
170
|
+
transition: width .5s linear;
|
|
171
|
+
width: 0;
|
|
172
|
+
height: 0;
|
|
173
|
+
overflow: hidden;
|
|
174
|
+
display: inline-block;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
> main {
|
|
178
|
+
flex-shrink: 1;
|
|
179
|
+
min-height: 300px;
|
|
180
|
+
// ^^ value out of thin air approximating minimally acceptable main height,
|
|
181
|
+
// otherwise on very short viewports footer overlaps main due to its flex-shrink: 1,
|
|
182
|
+
// which we want to restrict main height to viewport so that search results
|
|
183
|
+
// can be scrolled within their own div.
|
|
184
|
+
// Another (better?) solution could be to scope flex-shrink: 1
|
|
185
|
+
// to tall enough viewports with a media query.
|
|
186
|
+
|
|
187
|
+
> section.browse-concepts {
|
|
188
|
+
flex-shrink: 1;
|
|
189
|
+
min-height: 256px;
|
|
190
|
+
padding-bottom: 0;
|
|
191
|
+
}
|
|
192
|
+
> section.news {
|
|
193
|
+
display: none;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
$bodyFontFamily: Helvetica, sans-serif;
|
|
2
|
+
$bigscreenBreakpoint: 900px;
|
|
3
|
+
$logoOffset: 112px;
|
|
4
|
+
$logoSize: 100px;
|
|
5
|
+
|
|
6
|
+
$textColor: black;
|
|
7
|
+
|
|
8
|
+
$linkColor: blue;
|
|
9
|
+
$linkColorInverse: white;
|
|
10
|
+
|
|
11
|
+
@mixin titleFontFamily($useBold: false) {
|
|
12
|
+
font-family: 'Tienne', Georgia, serif;
|
|
13
|
+
|
|
14
|
+
@if $useBold == true {
|
|
15
|
+
font-weight: 700;
|
|
16
|
+
} @else {
|
|
17
|
+
font-weight: 400;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
body {
|
|
22
|
+
font-family: $bodyFontFamily;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
input, textarea, button {
|
|
26
|
+
font-size: inherit;
|
|
27
|
+
font-family: inherit;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
html {
|
|
31
|
+
height: 100%;
|
|
32
|
+
display: flex;
|
|
33
|
+
flex-flow: column nowrap;
|
|
34
|
+
align-items: stretch;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.section-title {
|
|
38
|
+
font-size: 18px;
|
|
39
|
+
font-weight: normal;
|
|
40
|
+
text-transform: uppercase;
|
|
41
|
+
flex-shrink: 0;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
@import 'offsets';
|
|
45
|
+
@import 'main';
|
|
46
|
+
@import 'home';
|
|
47
|
+
@import 'concepts';
|
|
48
|
+
@import 'concept';
|
data/_sass/main.scss
ADDED
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
// Main layout
|
|
2
|
+
// ===========
|
|
3
|
+
|
|
4
|
+
body > header,
|
|
5
|
+
body > main > section {
|
|
6
|
+
padding-bottom: 1em;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
body {
|
|
10
|
+
$footerH: $logoSize + 40px;
|
|
11
|
+
|
|
12
|
+
flex: 1;
|
|
13
|
+
|
|
14
|
+
display: flex;
|
|
15
|
+
flex-flow: column nowrap;
|
|
16
|
+
align-items: stretch;
|
|
17
|
+
margin-bottom: -$footerH;
|
|
18
|
+
|
|
19
|
+
> footer {
|
|
20
|
+
flex-shrink: 0;
|
|
21
|
+
height: $footerH;
|
|
22
|
+
margin-top: 1em;
|
|
23
|
+
font-size: 90%;
|
|
24
|
+
line-height: 1.6;
|
|
25
|
+
|
|
26
|
+
.logo {
|
|
27
|
+
width: $logoOffset;
|
|
28
|
+
margin-left: 0;
|
|
29
|
+
|
|
30
|
+
img {
|
|
31
|
+
width: $logoSize;
|
|
32
|
+
height: $logoSize;
|
|
33
|
+
display: block;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.powered-by {
|
|
38
|
+
width: $logoOffset;
|
|
39
|
+
|
|
40
|
+
.powered-by-text {
|
|
41
|
+
font-size: 0.5em;
|
|
42
|
+
text-transform: uppercase;
|
|
43
|
+
font-weight: 600;
|
|
44
|
+
display: block;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
img {
|
|
48
|
+
width: $logoSize;
|
|
49
|
+
display: block;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.legal {
|
|
54
|
+
white-space: nowrap;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
ul[role=nav] {
|
|
58
|
+
list-style: none;
|
|
59
|
+
margin: 0;
|
|
60
|
+
padding: 0;
|
|
61
|
+
display: flex;
|
|
62
|
+
flex-flow: row wrap;
|
|
63
|
+
|
|
64
|
+
li {
|
|
65
|
+
margin-left: 1em;
|
|
66
|
+
white-space: nowrap;
|
|
67
|
+
&:first-child {
|
|
68
|
+
margin-left: 0;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
@media screen and (min-width: $bigscreenBreakpoint) {
|
|
74
|
+
display: flex;
|
|
75
|
+
flex-flow: row nowrap;
|
|
76
|
+
align-items: center;
|
|
77
|
+
justify-content: flex-end;
|
|
78
|
+
|
|
79
|
+
> * {
|
|
80
|
+
margin-left: 2em;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
> header {
|
|
86
|
+
flex-shrink: 0;
|
|
87
|
+
|
|
88
|
+
.site-headline {
|
|
89
|
+
display: flex;
|
|
90
|
+
flex-flow: row nowrap;
|
|
91
|
+
|
|
92
|
+
.parent-org-reference {
|
|
93
|
+
display: flex;
|
|
94
|
+
flex-flow: column nowrap;
|
|
95
|
+
justify-content: space-between;
|
|
96
|
+
width: $logoOffset;
|
|
97
|
+
|
|
98
|
+
.logo-link {
|
|
99
|
+
height: $logoOffset;
|
|
100
|
+
width: $logoOffset;
|
|
101
|
+
display: flex;
|
|
102
|
+
flex-flow: column nowrap;
|
|
103
|
+
align-items: center;
|
|
104
|
+
justify-content: center;
|
|
105
|
+
|
|
106
|
+
img {
|
|
107
|
+
display: block;
|
|
108
|
+
height: $logoSize;
|
|
109
|
+
width: $logoSize;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
.site-title {
|
|
114
|
+
flex: 1;
|
|
115
|
+
display: flex;
|
|
116
|
+
flex-flow: column nowrap;
|
|
117
|
+
|
|
118
|
+
h1 {
|
|
119
|
+
@include titleFontFamily(true);
|
|
120
|
+
|
|
121
|
+
font-size: 210%;
|
|
122
|
+
margin: 0;
|
|
123
|
+
margin-top: 1em;
|
|
124
|
+
margin-bottom: .2em;
|
|
125
|
+
margin-left: -.12em; // Visual alignment of capital G
|
|
126
|
+
letter-spacing: -.02em;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
p {
|
|
130
|
+
margin: 0;
|
|
131
|
+
text-transform: uppercase;
|
|
132
|
+
letter-spacing: .04em;
|
|
133
|
+
|
|
134
|
+
font-size: 80%;
|
|
135
|
+
line-height: 1.6;
|
|
136
|
+
|
|
137
|
+
padding-bottom: 1em;
|
|
138
|
+
flex: 1;
|
|
139
|
+
|
|
140
|
+
.committee {
|
|
141
|
+
white-space: nowrap;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
ul[role=nav] {
|
|
147
|
+
align-self: flex-end;
|
|
148
|
+
|
|
149
|
+
display: flex;
|
|
150
|
+
flex-flow: column nowrap;
|
|
151
|
+
align-items: flex-end;
|
|
152
|
+
margin: 0 0 0 .4em;
|
|
153
|
+
padding: 0 0 1em 0;
|
|
154
|
+
list-style: none;
|
|
155
|
+
|
|
156
|
+
font-size: 80%;
|
|
157
|
+
line-height: 1.6;
|
|
158
|
+
text-transform: uppercase;
|
|
159
|
+
|
|
160
|
+
li {
|
|
161
|
+
margin: 0 0 0 1em;
|
|
162
|
+
padding: 0;
|
|
163
|
+
a {
|
|
164
|
+
text-decoration: none;
|
|
165
|
+
font-weight: bold;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
@media screen and (max-width: $bigscreenBreakpoint) {
|
|
172
|
+
.site-headline {
|
|
173
|
+
.parent-org-reference .logo-link img {
|
|
174
|
+
visibility: hidden;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
> main {
|
|
181
|
+
flex: 1 0 auto;
|
|
182
|
+
display: flex;
|
|
183
|
+
flex-flow: column nowrap;
|
|
184
|
+
}
|
|
185
|
+
}
|
data/_sass/offsets.scss
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
// Offsets
|
|
2
|
+
// =======
|
|
3
|
+
|
|
4
|
+
$sideOffsetBase: 15vw;
|
|
5
|
+
|
|
6
|
+
body > header {
|
|
7
|
+
// Hanging logo on the left
|
|
8
|
+
margin: 0 $sideOffsetBase 0 calc(#{$sideOffsetBase} - #{$logoOffset});
|
|
9
|
+
}
|
|
10
|
+
body > footer {
|
|
11
|
+
padding: 0 $sideOffsetBase 0 $sideOffsetBase;
|
|
12
|
+
|
|
13
|
+
// Hanging logo on the right
|
|
14
|
+
@media screen and (min-width: $bigscreenBreakpoint) {
|
|
15
|
+
padding: 0 calc(#{$sideOffsetBase} - #{$logoOffset}) 0 calc(#{$sideOffsetBase} - 1em);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
body.home > main > section.browse-concepts {
|
|
20
|
+
.section-title, .search-controls {
|
|
21
|
+
margin-left: $sideOffsetBase;
|
|
22
|
+
margin-right: $sideOffsetBase;
|
|
23
|
+
}
|
|
24
|
+
> a.browse-concepts {
|
|
25
|
+
margin-left: calc(#{$sideOffsetBase} - .75em);
|
|
26
|
+
display: block;
|
|
27
|
+
}
|
|
28
|
+
.search-results.status-message {
|
|
29
|
+
padding-left: $sideOffsetBase;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
body.home.browser-expandable > main > section.browse-concepts {
|
|
34
|
+
.section-title {
|
|
35
|
+
margin-left: 15vw;
|
|
36
|
+
|
|
37
|
+
@media screen and (min-width: $bigscreenBreakpoint) {
|
|
38
|
+
margin-left: calc(#{$sideOffsetBase} - #{$logoOffset});
|
|
39
|
+
|
|
40
|
+
button.toggle {
|
|
41
|
+
width: $logoOffset;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
body.home > main > .news {
|
|
48
|
+
.section-title {
|
|
49
|
+
margin-left: $sideOffsetBase;
|
|
50
|
+
margin-right: $sideOffsetBase;
|
|
51
|
+
}
|
|
52
|
+
.items {
|
|
53
|
+
.news-item-card:first-child {
|
|
54
|
+
margin-left: calc(#{$sideOffsetBase} - .75em);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
body.post, body.page {
|
|
60
|
+
> main > * {
|
|
61
|
+
margin-left: $sideOffsetBase;
|
|
62
|
+
margin-right: $sideOffsetBase;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
body.concepts > main > div {
|
|
67
|
+
> h2,
|
|
68
|
+
> .sectionbody > .paragraph {
|
|
69
|
+
margin-left: $sideOffsetBase;
|
|
70
|
+
margin-right: $sideOffsetBase;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
body.concept > main {
|
|
75
|
+
> header h2 {
|
|
76
|
+
margin-left: $sideOffsetBase;
|
|
77
|
+
margin-right: $sideOffsetBase;
|
|
78
|
+
}
|
|
79
|
+
@media screen and (min-width: $bigscreenBreakpoint) {
|
|
80
|
+
.field {
|
|
81
|
+
margin-left: calc(#{$sideOffsetBase} - #{$logoOffset});
|
|
82
|
+
margin-right: $sideOffsetBase;
|
|
83
|
+
|
|
84
|
+
.field-name {
|
|
85
|
+
width: $logoOffset;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
.field.lang-ara {
|
|
89
|
+
margin-right: calc(#{$sideOffsetBase} - #{$logoOffset});
|
|
90
|
+
margin-left: $sideOffsetBase;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1"
|
|
4
|
+
id="svg2" inkscape:output_extension="org.inkscape.output.svg.inkscape" inkscape:version="0.46" sodipodi:docname="Logo der ISO.svg" sodipodi:version="0.32" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 120 111.9"
|
|
6
|
+
style="enable-background:new 0 0 120 111.9;" xml:space="preserve">
|
|
7
|
+
<style type="text/css">
|
|
8
|
+
.st0{fill:#2A3E92;}
|
|
9
|
+
</style>
|
|
10
|
+
<g id="g2537_1_" transform="translate(8.0000213,-8.0007263)">
|
|
11
|
+
<path id="path45_1_" class="st0" d="M-37.6,62.5c0.7,1,0.6,2.4,0.8,3.6c0,2.6,0.2,5.6-0.3,8.2c-0.2,1.1-0.9,2.2-2.1,2.6
|
|
12
|
+
c-1.8,0.8-4.2,0.6-5.9-0.4c-1.4-1-1.6-2.6-1.7-4.2c-0.1-3.1-0.4-6.4,0.5-9.2c0.7-1.7,2.5-2.2,4.2-2.3
|
|
13
|
+
C-40.4,60.8-38.7,61.1-37.6,62.5z"/>
|
|
14
|
+
<path id="path47_1_" class="st0" d="M-118.7,114.9V23h100v91.9H-118.7z M-66,34c-1.2-0.1-2.7-0.2-4,0c-0.5,0-1.1,0-1.7,0
|
|
15
|
+
c-10.8,0.9-20.7,6.5-26.9,16c0.4,0,1,0.1,1.4,0c1.1-1.5,2.3-3,3.6-4.4c1.2-1.1,2.2-2.2,3.5-3c1.2,0.8,2.5,1.4,3.6,2.1
|
|
16
|
+
c-1.4,1.7-2.8,3.5-3.9,5.4c0.3,0.1,0.9,0.1,1.3,0c1.1-1.7,2.3-3.3,3.8-4.8c1.9,0.7,3.8,1.5,5.8,2l0.2,0.2l-1.1,2.6
|
|
17
|
+
c0.5,0.1,0.8,0,1.3,0c0.4-0.8,0.7-1.6,1.2-2.4c2.6,0.6,5.3,0.9,8.1,1c0.4,0.3,0.1,1,0.2,1.4h1.2c0.1-0.4,0-0.9,0.1-1.3
|
|
18
|
+
c2.6-0.1,5.3-0.4,7.8-1l0.2,0l1.2,2.3c0.4,0,0.9,0.1,1.3-0.1l-1.1-2.6l0.1-0.1c2.1-0.5,4-1.3,6-2.2c1.4,1.5,2.7,3.2,3.9,4.9
|
|
19
|
+
c0.5,0,1,0,1.3-0.1c-0.5-1-1.2-2-1.9-2.8c-0.6-0.9-1.2-1.6-2-2.4v-0.2l3.1-1.8l0.4-0.2c2.7,2.1,5.2,4.7,7.1,7.5c0.5,0,1,0.2,1.4,0
|
|
20
|
+
c-6-9.1-15.9-15-26.6-15.9H-66L-66,34z M-61.4,36L-61.4,36c-3.9,3-10.2,3.2-14.3,0.6c-0.2-0.2-0.7-0.3-0.7-0.6
|
|
21
|
+
C-71.7,34.9-66.1,34.8-61.4,36z M-49.1,41.5l-0.1,0.2l-3.1,1.7h-0.2c-2.4-2.4-5.2-4.5-8-6.2c0.1-0.3,0.5-0.5,0.9-0.8
|
|
22
|
+
C-55.8,37.5-52.3,39.2-49.1,41.5z M-77.3,37.2c-2.8,1.7-5.5,3.8-8,6.3c-1.2-0.4-2.3-1.1-3.4-1.9v-0.1c2.8-2.1,6-3.7,9.3-4.8
|
|
23
|
+
c0.1-0.1,0.2-0.3,0.4-0.3v0.1c0.4,0.1,0.6-0.3,0.9,0C-77.9,36.8-77.5,37-77.3,37.2z M-53.8,44l-0.1,0.1c-1.7,0.8-3.5,1.5-5.5,1.9
|
|
24
|
+
c-1.4-2.4-2.9-4.8-4.6-7c0.6-0.4,1.4-0.6,2.1-1C-59,39.5-56.1,41.6-53.8,44z M-74,38.9l-0.1,0.4c-1.7,2.2-3,4.5-4.4,6.8l-0.2,0
|
|
25
|
+
c-1.8-0.5-3.6-1.1-5.3-1.8l0.1-0.3c2.5-2.4,5.1-4.3,7.9-5.9C-75.3,38.3-74.6,38.6-74,38.9z M-69.6,39.7c0.1,2.3,0,5,0,7.5
|
|
26
|
+
c-1.3,0.2-2.4,0-3.6-0.1c-1.2-0.2-2.7-0.3-3.9-0.7c1.3-2.5,2.8-4.8,4.7-7L-69.6,39.7z M-65.4,39.4c1.7,2.2,3.5,4.5,4.6,7
|
|
27
|
+
c-2.4,0.6-4.9,0.9-7.4,0.9c-0.1-2.4,0-5,0-7.5C-67.3,39.6-66.3,39.5-65.4,39.4z M-69,54.6c-4.9-2.1-11.8-2.3-16.3,0.9
|
|
28
|
+
c-2.9,2.2-3.8,6-3,9.4c0.6,3.2,3.6,5.6,6.5,6.7c4,1.4,8.2,2.5,12.2,3.9c0.4,0.2,0.9,0.6,0.9,1.1c0,0.4-0.4,0.6-0.7,0.8
|
|
29
|
+
c-4.2,1.2-8.8,0.3-11.8-3c-0.4-0.4-0.6-1-0.9-1.4l-6.1,0c-0.1,3.6-0.1,7.8,0,11.4l6.7,0l0.1-2.2c0.8,0.4,1.5,0.8,2.3,1.2
|
|
30
|
+
c4.7,2,10.7,2.4,15.3,0c3.4-1.9,5.2-5.5,4.7-9.4c-0.5-3.8-4.1-7.3-7.7-8.2l-10.9-3.2l-0.8-0.4c-0.4-0.3-0.6-0.7-0.5-1.2
|
|
31
|
+
c0.9-1.5,2.8-1,4.3-1c3.1,0.4,6.4,1.5,8.2,4.4c2,0,4.3,0,6.4,0c0.1-3.7,0-6.9-0.1-10.6c-2,0-4.5,0-6.5,0c-0.1,0.5,0.1,1.3-0.1,1.8
|
|
32
|
+
L-69,54.6z M-31,56.1c-5.8-3.8-14.7-4-20.7-0.6c-3.3,1.7-5.4,5.1-6.1,8.5c-1.2,5.7-0.9,12.5,3.4,16.7c5,4.5,12.3,5.5,18.8,3.6
|
|
33
|
+
c0.3-0.1,1.3-0.3,2-0.7l0.2-0.1c2-0.9,3.9-2.2,5.4-4.1c3.3-4.9,3.5-12.3,1.5-17.9C-27.3,59.4-29,57.5-31,56.1z M-107.2,53.4l-2.8,0
|
|
34
|
+
c0,2.4,0,5.2,0,7.6c1.5,0,3,0,4.4,0.1v15.2l0,0.6l-4.4,0.1c-0.1,2.5-0.1,4.9,0,7.4h19.8v-7.4c-1.5-0.1-3.1,0-4.6-0.1l0-15.7
|
|
35
|
+
l0.1-0.1l4.4,0c0-2.6,0.1-5.3,0-7.6L-107.2,53.4z M-78.7,87.8c-0.4,0-0.9-0.1-1.3,0l1.1,2.6l-0.1,0.1c-2,0.6-4,1.3-5.9,2.1
|
|
36
|
+
l-0.2-0.1c-1.3-1.4-2.5-2.9-3.5-4.4c-0.2-0.8-1.1-0.3-1.6-0.4c1.1,2,2.5,3.7,3.9,5.5c-1.2,0.7-2.4,1.5-3.7,2.1
|
|
37
|
+
c-2.7-2.1-5.2-4.8-7.1-7.6c-0.5-0.1-0.9,0-1.4,0c3.2,5.1,8.3,9.6,13.5,12.2c0,0,0,0,0,0c0,0,0.1,0.1,0,0.1c3.5,1.7,7.3,3,11.3,3.5
|
|
38
|
+
c13.8,1.8,26.9-4.1,34.5-15.9c-0.4,0-1,0-1.4,0c-1.9,2.7-4.3,5.4-6.9,7.4c-0.1,0.1-0.4,0.1-0.4,0c-1.1-0.7-2.3-1.3-3.4-2
|
|
39
|
+
c1.4-1.7,2.8-3.5,3.9-5.4h-1.4c-1.1,1.7-2.3,3.4-3.8,4.9c-2-0.8-3.8-1.5-5.8-2.1l-0.2-0.2c0.3-0.9,0.9-1.7,1.1-2.6h-1.2l-1.2,2.4
|
|
40
|
+
c-2.6-0.6-5.6-0.9-8.3-1.1c-0.1-0.4,0-1-0.1-1.3h-1.2c-0.1,0.5,0.1,0.9-0.1,1.4c-2.8,0.1-5.5,0.4-8.1,1L-78.7,87.8z M-69.3,98.1
|
|
41
|
+
c-0.9,0.2-2,0.2-2.9,0.4c-1.8-2.2-3.4-4.6-4.7-7l0.2-0.2c2.3-0.4,4.8-0.8,7.3-0.8L-69.3,98.1z M-60.5,91.4l0,0.1
|
|
42
|
+
c-1.3,2.4-2.8,4.8-4.5,7c-0.8,0.1-1.5-0.2-2.2-0.3l-0.8-0.1c-0.1-2.6-0.1-5,0-7.6C-65.4,90.6-62.9,90.9-60.5,91.4z M-78.2,91.8
|
|
43
|
+
c1.3,2.5,2.9,4.8,4.5,7.1c-0.6,0.4-1.4,0.6-2,0.9c-3-1.5-5.8-3.5-8.2-6v-0.1c1.7-0.9,3.6-1.5,5.5-2L-78.2,91.8z M-53.5,93.7
|
|
44
|
+
c-1.4,1.7-3.3,3.1-5,4.3c-1,0.6-2.1,1.3-3.1,1.8l-1.9-0.9l0.1-0.3c1.6-2.2,3-4.4,4.3-6.8l0.1-0.1C-57.1,92.3-55.3,92.9-53.5,93.7z
|
|
45
|
+
M-48.7,96.3c-2.5,2-5.4,3.4-8.4,4.5l-2.1,0.7c-0.4-0.2-0.7-0.4-1-0.7l0.1-0.1c2.9-1.7,5.5-3.8,7.9-6.2
|
|
46
|
+
C-51,94.9-49.8,95.5-48.7,96.3z M-77.2,100.7c-0.2,0.3-0.6,0.5-0.9,0.7c-3.8-1-7.3-2.7-10.5-5v-0.1c1.1-0.7,2.2-1.4,3.3-1.9
|
|
47
|
+
C-82.7,97-80,98.9-77.2,100.7z M-61.1,101.8c0.1,0.3-0.2,0.2-0.3,0.3c-4.8,1-10,1.1-14.8-0.1c-0.1-0.2,0.2-0.3,0.4-0.4
|
|
48
|
+
C-71.7,98.8-65.2,98.8-61.1,101.8z"/>
|
|
49
|
+
</g>
|
|
50
|
+
<defs>
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
<inkscape:perspective id="perspective9" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_x="0 : 526.18109 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="744.09448 : 526.18109 : 1" sodipodi:type="inkscape:persp3d">
|
|
54
|
+
</inkscape:perspective>
|
|
55
|
+
</defs>
|
|
56
|
+
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" gridtolerance="10.0" guidetolerance="10.0" id="base" inkscape:current-layer="g11" inkscape:cx="-88.803419" inkscape:cy="74.121048" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="667" inkscape:window-width="872" inkscape:window-x="88" inkscape:window-y="146" inkscape:zoom="1.17" objecttolerance="10.0" pagecolor="#ffffff" showgrid="false">
|
|
57
|
+
</sodipodi:namedview>
|
|
58
|
+
<g>
|
|
59
|
+
<path d="M77,42.4c-3.3,1.7-5.4,5.1-6.1,8.5c-1.2,5.7-0.9,12.5,3.4,16.7c5,4.5,12.3,5.5,18.8,3.6c0.3-0.1,1.3-0.3,2-0.7l0.2-0.1
|
|
60
|
+
c2-0.9,3.9-2.2,5.4-4.1c3.3-4.9,3.5-12.3,1.5-17.9c-0.8-2.2-2.5-4.1-4.5-5.5C91.9,39.3,83,39,77,42.4z M91.2,49.5
|
|
61
|
+
c0.7,1,0.6,2.4,0.8,3.6c0,2.6,0.2,5.6-0.3,8.2c-0.2,1.1-0.9,2.2-2.1,2.6c-1.8,0.8-4.2,0.6-5.9-0.4c-1.4-1-1.6-2.6-1.7-4.2
|
|
62
|
+
c-0.1-3.1-0.4-6.4,0.5-9.2c0.7-1.7,2.5-2.2,4.2-2.3C88.4,47.8,90.1,48.1,91.2,49.5z"/>
|
|
63
|
+
<path d="M59.7,41.6c-4.9-2.1-11.8-2.3-16.3,0.9c-2.9,2.2-3.8,6-3,9.4c0.6,3.2,3.6,5.6,6.5,6.7c4,1.4,8.2,2.5,12.2,3.9
|
|
64
|
+
c0.4,0.2,0.9,0.6,0.9,1.1c0,0.4-0.4,0.6-0.7,0.8c-4.2,1.2-8.8,0.3-11.8-3c-0.4-0.4-0.6-1-0.9-1.4l-6.1,0c-0.1,3.6-0.1,7.8,0,11.4
|
|
65
|
+
l6.7,0l0.1-2.2c0.8,0.4,1.5,0.8,2.3,1.2c4.7,2,10.7,2.4,15.3,0c3.4-1.9,5.2-5.5,4.7-9.4c-0.5-3.8-4.1-7.3-7.7-8.2l-10.9-3.2
|
|
66
|
+
l-0.8-0.4c-0.4-0.3-0.6-0.7-0.5-1.2c0.9-1.5,2.8-1,4.3-1c3.1,0.4,6.4,1.5,8.2,4.4c2,0,4.3,0,6.4,0c0.1-3.7,0-6.9-0.1-10.6
|
|
67
|
+
c-2,0-4.5,0-6.5,0c-0.1,0.5,0.1,1.3-0.1,1.8L59.7,41.6z"/>
|
|
68
|
+
<path d="M31.7,37c1.1-1.5,2.3-3,3.6-4.4c1.2-1.1,2.2-2.2,3.5-3c1.2,0.8,2.5,1.4,3.6,2.1c-1.4,1.7-2.8,3.5-3.9,5.4
|
|
69
|
+
c0.3,0.1,0.9,0.1,1.3,0c1.1-1.7,2.3-3.3,3.8-4.8c1.9,0.7,3.8,1.5,5.8,2l0.2,0.2L48.5,37c0.5,0.1,0.8,0,1.3,0
|
|
70
|
+
c0.4-0.8,0.7-1.6,1.2-2.4c2.6,0.6,5.3,0.9,8.1,1c0.4,0.3,0.1,1,0.2,1.4h1.2c0.1-0.4,0-0.9,0.1-1.3c2.6-0.1,5.3-0.4,7.8-1l0.2,0
|
|
71
|
+
l1.2,2.3c0.4,0,0.9,0.1,1.3-0.1L70,34.3l0.1-0.1c2.1-0.5,4-1.3,6-2.2c1.4,1.5,2.7,3.2,3.9,4.9c0.5,0,1,0,1.3-0.1
|
|
72
|
+
c-0.5-1-1.2-2-1.9-2.8c-0.6-0.9-1.2-1.6-2-2.4v-0.2l3.1-1.8l0.4-0.2c2.7,2.1,5.2,4.7,7.1,7.5c0.5,0,1,0.2,1.4,0
|
|
73
|
+
c-6-9.1-15.9-15-26.6-15.9l0,0.1L62.7,21c-1.2-0.1-2.7-0.2-4,0c-0.5,0-1.1,0-1.7,0c-10.8,0.9-20.7,6.5-26.9,16
|
|
74
|
+
C30.7,37,31.2,37.1,31.7,37z M50.3,33l-0.2,0c-1.8-0.5-3.6-1.1-5.3-1.8l0.1-0.3c2.5-2.4,5.1-4.3,7.9-5.9c0.7,0.3,1.3,0.5,2,0.8
|
|
75
|
+
l-0.1,0.4C53,28.4,51.6,30.7,50.3,33z M59.2,34.2c-1.3,0.2-2.4,0-3.6-0.1c-1.2-0.2-2.7-0.3-3.9-0.7c1.3-2.5,2.8-4.8,4.7-7l2.9,0.4
|
|
76
|
+
C59.3,29.1,59.2,31.7,59.2,34.2z M60.6,34.3c-0.1-2.4,0-5,0-7.5c0.9-0.1,1.9-0.3,2.8-0.4c1.7,2.2,3.5,4.5,4.6,7
|
|
77
|
+
C65.6,33.9,63.1,34.3,60.6,34.3z M74.9,31.1c-1.7,0.8-3.5,1.5-5.5,1.9c-1.4-2.4-2.9-4.8-4.6-7c0.6-0.4,1.4-0.6,2.1-1
|
|
78
|
+
c2.9,1.5,5.7,3.6,8.1,6L74.9,31.1z M69.1,23.5c3.8,1,7.3,2.7,10.5,5l-0.1,0.2l-3.1,1.7h-0.2c-2.4-2.4-5.2-4.5-8-6.2
|
|
79
|
+
C68.4,23.9,68.8,23.7,69.1,23.5z M67.4,23L67.4,23c-3.9,3-10.2,3.2-14.3,0.6c-0.2-0.2-0.7-0.3-0.7-0.6C57,21.9,62.6,21.8,67.4,23z
|
|
80
|
+
M40,28.6c2.8-2.1,6-3.7,9.3-4.8c0.1-0.1,0.2-0.3,0.4-0.3v0.1c0.4,0.1,0.6-0.3,0.9,0c0.3,0.2,0.6,0.4,0.8,0.6
|
|
81
|
+
c-2.8,1.7-5.5,3.8-8,6.3C42.2,30.1,41.1,29.4,40,28.6L40,28.6z"/>
|
|
82
|
+
<path d="M38.5,71.5v-7.4c-1.5-0.1-3.1,0-4.6-0.1l0-15.7l0.1-0.1l4.4,0c0-2.6,0.1-5.3,0-7.6l-16.9,0l-2.8,0c0,2.4,0,5.2,0,7.6
|
|
83
|
+
c1.5,0,3,0,4.4,0.1v15.2l0,0.6l-4.4,0.1c-0.1,2.5-0.1,4.9,0,7.4H38.5z"/>
|
|
84
|
+
<path d="M88.3,74.8c-1.9,2.7-4.3,5.4-6.9,7.4c-0.1,0.1-0.4,0.1-0.4,0c-1.1-0.7-2.3-1.3-3.4-2c1.4-1.7,2.8-3.5,3.9-5.4h-1.4
|
|
85
|
+
c-1.1,1.7-2.3,3.4-3.8,4.9c-2-0.8-3.8-1.5-5.8-2.1l-0.2-0.2c0.3-0.9,0.9-1.7,1.1-2.6h-1.2L69,77.2c-2.6-0.6-5.6-0.9-8.3-1.1
|
|
86
|
+
c-0.1-0.4,0-1-0.1-1.3h-1.2c-0.1,0.5,0.1,0.9-0.1,1.4c-2.8,0.1-5.5,0.4-8.1,1L50,74.8c-0.4,0-0.9-0.1-1.3,0l1.1,2.6l-0.1,0.1
|
|
87
|
+
c-2,0.6-4,1.3-5.9,2.1l-0.2-0.1c-1.3-1.4-2.5-2.9-3.5-4.4c-0.2-0.8-1.1-0.3-1.6-0.4c1.1,2,2.5,3.7,3.9,5.5
|
|
88
|
+
c-1.2,0.7-2.4,1.5-3.7,2.1c-2.7-2.1-5.2-4.8-7.1-7.6c-0.5-0.1-0.9,0-1.4,0c3.2,5.1,8.3,9.6,13.5,12.2c0,0,0,0,0,0
|
|
89
|
+
c0,0,0.1,0.1,0,0.1c3.5,1.7,7.3,3,11.3,3.5c13.8,1.8,26.9-4.1,34.5-15.9C89.3,74.8,88.7,74.8,88.3,74.8z M69.6,78.9l0.1-0.1
|
|
90
|
+
c1.9,0.4,3.8,1.1,5.5,1.9c-1.4,1.7-3.3,3.1-5,4.3c-1,0.6-2.1,1.3-3.1,1.8L65.2,86l0.1-0.3C66.9,83.5,68.3,81.3,69.6,78.9z
|
|
91
|
+
M60.8,77.5c2.6,0,5.1,0.3,7.5,0.9l0,0.1c-1.3,2.4-2.8,4.8-4.5,7c-0.8,0.1-1.5-0.2-2.2-0.3l-0.8-0.1C60.7,82.5,60.6,80.2,60.8,77.5
|
|
92
|
+
z M52.1,78.3c2.3-0.4,4.8-0.8,7.3-0.8l0,7.6c-0.9,0.2-2,0.2-2.9,0.4c-1.8-2.2-3.4-4.6-4.7-7L52.1,78.3z M44.9,80.8
|
|
93
|
+
c1.7-0.9,3.6-1.5,5.5-2l0.2,0c1.3,2.5,2.9,4.8,4.5,7.1c-0.6,0.4-1.4,0.6-2,0.9c-3-1.5-5.8-3.5-8.2-6V80.8z M50.7,88.4
|
|
94
|
+
c-3.8-1-7.3-2.7-10.5-5v-0.1c1.1-0.7,2.2-1.4,3.3-1.9c2.6,2.6,5.2,4.5,8.1,6.3C51.3,88,51,88.3,50.7,88.4z M67.3,89
|
|
95
|
+
c-4.8,1-10,1.1-14.8-0.1c-0.1-0.2,0.2-0.3,0.4-0.4c4.2-2.7,10.7-2.7,14.8,0.2C67.8,89,67.4,88.9,67.3,89z M71.6,87.8l-2.1,0.7
|
|
96
|
+
c-0.4-0.2-0.7-0.4-1-0.7l0.1-0.1c2.9-1.7,5.5-3.8,7.9-6.2c1.2,0.5,2.4,1.2,3.5,1.9C77.5,85.3,74.6,86.6,71.6,87.8z"/>
|
|
97
|
+
</g>
|
|
98
|
+
</svg>
|
data/assets/logo-iso.svg
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
<svg
|
|
4
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
5
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
6
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
7
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
id="svg2"
|
|
12
|
+
sodipodi:version="0.32"
|
|
13
|
+
inkscape:version="0.46"
|
|
14
|
+
width="120"
|
|
15
|
+
height="111.93"
|
|
16
|
+
xml:space="preserve"
|
|
17
|
+
sodipodi:docname="Logo der ISO.svg"
|
|
18
|
+
version="1.0"
|
|
19
|
+
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
|
|
20
|
+
id="metadata7"><rdf:RDF><cc:Work
|
|
21
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
22
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
|
23
|
+
id="defs5"><inkscape:perspective
|
|
24
|
+
sodipodi:type="inkscape:persp3d"
|
|
25
|
+
inkscape:vp_x="0 : 526.18109 : 1"
|
|
26
|
+
inkscape:vp_y="0 : 1000 : 0"
|
|
27
|
+
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
|
28
|
+
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
|
29
|
+
id="perspective9" /><clipPath
|
|
30
|
+
clipPathUnits="userSpaceOnUse"
|
|
31
|
+
id="clipPath17"><path
|
|
32
|
+
d="M 0,0 L 595.27559,0 L 595.27559,841.88977 L 0,841.88977 L 0,0 z"
|
|
33
|
+
id="path19" /></clipPath><clipPath
|
|
34
|
+
clipPathUnits="userSpaceOnUse"
|
|
35
|
+
id="clipPath25"><path
|
|
36
|
+
d="M -169.91499,-113.755 L -169.91499,83.51878 L 102.97067,83.51878 L 102.97067,-113.755 L -169.91499,-113.755 z"
|
|
37
|
+
id="path27" /></clipPath></defs><sodipodi:namedview
|
|
38
|
+
inkscape:window-height="667"
|
|
39
|
+
inkscape:window-width="872"
|
|
40
|
+
inkscape:pageshadow="2"
|
|
41
|
+
inkscape:pageopacity="0.0"
|
|
42
|
+
guidetolerance="10.0"
|
|
43
|
+
gridtolerance="10.0"
|
|
44
|
+
objecttolerance="10.0"
|
|
45
|
+
borderopacity="1.0"
|
|
46
|
+
bordercolor="#666666"
|
|
47
|
+
pagecolor="#ffffff"
|
|
48
|
+
id="base"
|
|
49
|
+
showgrid="false"
|
|
50
|
+
inkscape:zoom="1.17"
|
|
51
|
+
inkscape:cx="-88.803419"
|
|
52
|
+
inkscape:cy="74.121048"
|
|
53
|
+
inkscape:window-x="88"
|
|
54
|
+
inkscape:window-y="146"
|
|
55
|
+
inkscape:current-layer="g11" /><g
|
|
56
|
+
id="g11"
|
|
57
|
+
inkscape:groupmode="layer"
|
|
58
|
+
inkscape:label="codeethics_2004"
|
|
59
|
+
transform="matrix(1.25,0,0,-1.25,-260.66452,468.06343)"><g
|
|
60
|
+
id="g2537"
|
|
61
|
+
transform="translate(8.0000213,-8.0007263)"><path
|
|
62
|
+
d="M 273.46432,342.84535 C 274.00242,342.02032 273.9667,340.9441 274.07425,339.9754 C 274.03815,337.93066 274.21752,335.49128 273.85877,333.41028 C 273.67942,332.54949 273.10557,331.65261 272.20872,331.32963 C 270.77375,330.68394 268.83633,330.86334 267.50928,331.61656 C 266.39696,332.40586 266.25368,333.73328 266.11003,334.98891 C 266.00248,337.46438 265.82311,340.08313 266.50451,342.34313 C 267.04263,343.74222 268.5137,344.10095 269.84113,344.20868 C 271.24002,344.20868 272.60317,343.9934 273.46432,342.84535 z"
|
|
63
|
+
style="fill:#2a3e92;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
64
|
+
id="path45" /><path
|
|
65
|
+
d="M 208.53161,300.90819 L 208.53161,374.45075 L 288.53158,374.45075 L 288.53158,300.90819 L 208.53161,300.90819 z M 250.71979,365.66151 C 249.75145,365.76908 248.5675,365.80498 247.52717,365.69743 C 247.13252,365.73333 246.66602,365.69743 246.19975,365.66151 C 237.5899,364.97993 229.66161,360.49563 224.71099,352.85429 C 225.06974,352.89017 225.50014,352.74674 225.85887,352.89017 C 226.72002,354.10989 227.68851,355.29384 228.76476,356.44171 C 229.69751,357.33856 230.55846,358.19971 231.56304,358.84536 C 232.49564,358.23544 233.53614,357.73324 234.43299,357.15921 C 233.32086,355.76012 232.17281,354.36109 231.34778,352.85429 C 231.59876,352.74674 232.06526,352.78262 232.42401,352.85429 C 233.32086,354.18171 234.28938,355.50914 235.43743,356.69291 C 236.97996,356.11891 238.48675,355.50914 240.06518,355.07856 C 240.06518,355.07856 240.20865,354.93509 240.20865,354.93509 C 240.20865,354.93509 239.3118,352.85429 239.3118,352.85429 C 239.70643,352.78262 239.95763,352.81856 240.3523,352.85429 C 240.67511,353.46422 240.92613,354.14577 241.28488,354.75572 C 243.36568,354.28926 245.55407,354.03822 247.7782,353.96642 C 248.06527,353.71541 247.85002,353.17729 247.95757,352.85429 C 247.95757,352.85429 248.92624,352.85429 248.92624,352.85429 C 249.03379,353.21302 248.89032,353.60767 249.03379,353.93051 C 251.1146,354.03822 253.30282,354.25354 255.31201,354.75572 C 255.31201,354.75572 255.49139,354.71982 255.49139,354.71982 C 255.49139,354.71982 256.45969,352.85429 256.45969,352.85429 C 256.78271,352.85429 257.21326,352.78262 257.46446,352.92611 C 257.46446,352.92611 256.56761,355.00674 256.56761,355.00674 C 256.56761,355.00674 256.63906,355.07856 256.63906,355.07856 C 258.28951,355.50914 259.83203,356.15479 261.41064,356.80046 C 262.52261,355.61669 263.56311,354.21759 264.49568,352.85429 C 264.89016,352.85429 265.28501,352.81856 265.57193,352.92611 C 265.14136,353.71541 264.60323,354.50452 264.02941,355.18611 C 263.56311,355.86786 263.06071,356.47764 262.45078,357.12349 C 262.45078,357.12349 262.45078,357.30284 262.45078,357.30284 L 264.96198,358.77354 C 264.96198,358.77354 265.32073,358.91719 265.32073,358.91719 C 267.50928,357.23104 269.44632,355.18611 270.98883,352.92611 C 271.4194,352.92611 271.77815,352.78262 272.1369,352.96199 C 267.32991,360.28034 259.40146,364.97993 250.82767,365.66151 C 250.82767,365.66151 250.79162,365.5897 250.79162,365.5897 C 250.79162,365.5897 250.71979,365.66151 250.71979,365.66151 z M 254.41514,364.04716 C 254.41514,364.04716 254.41514,363.97536 254.41514,363.97536 C 251.29397,361.67943 246.23567,361.46413 242.93515,363.58086 C 242.75577,363.72433 242.397,363.79598 242.3611,364.04716 C 246.16385,364.94401 250.64832,365.01583 254.41514,364.04716 z M 264.28058,359.67041 C 264.28058,359.67041 264.20878,359.52696 264.20878,359.52696 L 261.73329,358.12789 C 261.73329,358.12789 261.55393,358.12789 261.55393,358.12789 C 259.65266,360.06508 257.42836,361.75126 255.16836,363.07846 C 255.24019,363.32966 255.59894,363.50903 255.85011,363.68841 C 258.86334,362.89911 261.69756,361.53596 264.28058,359.67041 z M 241.67953,363.07846 C 239.45543,361.67943 237.26706,360.02916 235.25806,358.02034 C 234.28938,358.37909 233.39253,358.91719 232.53156,359.52696 C 232.53156,359.52696 232.53156,359.59878 232.53156,359.59878 C 234.79174,361.28476 237.30298,362.54036 239.95763,363.40148 C 240.06518,363.50903 240.137,363.61658 240.28048,363.61658 C 240.28048,363.61658 240.28048,363.54496 240.28048,363.54496 C 240.5674,363.47313 240.78266,363.79598 241.03385,363.58086 C 241.24915,363.40148 241.50015,363.25784 241.67953,363.07846 z M 260.51378,357.66159 C 260.51378,357.66159 260.44196,357.55388 260.44196,357.55388 C 259.04271,356.94411 257.60774,356.37007 256.06521,356.04724 C 254.95326,357.94851 253.73339,359.84979 252.3702,361.67943 C 252.87226,361.96651 253.48219,362.18161 254.02031,362.46873 C 256.35214,361.28476 258.61216,359.59878 260.51378,357.66159 z M 244.37012,361.75126 C 244.37012,361.75126 244.26255,361.46413 244.26255,361.46413 C 242.89923,359.74224 241.823,357.87669 240.74678,356.04724 C 240.74678,356.04724 240.60328,356.01132 240.60328,356.01132 C 239.13243,356.40599 237.69745,356.87229 236.3343,357.48221 C 236.3343,357.48221 236.40608,357.69731 236.40608,357.69731 C 238.3792,359.59878 240.45985,361.17721 242.75577,362.39691 C 243.2939,362.18161 243.83202,362.00224 244.37012,361.75126 z M 247.85002,361.06966 C 247.95757,359.20411 247.8859,357.05166 247.8859,355.07856 C 246.88134,354.93509 245.98447,355.11447 244.98007,355.18611 C 244.0114,355.32976 242.79168,355.43731 241.823,355.76012 C 242.8635,357.73324 244.08318,359.63469 245.55407,361.39251 C 245.55407,361.39251 247.85002,361.06966 247.85002,361.06966 z M 251.22215,361.35658 C 252.62139,359.56286 253.98454,357.73324 254.91716,355.76012 C 252.98014,355.29384 251.00705,355.04264 248.99787,355.04264 C 248.92624,356.94411 248.96215,359.06066 248.99787,361.03376 C 249.71535,361.14131 250.50467,361.24903 251.22215,361.35658 z M 248.31632,349.15929 C 244.37012,350.84547 238.8455,351.02484 235.25806,348.40587 C 232.92619,346.684 232.20871,343.59875 232.81864,340.87228 C 233.28494,338.28941 235.72436,336.38813 238.05618,335.49128 C 241.24915,334.34323 244.5854,333.51816 247.8141,332.40586 C 248.13694,332.26256 248.5675,331.93958 248.49567,331.54506 C 248.49567,331.22208 248.17282,331.04271 247.92165,330.89908 C 244.5495,329.96646 240.8904,330.68394 238.45083,333.26701 C 238.16391,333.62573 237.98453,334.05629 237.69745,334.41501 C 237.69745,334.41501 232.85441,334.37896 232.85441,334.37896 C 232.78276,331.47324 232.74684,328.13701 232.85441,325.26707 C 232.85441,325.26707 238.23555,325.30279 238.23555,325.30279 C 238.23555,325.30279 238.30738,327.02469 238.30738,327.02469 C 238.91733,326.73777 239.52706,326.37902 240.137,326.05599 C 243.8679,324.47774 248.67505,324.11902 252.3702,326.05599 C 255.06081,327.56279 256.49579,330.46884 256.10094,333.58966 C 255.70649,336.63896 252.83654,339.40138 249.93082,340.15478 C 249.93082,340.15478 241.24915,342.70188 241.24915,342.70188 C 241.24915,342.70188 240.60328,343.02473 240.60328,343.02473 C 240.31638,343.27592 240.137,343.59875 240.20865,343.9934 C 240.8904,345.1772 242.46883,344.81845 243.65265,344.78252 C 246.16385,344.42378 248.74687,343.56285 250.21775,341.231 C 251.79602,341.231 253.6258,341.19508 255.34774,341.2669 C 255.41956,344.20868 255.31201,346.79155 255.27591,349.7692 C 253.66156,349.80497 251.68847,349.80497 250.0741,349.7333 C 250.00232,349.30274 250.14592,348.69297 249.96655,348.26244 C 249.96655,348.26244 248.31632,349.15929 248.31632,349.15929 z M 278.73792,348.01124 C 274.07425,351.02484 266.97118,351.23994 262.16386,348.5136 C 259.54511,347.15027 257.82321,344.4597 257.28509,341.69748 C 256.31641,337.14136 256.56761,331.72444 260.01141,328.31639 C 264.02941,324.72894 269.87687,323.93964 275.07867,325.41034 C 275.3253,325.45974 276.11005,325.66154 276.64815,325.95302 C 276.64815,325.95302 276.80055,326.02027 276.80055,326.02027 C 278.41489,326.70204 279.95742,327.81399 281.10547,329.32079 C 283.76032,333.26701 283.93969,339.18628 282.32534,343.63467 C 281.67969,345.35657 280.35227,346.89925 278.73792,348.01124 z M 217.78715,350.16372 C 217.78715,350.16372 215.56303,350.12795 215.56303,350.12795 C 215.5271,348.22652 215.5271,346.0024 215.56303,344.06503 C 216.7827,344.0293 217.93075,344.06503 219.11457,343.95748 C 219.11457,343.95748 219.11457,331.76021 219.11457,331.76021 L 219.07865,331.25781 C 219.07865,331.25781 215.5271,331.18634 215.5271,331.18634 C 215.45532,329.17718 215.45532,327.24014 215.5271,325.26707 C 215.5271,325.26707 231.34778,325.26707 231.34778,325.26707 C 231.34778,325.26707 231.34778,331.18634 231.34778,331.18634 C 230.16379,331.25781 228.83659,331.15026 227.68851,331.29389 C 227.68851,331.29389 227.72442,343.88565 227.72442,343.88565 L 227.79624,343.9934 C 227.79624,343.9934 231.34778,344.0293 231.34778,344.0293 C 231.38366,346.07405 231.41941,348.26244 231.31186,350.12795 C 231.31186,350.12795 217.78715,350.16372 217.78715,350.16372 z M 240.53168,322.61222 C 240.17293,322.61222 239.77825,322.68404 239.52706,322.57649 C 239.52706,322.57649 240.42391,320.45975 240.42391,320.45975 C 240.42391,320.45975 240.31638,320.3522 240.31638,320.3522 C 238.70203,319.88555 237.1236,319.3117 235.58088,318.66602 C 235.58088,318.66602 235.43743,318.73785 235.43743,318.73785 C 234.43299,319.84982 233.46431,321.06969 232.67501,322.28919 C 232.49564,322.89914 231.77814,322.54039 231.38366,322.61222 C 232.24464,321.03397 233.39253,319.63472 234.54054,318.19975 C 233.57191,317.62588 232.60338,316.97987 231.59876,316.51357 C 229.44631,318.16398 227.43749,320.31647 225.93069,322.57649 C 225.50014,322.64794 225.21322,322.61222 224.78264,322.57649 C 227.36567,318.48667 231.38366,314.89922 235.58088,312.78283 C 235.58088,312.78283 235.58088,312.81856 235.61681,312.81856 C 235.65271,312.81856 235.72436,312.74673 235.65271,312.71068 C 238.48675,311.31176 241.50015,310.30736 244.69295,309.87678 C 255.70649,308.40575 266.21758,313.1773 272.31627,322.57649 C 271.99362,322.61222 271.52695,322.61222 271.1682,322.57649 C 269.66175,320.38792 267.76011,318.2712 265.67948,316.62112 C 265.60766,316.51357 265.39256,316.54963 265.32073,316.65685 C 264.42388,317.23105 263.45518,317.69735 262.59443,318.2712 C 263.74248,319.67045 264.85443,321.06969 265.71556,322.61222 C 265.71556,322.61222 264.60323,322.61222 264.60323,322.61222 C 263.70638,321.28479 262.77381,319.88555 261.59001,318.7021 C 260.01141,319.34742 258.57643,319.92164 256.96209,320.3522 C 256.96209,320.3522 256.78271,320.49585 256.78271,320.49585 C 257.03391,321.21334 257.50019,321.89472 257.64384,322.61222 C 257.64384,322.61222 256.67516,322.61222 256.67516,322.61222 C 256.67516,322.61222 255.70649,320.67522 255.70649,320.67522 C 253.58974,321.14115 251.25792,321.3927 249.10562,321.53597 C 248.99787,321.859 249.14152,322.32529 248.99787,322.61222 C 248.99787,322.61222 248.06527,322.61222 248.06527,322.61222 C 247.99345,322.18165 248.17282,321.859 247.95757,321.49989 C 245.73345,321.3927 243.58098,321.14115 241.50015,320.71095 C 241.50015,320.71095 240.53168,322.61222 240.53168,322.61222 z M 248.06527,314.3611 C 247.3119,314.18175 246.48667,314.18175 245.76917,314.00237 C 244.29847,315.76 243.0786,317.66162 242.03825,319.63472 C 242.03825,319.63472 242.21763,319.77837 242.21763,319.77837 C 244.08318,320.1371 246.02037,320.42365 248.02939,320.42365 C 248.02939,320.42365 248.06527,314.3611 248.06527,314.3611 z M 255.13264,319.70617 C 255.13264,319.70617 255.16836,319.599 255.16836,319.599 C 254.16392,317.66162 252.90832,315.79608 251.54517,314.03843 C 250.93522,313.96628 250.36104,314.2178 249.75145,314.25353 C 249.75145,314.25353 249.14152,314.32502 249.14152,314.32502 C 249.0697,316.44175 249.03379,318.3073 249.14152,320.42365 C 251.18642,320.38792 253.23099,320.17282 255.13264,319.70617 z M 240.96203,319.38352 C 242.00238,317.41042 243.2939,315.5449 244.5854,313.67968 C 244.08318,313.39243 243.47327,313.21305 242.97105,312.92611 C 240.60328,314.10992 238.34328,315.76 236.44185,317.73307 C 236.44185,317.73307 236.44185,317.841 236.44185,317.841 C 237.8411,318.52273 239.3118,319.02477 240.81858,319.41962 C 240.81858,319.41962 240.96203,319.38352 240.96203,319.38352 z M 260.69316,317.87672 C 259.54511,316.54963 258.07404,315.40125 256.71089,314.4329 C 255.88584,313.93055 255.06081,313.39243 254.19969,312.9622 C 254.19969,312.9622 252.65716,313.64363 252.65716,313.64363 C 252.65716,313.64363 252.76471,313.89478 252.76471,313.89478 C 254.05641,315.65278 255.20409,317.4465 256.20886,319.34742 C 256.20886,319.34742 256.31641,319.41962 256.31641,319.41962 C 257.85894,319.06085 259.32964,318.55847 260.69316,317.87672 z M 264.53141,315.83215 C 262.52261,314.2178 260.19076,313.14158 257.82321,312.24471 C 257.82321,312.24471 256.13704,311.7066 256.13704,311.7066 C 255.85011,311.84988 255.59894,312.06533 255.34774,312.28043 C 255.34774,312.28043 255.41956,312.38798 255.41956,312.38798 C 257.71529,313.75118 259.79631,315.40125 261.76938,317.37432 C 262.73771,316.97987 263.67066,316.44175 264.53141,315.83215 z M 241.78728,312.28043 C 241.6079,312.06533 241.32078,311.84988 241.06978,311.7066 C 238.05618,312.49558 235.25806,313.85905 232.67501,315.72427 C 232.67501,315.72427 232.67501,315.83215 232.67501,315.83215 C 233.53614,316.37025 234.39711,316.94415 235.32986,317.3386 C 237.37461,315.29403 239.49115,313.75118 241.78728,312.28043 z M 254.63024,311.45508 C 254.73779,311.23993 254.45087,311.31176 254.37906,311.23993 C 250.57649,310.41491 246.34322,310.37883 242.54048,311.31176 C 242.46883,311.49113 242.71985,311.52723 242.82758,311.63443 C 246.16385,313.823 251.3658,313.823 254.63024,311.45508 z"
|
|
66
|
+
style="fill:#2a3e92;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
67
|
+
id="path47" /></g><rect
|
|
68
|
+
style="opacity:1;fill:none;fill-opacity:0.98717945;stroke:none;stroke-width:0.63436121;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
69
|
+
id="rect2386"
|
|
70
|
+
width="71.365639"
|
|
71
|
+
height="71.365639"
|
|
72
|
+
x="220.8488"
|
|
73
|
+
y="-365.36157"
|
|
74
|
+
transform="scale(1,-1)" /></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 501"><title>ribose logo normal</title><path d="M180.9,31.3h36.2l18.1,31.3h36.2l18.1,31.3-18.1,31.4,18.1,31.3-18.1,31.3,18.1,31.3-18.1,31.3H235.2l-18.1,31.3,18.1,31.3h36.2l18.1,31.4-18.1,31.3,18.1,31.3-18.1,31.3,18.1,31.3L272.1,501H235.9l-18.8-31.3,18.1-31.3-18.1-31.3,18.1-31.3-18.1-31.3H180.9l-18.1-31.4H126.7l-18.1-31.3H72.4L54.3,313.1l18.1,31.4L54.3,375.8l18.1,31.3L54.3,438.4l18.1,31.3L55,501H18.8L0,469.7l18.1-31.3L0,407.1l18.1-31.3L0,344.5l18.1-31.4L0,281.8l18.1-31.3L0,219.2l18.1-31.3L0,156.6l18.1-31.3L0,93.9,18.1,62.6H54.3L72.4,31.3h36.2L126.7,0h36.1ZM126.7,250.5h36.1l18.1-31.3h36.2l18.1-31.3-18.1-31.3,18.1-31.3L217.1,93.9H180.9L162.8,62.6H126.7L108.6,93.9H72.4L54.3,125.3l18.1,31.3L54.3,187.9l18.1,31.3h36.2Z"/><path d="M470.2,93.9l-18.1,31.4H416L397.9,93.9,416,62.6h36.1Zm0,125.3-18.1,31.3,18.1,31.3-18.1,31.3,18.1,31.4-18.1,31.3,18.1,31.3-18.1,31.3,18.1,31.3L452.8,501H416.7l-18.8-31.3L416,438.4l-18.1-31.3L416,375.8l-18.1-31.3L416,313.1l-18.1-31.3L416,250.5l-18.1-31.3L416,187.9h36.1Z"/><path d="M659.9,31.3,641.8,62.6l18.1,31.3-18.1,31.4,18.1,31.3-18.1,31.3,18.1,31.3h36.2l18.1-31.3h36.2l18.1,31.3h36.2l18.1,31.3h36.1L877,281.8l-18.1,31.3L877,344.5l-18.1,31.3L877,407.1l-18.1,31.3H822.8l-18.1,31.3H768.5L751.1,501H714.9l-18.8-31.3H659.9L642.5,501H606.3l-18.7-31.3,18.1-31.3-18.1-31.3,18.1-31.3-18.1-31.3,18.1-31.4-18.1-31.3,18.1-31.3-18.1-31.3,18.1-31.3-18.1-31.3,18.1-31.3L587.6,93.9l18.1-31.3L587.6,31.3,605.7,0h36.1ZM822.8,375.8l-18.1-31.3,18.1-31.4-18.1-31.3H768.5l-18.1-31.3H714.2l-18.1,31.3H659.9l-18.1,31.3,18.1,31.4-18.1,31.3,18.1,31.3h36.2l18.1,31.3h36.2l18.1-31.3h36.2Z"/><path d="M1034.6,219.2h36.2l18.1-31.3H1125l18.1,31.3h36.2l18.1,31.3h36.2l18.1,31.3-18.1,31.3,18.1,31.4-18.1,31.3,18.1,31.3-18.1,31.3h-36.2l-18.1,31.3h-36.2L1125.7,501h-36.1l-18.8-31.3h-36.2l-18.1-31.3H980.3l-18.1-31.3,18.1-31.3-18.1-31.3,18.1-31.4-18.1-31.3,18.1-31.3h36.2Zm0,125.3-18.1,31.3,18.1,31.3h36.2l18.1,31.3H1125l18.1-31.3h36.2l18.1-31.3-18.1-31.3,18.1-31.4-18.1-31.3h-36.2L1125,250.5h-36.1l-18.1,31.3h-36.2l-18.1,31.3Z"/><path d="M1408,219.2h36.2l18.1-31.3h36.2l18.1,31.3h36.2l18.1,31.3h36.2l18,31.3-18,31.3h-36.2l-18.1-31.3h-36.2l-18.1-31.3h-36.2l-18.1,31.3,18.1,31.3h36.2l18.1,31.4h36.2l18.1,31.3h36.2l18,31.3-18,31.3h-36.2l-18.1,31.3h-36.2L1499.2,501H1463l-18.8-31.3H1408l-18.1-31.3h-36.2l-18-31.3,18-31.3h36.2l18.1,31.3h36.2l18.1,31.3h36.2l18.1-31.3-18.1-31.3h-36.2l-18.1-31.3H1408l-18.1-31.4h-36.2l-18-31.3,18-31.3h36.2Z"/><path d="M1782.9,219.2h36.2l18.1-31.3h36.2l18,31.3h36.2l18.1,31.3h36.2l18.1,31.3-18.1,31.3h-36.2l-18.1,31.4h-36.2l-18,31.3h-36.2l-18.1-31.3,18.1-31.4h36.2l18-31.3-18-31.3h-36.2l-18.1,31.3h-36.2l-18.1,31.3,18.1,31.4-18.1,31.3,18.1,31.3h36.2l18.1,31.3h36.2l18-31.3h36.2l18.1-31.3h36.2l18.1,31.3-18.1,31.3h-36.2l-18.1,31.3h-36.2L1874.1,501h-36.2l-18.8-31.3h-36.2l-18.1-31.3h-36.2l-18.1-31.3,18.1-31.3-18.1-31.3,18.1-31.4-18.1-31.3,18.1-31.3h36.2Z"/></svg>
|
metadata
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: jekyll-theme-isotc211
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Ribose Inc.
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2019-01-21 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: jekyll
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '3.8'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '3.8'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: jekyll-seo-tag
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '2.0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '2.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: jekyll-data
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '1.0'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '1.0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: bundler
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '1.16'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '1.16'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: rake
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '12.0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '12.0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: html-proofer
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '3.0'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '3.0'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: rubocop
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - "~>"
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0.50'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - "~>"
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0.50'
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: w3c_validators
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - "~>"
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: '1.3'
|
|
118
|
+
type: :development
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - "~>"
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: '1.3'
|
|
125
|
+
description:
|
|
126
|
+
email:
|
|
127
|
+
- open.source@ribose.com
|
|
128
|
+
executables: []
|
|
129
|
+
extensions: []
|
|
130
|
+
extra_rdoc_files: []
|
|
131
|
+
files:
|
|
132
|
+
- LICENSE.txt
|
|
133
|
+
- README.md
|
|
134
|
+
- _config.yml
|
|
135
|
+
- _includes/copyright.html
|
|
136
|
+
- _includes/google-analytics.html
|
|
137
|
+
- _includes/head.html
|
|
138
|
+
- _includes/script.html
|
|
139
|
+
- _layouts/default.html
|
|
140
|
+
- _layouts/home.html
|
|
141
|
+
- _layouts/page.html
|
|
142
|
+
- _layouts/post.html
|
|
143
|
+
- _pages/404.adoc
|
|
144
|
+
- _sass/home.scss
|
|
145
|
+
- _sass/jekyll-theme-isotc211.scss
|
|
146
|
+
- _sass/main.scss
|
|
147
|
+
- _sass/offsets.scss
|
|
148
|
+
- assets/logo-iso-noninverted.svg
|
|
149
|
+
- assets/logo-iso.svg
|
|
150
|
+
- assets/logo-ribose.svg
|
|
151
|
+
homepage: https://github.com/riboseinc/jekyll-theme-isotc211/
|
|
152
|
+
licenses:
|
|
153
|
+
- MIT
|
|
154
|
+
metadata: {}
|
|
155
|
+
post_install_message:
|
|
156
|
+
rdoc_options: []
|
|
157
|
+
require_paths:
|
|
158
|
+
- lib
|
|
159
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
160
|
+
requirements:
|
|
161
|
+
- - ">="
|
|
162
|
+
- !ruby/object:Gem::Version
|
|
163
|
+
version: '0'
|
|
164
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
165
|
+
requirements:
|
|
166
|
+
- - ">="
|
|
167
|
+
- !ruby/object:Gem::Version
|
|
168
|
+
version: '0'
|
|
169
|
+
requirements: []
|
|
170
|
+
rubyforge_project:
|
|
171
|
+
rubygems_version: 2.7.6
|
|
172
|
+
signing_key:
|
|
173
|
+
specification_version: 4
|
|
174
|
+
summary: ISO/TC 211 Jekyll theme
|
|
175
|
+
test_files: []
|