jekyll-theme-lcsb-default 0.2.0 → 0.2.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 +60 -2
- data/_includes/css-imports.html +3 -0
- data/_includes/footer.html +1 -1
- data/_includes/head.html +2 -0
- data/_includes/header.html +4 -4
- data/_includes/scripts.html +3 -1
- data/_includes/social.html +13 -13
- data/_layouts/paginated_index.html +84 -0
- data/_sass/minima/_layout.scss +55 -13
- data/assets/banners/default/banner.svg +1 -0
- data/assets/banners/default/logos.svg +1 -0
- data/assets/banners/default/motto.svg +1 -0
- metadata +7 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd40670e8b7a45a94c6a4d826bb9ee7395c7c8c8
|
4
|
+
data.tar.gz: 829896176f72d30b4e7809b4e551a5eae2a999ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd80e87ec090f19c41114d094e0611ab3076bb616bbdfe403b502ff5a88c3ddfa2efd4e989283f6869083ddafedff1c396125bc68e17446623229331cbb400cd
|
7
|
+
data.tar.gz: e1bd99d96fe89e68bcefeb54a6e2a78fb8512d72d9700ea659de3ca05a484b3884d7487508fa1215697bb9f98f5fdeabeb41fbe538a70db4f0b9b6239056bebf
|
data/README.md
CHANGED
@@ -30,9 +30,67 @@ Or install it yourself as:
|
|
30
30
|
|
31
31
|
## Usage
|
32
32
|
|
33
|
-
###
|
33
|
+
### How to configure your website
|
34
|
+
Open the `_config.yml` file.
|
35
|
+
Update:
|
36
|
+
* _baseurl_ entry with the name of your repository,
|
37
|
+
* _title_ entry with your website's title,
|
38
|
+
* _email_ entry with your email,
|
39
|
+
* _new_menu_ to true, if you want to have menu items fully underlined (feel free to check how the site looks with the both options),
|
40
|
+
* _date_ entry to the year you want to appear in the footer,
|
41
|
+
* (optional) _banner_ to the name of the folder containing banner images (more later in this readme file)
|
42
|
+
* (optional) _logo_ to "small" or "big", depending on how wide your banner images are
|
43
|
+
|
44
|
+
Save, and commit the file. Every time you commit and push to the repository, the new page will be rebuilt and served.
|
45
|
+
|
46
|
+
|
47
|
+
### How to add new pages to the website?
|
48
|
+
Create a new `.md` file inside the project's directory.
|
49
|
+
For example, you can copy `index.md` file (and you can refer to its contents as to a valid page).
|
50
|
+
|
51
|
+
It should contain the following header:
|
52
|
+
|
53
|
+
---
|
54
|
+
layout: default
|
55
|
+
title: index
|
56
|
+
order: 1
|
57
|
+
---
|
58
|
+
|
59
|
+
* Leave layout as `default`.
|
60
|
+
* The title attribute (here - `index`) is displayed in the menu, thus rename it to your needs.
|
61
|
+
* Order attribute (here - `1`) decides about the order in the menu - lower numbers come first.
|
62
|
+
* In addition, you can add `permalink` attribute, which will cause the page to be accessible by the given permalink. For example : `permalink: /something/` refers to `https://your-webpage-address.com/something`.
|
63
|
+
|
64
|
+
Don't forget to save and commit the file.
|
65
|
+
|
66
|
+
|
67
|
+
### Customise images in the header
|
34
68
|
Create a folder in `assets/banners` directory, with `banner.svg`, `logos.svg` and `motto.svg` files (for reference, consult `assets/banners/frozen` directory. Do not exceed image dimensions). Update `_config.yml` file with the name of directory you created for the images.
|
35
|
-
In case `logos.svg` file is wide, change `logo: small` to `logo: big` in `_config.yml
|
69
|
+
In case `logos.svg` file is wide, change `logo: small` to `logo: big` in `_config.yml`.
|
70
|
+
|
71
|
+
### Enabling and configuring pagination
|
72
|
+
The template includes `jekyll-paginate-v2` plugin by default, but it's turned off.
|
73
|
+
To use it, configure the pagination following instructions from the next paragraph, go to `pagination.md` file and change `enabled: false` to `enabled: true`, and `published: false` to `published: true`. Later, create a directory called `_posts` in the project root directory and fill it with posts.
|
74
|
+
You may also need to disable showing `index.md`, by setting `published: false` in its contents.
|
75
|
+
|
76
|
+
There are two sections in `_config.yml`, that refer to pagination: first, ` - jekyll-paginate-v2` line in plugins section, and then the configuration dictionary:
|
77
|
+
|
78
|
+
```
|
79
|
+
pagination:
|
80
|
+
enabled: true # Note, that setting it to disabled does not disable it completely, as it has to be also set to false in `pagination.md` file
|
81
|
+
title: ':title - page :num of :max' # Customize the text
|
82
|
+
per_page: 8 # How many posts should be displayed on one page
|
83
|
+
permalink: '/page/:num/' # The URL to the index of pagination
|
84
|
+
limit: 0
|
85
|
+
sort_field: 'date' # How the posts should be sorted. can also be: `title` or any page attribute
|
86
|
+
sort_reverse: true
|
87
|
+
trail: # How many pages should be shown in paginator.
|
88
|
+
before: 2 # Show 2 before the current one, e.g. `< 5 6 CURRENT ...`
|
89
|
+
after: 2 # Show 2 after the current one, e.g. `... CURRENT 6 7 >`
|
90
|
+
```
|
91
|
+
|
92
|
+
To disable it completely, set `enabled` to `false`, remove the aforementioned sections from the configuration, and `gem "jekyll-paginate-v2", "~> 1.7"` from `Gemfile` (from the project's root), and remove `pagination.md` file from project's root directory.
|
93
|
+
Refer to its [documentation](https://github.com/sverrirs/jekyll-paginate-v2/blob/master/README-GENERATOR.md) for more detailed instructions.
|
36
94
|
|
37
95
|
### Enabling Google Analytics
|
38
96
|
|
data/_includes/footer.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
</div>{% endcomment %}
|
8
8
|
<br/>
|
9
9
|
<div class="footer-cp">
|
10
|
-
<p>© <a href="https://wwwen.uni.lu/">Université du Luxembourg</a> {{ site.date | escape }}. All rights reserved.</p>
|
10
|
+
<p>© <a href="https://wwwen.uni.lu/" target="_parent">Université du Luxembourg</a> {{ site.date | escape }}. All rights reserved.</p>
|
11
11
|
{%- include social.html -%}
|
12
12
|
</div>
|
13
13
|
</div>
|
data/_includes/head.html
CHANGED
@@ -7,6 +7,8 @@
|
|
7
7
|
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
|
8
8
|
<link rel="stylesheet" href="{{ '/assets/fontawesome/css/fontawesome-all.min.css' | relative_url }}">
|
9
9
|
|
10
|
+
{%- include css-imports.html -%}
|
11
|
+
|
10
12
|
{%- if jekyll.environment == 'production' and site.google_analytics -%}
|
11
13
|
{%- include google-analytics.html -%}
|
12
14
|
{%- endif -%}
|
data/_includes/header.html
CHANGED
@@ -40,11 +40,11 @@
|
|
40
40
|
{%- assign my_pages = site.pages | sort:"order" -%}
|
41
41
|
|
42
42
|
{%- for my_page in my_pages -%}
|
43
|
-
{%- if my_page.title -%}
|
44
|
-
{%- if page.
|
45
|
-
<a class="page-link
|
43
|
+
{%- if my_page.title and my_page.autogen == nil -%}
|
44
|
+
{%- if page.title contains my_page.title -%}
|
45
|
+
<a class="active page-link{%- if site.new_menu -%}2 {%- endif -%}" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
|
46
46
|
{% else %}
|
47
|
-
<a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
|
47
|
+
<a class="page-link{%- if site.new_menu -%}2 {%- endif -%}" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
|
48
48
|
{%- endif -%}
|
49
49
|
{%- endif -%}
|
50
50
|
{%- endfor -%}
|
data/_includes/scripts.html
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
{% comment %}
|
2
|
-
|
2
|
+
Add here additional javascript libraries and code.
|
3
|
+
Uncomment those if needed.
|
3
4
|
{% endcomment %}
|
5
|
+
|
4
6
|
{% comment %}
|
5
7
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
|
6
8
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
data/_includes/social.html
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
<ul class="social-media-list">
|
2
|
-
{%- if site.
|
3
|
-
|
4
|
-
{%- if site.linkedin_schoolname -%}<li><a href="https://www.linkedin.com/school/{{ site.linkedin_schoolname| cgi_escape | escape }}"><svg class="svg-icon svg-icon-linkedin"><use xlink:href="{{ '/assets/minima-social-icons.svg#linkedin' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
2
|
+
{%- if site.facebook_username -%}<li><a href="https://www.facebook.com/{{ site.facebook_username| cgi_escape | escape }}" target="_parent"><svg class="svg-icon svg-icon-fb"><use xlink:href="{{ '/assets/minima-social-icons.svg#facebook' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
3
|
+
{%- if site.twitter_username -%}<li><a href="https://www.twitter.com/{{ site.twitter_username| cgi_escape | escape }}" target="_parent"><svg class="svg-icon svg-icon-twitter"><use xlink:href="{{ '/assets/minima-social-icons.svg#twitter' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
4
|
+
{%- if site.linkedin_schoolname -%}<li><a href="https://www.linkedin.com/school/{{ site.linkedin_schoolname| cgi_escape | escape }}" target="_parent"><svg class="svg-icon svg-icon-linkedin"><use xlink:href="{{ '/assets/minima-social-icons.svg#linkedin' | relative_url }}"></use></svg></a></li>{%- endif -%}
|
5
5
|
|
6
|
-
{%- if site.dribbble_username -%}<li><a href="https://dribbble.com/{{ site.dribbble_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#dribbble' | relative_url }}"></use></svg> <span class="username">{{ site.dribbble_username| escape }}</span></a></li>{%- endif -%}
|
7
|
-
{%- if site.flickr_username -%}<li><a href="https://www.flickr.com/photos/{{ site.flickr_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#flickr' | relative_url }}"></use></svg> <span class="username">{{ site.flickr_username| escape }}</span></a></li>{%- endif -%}
|
8
|
-
{%- if site.github_username -%}<li><a href="https://github.com/{{ site.github_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#github' | relative_url }}"></use></svg> <span class="username">{{ site.github_username| escape }}</span></a></li>{%- endif -%}
|
9
|
-
{%- if site.instagram_username -%}<li><a href="https://instagram.com/{{ site.instagram_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#instagram' | relative_url }}"></use></svg> <span class="username">{{ site.instagram_username| escape }}</span></a></li>{%- endif -%}
|
10
|
-
{%- if site.linkedin_username -%}<li><a href="https://www.linkedin.com/in/{{ site.linkedin_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#linkedin' | relative_url }}"></use></svg> <span class="username">{{ site.linkedin_schoolname| escape }}</span></a></li>{%- endif -%}
|
11
|
-
{%- if site.pinterest_username -%}<li><a href="https://www.pinterest.com/{{ site.pinterest_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#pinterest' | relative_url }}"></use></svg> <span class="username">{{ site.pinterest_username| escape }}</span></a></li>{%- endif -%}
|
12
|
-
{%- for mst in site.mastodon -%}{%- if mst.username and mst.instance -%}<li><a href="https://{{ mst.instance| cgi_escape | escape}}/@{{mst.username}}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#mastodon' | relative_url }}"></use></svg> <span class="username">{{ mst.username|escape }}</span></a></li>{%- endif -%}{%- endfor -%}
|
13
|
-
{%- if site.youtube_username -%}<li><a href="https://youtube.com/{{ site.youtube_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#youtube' | relative_url }}"></use></svg> <span class="username">{{ site.youtube_username| escape }}</span></a></li>{%- endif -%}
|
14
|
-
{%- if site.googleplus_username -%}<li><a href="https://plus.google.com/{{ site.googleplus_username| escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#googleplus' | relative_url }}"></use></svg> <span class="username">{{ site.googleplus_username| escape }}</span></a></li>{%- endif -%}
|
15
|
-
{%- if site.rss -%}<li><a href="{{ 'feed.xml' | relative_url }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#rss' | relative_url }}"></use></svg> <span>{{ site.rss | escape }}</span></a></li>{%- endif -%}
|
6
|
+
{%- if site.dribbble_username -%}<li><a href="https://dribbble.com/{{ site.dribbble_username| cgi_escape | escape }}" target="_parent"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#dribbble' | relative_url }}"></use></svg> <span class="username">{{ site.dribbble_username| escape }}</span></a></li>{%- endif -%}
|
7
|
+
{%- if site.flickr_username -%}<li><a href="https://www.flickr.com/photos/{{ site.flickr_username| cgi_escape | escape }}" target="_parent"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#flickr' | relative_url }}"></use></svg> <span class="username">{{ site.flickr_username| escape }}</span></a></li>{%- endif -%}
|
8
|
+
{%- if site.github_username -%}<li><a href="https://github.com/{{ site.github_username| cgi_escape | escape }}" target="_parent"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#github' | relative_url }}"></use></svg> <span class="username">{{ site.github_username| escape }}</span></a></li>{%- endif -%}
|
9
|
+
{%- if site.instagram_username -%}<li><a href="https://instagram.com/{{ site.instagram_username| cgi_escape | escape }}" target="_parent"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#instagram' | relative_url }}"></use></svg> <span class="username">{{ site.instagram_username| escape }}</span></a></li>{%- endif -%}
|
10
|
+
{%- if site.linkedin_username -%}<li><a href="https://www.linkedin.com/in/{{ site.linkedin_username| cgi_escape | escape }}" target="_parent"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#linkedin' | relative_url }}"></use></svg> <span class="username">{{ site.linkedin_schoolname| escape }}</span></a></li>{%- endif -%}
|
11
|
+
{%- if site.pinterest_username -%}<li><a href="https://www.pinterest.com/{{ site.pinterest_username| cgi_escape | escape }}" target="_parent"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#pinterest' | relative_url }}"></use></svg> <span class="username">{{ site.pinterest_username| escape }}</span></a></li>{%- endif -%}
|
12
|
+
{%- for mst in site.mastodon -%}{%- if mst.username and mst.instance -%}<li><a href="https://{{ mst.instance| cgi_escape | escape}}/@{{mst.username}}" target="_parent"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#mastodon' | relative_url }}"></use></svg> <span class="username">{{ mst.username|escape }}</span></a></li>{%- endif -%}{%- endfor -%}
|
13
|
+
{%- if site.youtube_username -%}<li><a href="https://youtube.com/{{ site.youtube_username| cgi_escape | escape }}" target="_parent"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#youtube' | relative_url }}"></use></svg> <span class="username">{{ site.youtube_username| escape }}</span></a></li>{%- endif -%}
|
14
|
+
{%- if site.googleplus_username -%}<li><a href="https://plus.google.com/{{ site.googleplus_username| escape }}" target="_parent"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#googleplus' | relative_url }}"></use></svg> <span class="username">{{ site.googleplus_username| escape }}</span></a></li>{%- endif -%}
|
15
|
+
{%- if site.rss -%}<li><a href="{{ 'feed.xml' | relative_url }}" target="_parent"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#rss' | relative_url }}"></use></svg> <span>{{ site.rss | escape }}</span></a></li>{%- endif -%}
|
16
16
|
</ul>
|
@@ -0,0 +1,84 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<style>
|
6
|
+
h2 {margin-bottom: 3px;}
|
7
|
+
ul.pager { text-align: center; list-style: none; }
|
8
|
+
ul.pager li {display: inline; padding: 10px; margin: 5px; border: solid 1px #e3e3e3; }
|
9
|
+
ul.pager li:hover { text-decoration: none; border: solid 1px #929292; }
|
10
|
+
ul.pager a:hover { text-decoration: none; }
|
11
|
+
ul.pager li.pager-active { background-color: white; border: solid 1px #929292; }
|
12
|
+
</style>
|
13
|
+
|
14
|
+
<div class="home">
|
15
|
+
<h1 class="page-heading">
|
16
|
+
Posts
|
17
|
+
</h1>
|
18
|
+
|
19
|
+
{{ content }}
|
20
|
+
|
21
|
+
<ul class="post-list">
|
22
|
+
{% comment %}
|
23
|
+
Here is the main paginator logic called.
|
24
|
+
All calls to site.posts should be replaced by paginator.posts
|
25
|
+
{% endcomment %}
|
26
|
+
|
27
|
+
{% for post in paginator.posts %}
|
28
|
+
<li>
|
29
|
+
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
|
30
|
+
|
31
|
+
<h2>
|
32
|
+
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
|
33
|
+
</h2>
|
34
|
+
|
35
|
+
<span class="post-meta">{% if post.synopsis %}{{ post.synopsis }}{% endif %}</span>
|
36
|
+
</li>
|
37
|
+
{% endfor %}
|
38
|
+
</ul>
|
39
|
+
|
40
|
+
{% comment %}
|
41
|
+
Showing buttons to move to the next and to the previous list of posts (pager buttons).
|
42
|
+
|
43
|
+
Some legacy code (might be useful):
|
44
|
+
{% if paginator.total_pages > 1 %}
|
45
|
+
<ul class="pager">
|
46
|
+
{% if paginator.previous_page %}
|
47
|
+
<li class="previous">
|
48
|
+
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Newer Posts</a>
|
49
|
+
</li>
|
50
|
+
{% endif %}
|
51
|
+
{% if paginator.next_page %}
|
52
|
+
<li class="next">
|
53
|
+
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older Posts →</a>
|
54
|
+
</li>
|
55
|
+
{% endif %}
|
56
|
+
</ul>
|
57
|
+
{% endif %}
|
58
|
+
{% endcomment %}
|
59
|
+
|
60
|
+
|
61
|
+
{% if paginator.page_trail %}
|
62
|
+
<ul class="pager" style="margin-top: 60px;">
|
63
|
+
{% if paginator.previous_page %}
|
64
|
+
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">
|
65
|
+
<li class="previous">«</li>
|
66
|
+
</a>
|
67
|
+
{% endif %}
|
68
|
+
|
69
|
+
{% for trail in paginator.page_trail %}
|
70
|
+
<a href="{{ trail.path | prepend: site.baseurl }}" title="{{trail.title}}">
|
71
|
+
<li {% if page.url == trail.path %}class="pager-active"{% endif %}>{{ trail.num | replace: " ", "" }}</li>
|
72
|
+
</a>
|
73
|
+
{% endfor %}
|
74
|
+
|
75
|
+
{% if paginator.next_page %}
|
76
|
+
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">
|
77
|
+
<li class="next">»</li>
|
78
|
+
</a>
|
79
|
+
{% endif %}
|
80
|
+
</ul>
|
81
|
+
{% endif %}
|
82
|
+
|
83
|
+
<p class="rss-subscribe" style="float: right; font-size: smaller;">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
|
84
|
+
</div>
|
data/_sass/minima/_layout.scss
CHANGED
@@ -55,7 +55,11 @@ html {
|
|
55
55
|
display: none;
|
56
56
|
}
|
57
57
|
|
58
|
-
.page-
|
58
|
+
a.page-link2.active {
|
59
|
+
color: #222;
|
60
|
+
}
|
61
|
+
|
62
|
+
.page-link:hover, .page-link2:hover {
|
59
63
|
text-decoration: none;
|
60
64
|
}
|
61
65
|
|
@@ -70,41 +74,70 @@ html {
|
|
70
74
|
border-bottom: solid 3px #cbcfda;
|
71
75
|
position: absolute;
|
72
76
|
top: 30px;
|
73
|
-
left:
|
77
|
+
left: 10px;
|
74
78
|
float: left;
|
75
79
|
}
|
80
|
+
.page-link2.active {
|
81
|
+
border-bottom: 3px solid #808080;
|
82
|
+
}
|
76
83
|
}
|
77
84
|
|
78
85
|
@media (max-width: 640px) {
|
79
|
-
.page-link.active:before {
|
86
|
+
.page-link.active:before, .page-link2.active:before {
|
80
87
|
content: "\2022";
|
81
88
|
margin-right: 10px;
|
82
89
|
position: absolute;
|
83
90
|
left: 12%;
|
84
91
|
color: rgb(23, 168, 225);
|
85
92
|
}
|
86
|
-
.page-link.active {
|
93
|
+
.page-link.active, .page-link2.active {
|
87
94
|
font-weight: 600;
|
88
95
|
color: rgb(23, 168, 225);
|
89
96
|
}
|
90
|
-
.page-link {
|
97
|
+
.page-link, .page-link2 {
|
91
98
|
color: #222;
|
92
99
|
}
|
93
100
|
}
|
94
101
|
|
95
102
|
@media (min-width: 640px) {
|
96
|
-
.page-
|
97
|
-
|
103
|
+
.page-link2:hover {
|
104
|
+
border-bottom: 3px solid #808080;
|
105
|
+
}
|
98
106
|
|
99
|
-
|
100
|
-
|
107
|
+
.page-link:hover, .page-link2:hover {
|
108
|
+
color: #222 !important;
|
109
|
+
&:not(.active) { // padding-top: 20px;
|
101
110
|
}
|
102
111
|
}
|
103
112
|
|
113
|
+
.page-link2 {
|
114
|
+
position: relative;
|
115
|
+
|
116
|
+
// New version (full underline)
|
117
|
+
min-width: 40px;
|
118
|
+
margin: 0 15px 0 8px;
|
119
|
+
padding: 0 2px 0 2px;
|
120
|
+
border-bottom: 3px solid #e0e0e0;
|
121
|
+
|
122
|
+
float: left;
|
123
|
+
|
124
|
+
-moz-transition: padding 0.8s ease;
|
125
|
+
-webkit-transition: padding 0.8s ease;
|
126
|
+
-o-transition: padding 0.8s ease;
|
127
|
+
transition: padding 0.8s ease;
|
128
|
+
|
129
|
+
-moz-transition: border 0.3s ease;
|
130
|
+
-webkit-transition: border 0.3s ease;
|
131
|
+
-o-transition: border 0.3s ease;
|
132
|
+
transition: border 0.3s ease;
|
133
|
+
|
134
|
+
z-index: 8;
|
135
|
+
}
|
136
|
+
|
104
137
|
.page-link {
|
105
|
-
min-width: 60px;
|
106
138
|
position: relative;
|
107
139
|
|
140
|
+
min-width: 60px;
|
108
141
|
margin: 0 0 0 -1px;
|
109
142
|
padding: 2px 10px 4px 9px;
|
110
143
|
|
@@ -115,6 +148,11 @@ html {
|
|
115
148
|
-o-transition: padding 0.8s ease;
|
116
149
|
transition: padding 0.8s ease;
|
117
150
|
|
151
|
+
-moz-transition: border 0.3s ease;
|
152
|
+
-webkit-transition: border 0.3s ease;
|
153
|
+
-o-transition: border 0.3s ease;
|
154
|
+
transition: border 0.3s ease;
|
155
|
+
|
118
156
|
z-index: 8;
|
119
157
|
}
|
120
158
|
|
@@ -123,11 +161,11 @@ html {
|
|
123
161
|
}
|
124
162
|
}
|
125
163
|
|
126
|
-
.page-link {
|
164
|
+
.page-link, .page-link2 {
|
127
165
|
// color: $text-color;
|
128
166
|
line-height: $base-line-height;
|
129
167
|
font-weight: 600;
|
130
|
-
text-align:
|
168
|
+
text-align: left;
|
131
169
|
|
132
170
|
// Gaps between nav items, but not on the last one
|
133
171
|
&:not(:last-child) {
|
@@ -177,7 +215,7 @@ html {
|
|
177
215
|
padding-bottom: 5px;
|
178
216
|
}
|
179
217
|
|
180
|
-
.page-link {
|
218
|
+
.page-link, .page-link2 {
|
181
219
|
display: block;
|
182
220
|
padding: 5px 10px;
|
183
221
|
|
@@ -347,3 +385,7 @@ html {
|
|
347
385
|
}
|
348
386
|
}
|
349
387
|
}
|
388
|
+
|
389
|
+
.pager-active {
|
390
|
+
background-color: #cbdce9;
|
391
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg id="default" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24.64853 8.09275"><defs><style>.cls-1{fill:#5d5d5d;}</style></defs><title>default</title><path class="cls-1" d="M1.39849,7.36941v-6.5h.585v5.96H5.25152v.54Z"/><path class="cls-1" d="M10.3814,2.39089A1.37186,1.37186,0,0,0,8.85113,1.27468c-1.66553,0-2.16992,1.51221-2.16992,2.84473S7.1856,6.96413,8.85113,6.96413a1.51872,1.51872,0,0,0,1.60254-1.17041h.62988A2.16362,2.16362,0,0,1,8.85113,7.50466c-1.97168,0-2.79981-1.58447-2.79981-3.38525,0-1.78272.83692-3.38477,2.79981-3.38477,1.062,0,2.07031.48584,2.16064,1.65625Z"/><path class="cls-1" d="M13.96246,7.50466A1.88181,1.88181,0,0,1,12.02691,5.677h.63037c.01807.999.75635,1.28711,1.62939,1.28711.7295,0,1.56641-.42285,1.56641-1.251,0-.64844-.46777-.95459-1.01709-1.13477-1.05322-.35107-2.65576-.68408-2.65576-2.08838A1.893,1.893,0,0,1,14.25054.73464,1.86777,1.86777,0,0,1,16.36626,2.283h-.62988c-.01806-.80127-.74756-1.0083-1.41357-1.0083-.6753,0-1.5127.3418-1.5127,1.13428,0,1.8457,3.67334,1.0083,3.67334,3.25C16.48345,7.07253,15.26812,7.50466,13.96246,7.50466Z"/><path class="cls-1" d="M17.90435,7.36941v-6.5l2.33154.00927A1.6559,1.6559,0,0,1,22.04546,2.4988a1.528,1.528,0,0,1-1.20654,1.46777v.01807A1.60341,1.60341,0,0,1,22.31548,5.6321a1.70515,1.70515,0,0,1-1.93554,1.73731ZM19.90289,3.7322c.75634,0,1.5122-.29688,1.5122-1.1792,0-.94531-.77392-1.13428-1.53906-1.14355H18.48931V3.7322ZM18.48931,6.82937H19.921c1.11621.01806,1.76465-.2793,1.76465-1.27832,0-1.10742-.8916-1.27832-2.11572-1.27832H18.48931Z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 67.44148 23.81832"><defs><style>.cls-1{fill:#575b5e;}.cls-2{fill:#00aae5;}.cls-3{fill:#ee2e27;}</style></defs><title>default</title><g id="lcsb-long_copy" data-name="lcsb-long copy"><polygon class="cls-1" points="23.998 12.642 25.012 12.642 25.012 12.414 24.257 12.414 24.257 10.836 23.998 10.836 23.998 12.642"/><polygon class="cls-1" points="23.998 12.642 25.012 12.642 25.012 12.414 24.257 12.414 24.257 10.836 23.998 10.836 23.998 12.642"/><path class="cls-1" d="M26.65751,11.32229h-.24328v.61045c0,.32094-.12407.54345-.40085.54345-.21222-.01291-.2794-.163-.2794-.47084v-.68306h-.24309v.78393c0,.35425.1527.56646.494.56646a.47407.47407,0,0,0,.43192-.24046h.00524v.2094h.23542Z"/><path class="cls-1" d="M26.65751,11.32229h-.24328v.61045c0,.32094-.12407.54345-.40085.54345-.21222-.01291-.2794-.163-.2794-.47084v-.68306h-.24309v.78393c0,.35425.1527.56646.494.56646a.47407.47407,0,0,0,.43192-.24046h.00524v.2094h.23542Z"/><polygon class="cls-1" points="27.135 12.642 27.425 12.642 27.751 12.124 28.077 12.642 28.377 12.642 27.911 11.951 28.335 11.322 28.064 11.322 27.771 11.793 27.484 11.322 27.182 11.322 27.611 11.951 27.135 12.642"/><polygon class="cls-1" points="27.135 12.642 27.425 12.642 27.751 12.124 28.077 12.642 28.377 12.642 27.911 11.951 28.335 11.322 28.064 11.322 27.771 11.793 27.484 11.322 27.182 11.322 27.611 11.951 27.135 12.642"/><path class="cls-1" d="M29.84113,12.34418a.782.782,0,0,1-.40628.13194.43165.43165,0,0,1-.43454-.44H29.942c0-.424-.14241-.745-.582-.745a.613.613,0,0,0-.6183.66752.63118.63118,0,0,0,.68268.71393,1.01032,1.01032,0,0,0,.41676-.08534Zm-.84082-.489a.36531.36531,0,0,1,.35444-.36735.333.333,0,0,1,.32862.36735Z"/><path class="cls-1" d="M29.84113,12.34418a.782.782,0,0,1-.40628.13194.43165.43165,0,0,1-.43454-.44H29.942c0-.424-.14241-.745-.582-.745a.613.613,0,0,0-.6183.66752.63118.63118,0,0,0,.68268.71393,1.01032,1.01032,0,0,0,.41676-.08534Zm-.84082-.489a.36531.36531,0,0,1,.35444-.36735.333.333,0,0,1,.32862.36735Z"/><path class="cls-1" d="M30.48426,12.64169h.24328v-.6649c0-.24572.09825-.489.34658-.489.1965,0,.23542.20435.23542.36754v.78635h.24328v-.6649c0-.24572.09806-.489.34658-.489.1965,0,.23524.20435.23524.36754v.78635h.24327v-.84586c0-.28726-.12145-.50471-.45792-.50471a.47041.47041,0,0,0-.40871.25619.38993.38993,0,0,0-.37522-.25619.446.446,0,0,0-.419.22269H30.712v-.19144h-.22775Z"/><path class="cls-1" d="M30.48426,12.64169h.24328v-.6649c0-.24572.09825-.489.34658-.489.1965,0,.23542.20435.23542.36754v.78635h.24328v-.6649c0-.24572.09806-.489.34658-.489.1965,0,.23524.20435.23524.36754v.78635h.24327v-.84586c0-.28726-.12145-.50471-.45792-.50471a.47041.47041,0,0,0-.40871.25619.38993.38993,0,0,0-.37522-.25619.446.446,0,0,0-.419.22269H30.712v-.19144h-.22775Z"/><path class="cls-1" d="M32.95387,12.64175h.2328v-.1862h.00524a.53015.53015,0,0,0,.45007.21708c.39842,0,.56647-.35182.56647-.71393,0-.35426-.18621-.66752-.5689-.66752a.47083.47083,0,0,0-.43735.21221h-.005v-.80188h-.24328Zm.996-.6649c.00524.207-.10349.4991-.36473.4991-.27416,0-.38794-.27154-.38794-.49143,0-.24571.12651-.49666.39056-.49666.26368,0,.36735.251.36211.489"/><path class="cls-1" d="M32.95387,12.64175h.2328v-.1862h.00524a.53015.53015,0,0,0,.45007.21708c.39842,0,.56647-.35182.56647-.71393,0-.35426-.18621-.66752-.5689-.66752a.47083.47083,0,0,0-.43735.21221h-.005v-.80188h-.24328Zm.996-.6649c.00524.207-.10349.4991-.36473.4991-.27416,0-.38794-.27154-.38794-.49143,0-.24571.12651-.49666.39056-.49666C33.85139,11.48786,33.95506,11.73881,33.94982,11.97685Z"/><path class="cls-1" d="M34.61388,11.98194a.67154.67154,0,1,0,1.34253,0,.67154.67154,0,1,0-1.34253,0m.25863,0a.41935.41935,0,1,1,.82528,0,.41935.41935,0,1,1-.82528,0"/><path class="cls-1" d="M34.61388,11.98194a.67154.67154,0,1,0,1.34253,0,.67154.67154,0,1,0-1.34253,0Zm.25863,0a.41935.41935,0,1,1,.82528,0,.41935.41935,0,1,1-.82528,0Z"/><path class="cls-1" d="M37.59054,11.32229h-.24328v.61045c0,.32094-.12407.54345-.40085.54345-.21221-.01291-.2794-.163-.2794-.47084v-.68306h-.24328v.78393c0,.35425.15271.56646.49424.56646a.47407.47407,0,0,0,.43191-.24046h.00524v.2094h.23542Z"/><path class="cls-1" d="M37.59054,11.32229h-.24328v.61045c0,.32094-.12407.54345-.40085.54345-.21221-.01291-.2794-.163-.2794-.47084v-.68306h-.24328v.78393c0,.35425.15271.56646.49424.56646a.47407.47407,0,0,0,.43191-.24046h.00524v.2094h.23542Z"/><path class="cls-1" d="M38.22331,12.64169h.24309v-.60015c0-.33124.14242-.53821.35968-.53821a.35959.35959,0,0,1,.13456.02339v-.21727a.68885.68885,0,0,0-.16057-.01833.40192.40192,0,0,0-.344.2356h-.00524v-.20435h-.22756Z"/><path class="cls-1" d="M38.22331,12.64169h.24309v-.60015c0-.33124.14242-.53821.35968-.53821a.35959.35959,0,0,1,.13456.02339v-.21727a.68885.68885,0,0,0-.16057-.01833.40192.40192,0,0,0-.344.2356h-.00524v-.20435h-.22756Z"/><path class="cls-1" d="M40.61544,11.32222h-.22513v.19669h-.005a.43358.43358,0,0,0-.43472-.22775.63315.63315,0,0,0-.58986.7012.57958.57958,0,0,0,.564.64919.55059.55059,0,0,0,.4424-.20436h.00505v.1295a.3989.3989,0,0,1-.40871.45269,1.00466,1.00466,0,0,1-.47589-.119l-.026.22513a1.33838,1.33838,0,0,0,.47347.09038c.47346,0,.68043-.23018.68043-.631Zm-.62878,1.12283c-.22756,0-.36717-.21727-.36717-.4656,0-.22513.12145-.49161.36717-.49161.25881,0,.3855.23542.3855.50976a.41112.41112,0,0,1-.3855.44745"/><path class="cls-1" d="M40.61544,11.32222h-.22513v.19669h-.005a.43358.43358,0,0,0-.43472-.22775.63315.63315,0,0,0-.58986.7012.57958.57958,0,0,0,.564.64919.55059.55059,0,0,0,.4424-.20436h.00505v.1295a.3989.3989,0,0,1-.40871.45269,1.00466,1.00466,0,0,1-.47589-.119l-.026.22513a1.33838,1.33838,0,0,0,.47347.09038c.47346,0,.68043-.23018.68043-.631Zm-.62878,1.12283c-.22756,0-.36717-.21727-.36717-.4656,0-.22513.12145-.49161.36717-.49161.25881,0,.3855.23542.3855.50976A.41112.41112,0,0,1,39.98666,12.44505Z"/><path class="cls-1" d="M43.55486,10.88252a.99531.99531,0,0,0-.40609-.07766.9.9,0,0,0-.9546.92615.88957.88957,0,0,0,.952.94167,1.12805,1.12805,0,0,0,.41133-.06456L43.542,12.357a.88734.88734,0,0,1-.39318.08814.70656.70656,0,0,1,.01291-1.41252.72676.72676,0,0,1,.37259.10087Z"/><path class="cls-1" d="M43.55486,10.88252a.99531.99531,0,0,0-.40609-.07766.9.9,0,0,0-.9546.92615.88957.88957,0,0,0,.952.94167,1.12805,1.12805,0,0,0,.41133-.06456L43.542,12.357a.88734.88734,0,0,1-.39318.08814.70656.70656,0,0,1,.01291-1.41252.72676.72676,0,0,1,.37259.10087Z"/><path class="cls-1" d="M45.0751,12.34418a.78122.78122,0,0,1-.40609.13194.43164.43164,0,0,1-.43453-.44H45.176c0-.424-.14241-.745-.5818-.745a.61312.61312,0,0,0-.6185.66752.63128.63128,0,0,0,.68306.71393,1.00815,1.00815,0,0,0,.41638-.08534Zm-.84062-.489a.3653.3653,0,0,1,.35443-.36735.333.333,0,0,1,.32843.36735Z"/><path class="cls-1" d="M45.0751,12.34418a.78122.78122,0,0,1-.40609.13194.43164.43164,0,0,1-.43453-.44H45.176c0-.424-.14241-.745-.5818-.745a.61312.61312,0,0,0-.6185.66752.63128.63128,0,0,0,.68306.71393,1.00815,1.00815,0,0,0,.41638-.08534Zm-.84062-.489a.3653.3653,0,0,1,.35443-.36735.333.333,0,0,1,.32843.36735Z"/><path class="cls-1" d="M45.72077,12.64169H45.964v-.61044c0-.32095.12426-.54345.40085-.54345.21241.01291.27959.16318.27959.47084v.683h.24328v-.78392c0-.35444-.15271-.56665-.49424-.56665a.4745.4745,0,0,0-.4321.24084h-.005v-.20959h-.2356Z"/><path class="cls-1" d="M45.72077,12.64169H45.964v-.61044c0-.32095.12426-.54345.40085-.54345.21241.01291.27959.16318.27959.47084v.683h.24328v-.78392c0-.35444-.15271-.56665-.49424-.56665a.4745.4745,0,0,0-.4321.24084h-.005v-.20959h-.2356Z"/><path class="cls-1" d="M48.2214,11.32229h-.34921v-.38288l-.24327.07766v.30522h-.29718v.1965h.29718v.771c0,.26387.15532.38288.40627.38288a.75225.75225,0,0,0,.207-.0363v-.20679a.3004.3004,0,0,1-.16562.0466.20956.20956,0,0,1-.20436-.23561v-.72179h.34921Z"/><path class="cls-1" d="M48.2214,11.32229h-.34921v-.38288l-.24327.07766v.30522h-.29718v.1965h.29718v.771c0,.26387.15532.38288.40627.38288a.75225.75225,0,0,0,.207-.0363v-.20679a.3004.3004,0,0,1-.16562.0466.20956.20956,0,0,1-.20436-.23561v-.72179h.34921Z"/><path class="cls-1" d="M48.79743,12.64169h.24328v-.60015c0-.33124.142-.53821.35967-.53821a.3602.3602,0,0,1,.13456.02339v-.21727a.69014.69014,0,0,0-.16057-.01833.401.401,0,0,0-.34377.2356h-.00543v-.20435h-.22774Z"/><path class="cls-1" d="M48.79743,12.64169h.24328v-.60015c0-.33124.142-.53821.35967-.53821a.3602.3602,0,0,1,.13456.02339v-.21727a.69014.69014,0,0,0-.16057-.01833.401.401,0,0,0-.34377.2356h-.00543v-.20435h-.22774Z"/><path class="cls-1" d="M51.00863,12.34418a.782.782,0,0,1-.40627.13194.43168.43168,0,0,1-.43472-.44h.94186c0-.424-.14241-.745-.58219-.745a.613.613,0,0,0-.6183.66752.63131.63131,0,0,0,.68287.71393,1.01179,1.01179,0,0,0,.41675-.08534Zm-.841-.489a.3653.3653,0,0,1,.35443-.36735.333.333,0,0,1,.32862.36735Z"/><path class="cls-1" d="M51.00863,12.34418a.782.782,0,0,1-.40627.13194.43168.43168,0,0,1-.43472-.44h.94186c0-.424-.14241-.745-.58219-.745a.613.613,0,0,0-.6183.66752.63131.63131,0,0,0,.68287.71393,1.01179,1.01179,0,0,0,.41675-.08534Zm-.841-.489a.3653.3653,0,0,1,.35443-.36735.333.333,0,0,1,.32862.36735Z"/><path class="cls-2" d="M38.29772,13.68059a.82772.82772,0,1,1-.8279.82753.82765.82765,0,0,1,.8279-.82753"/><path class="cls-2" d="M38.31344,16.59175a.68306.68306,0,1,1-.68306.68306.68306.68306,0,0,1,.68306-.68306"/><path class="cls-2" d="M38.30015,19.05191a.61615.61615,0,1,1-.61643.61625.61633.61633,0,0,1,.61643-.61625"/><path class="cls-2" d="M35.286,13.68059a.82772.82772,0,1,1-.8279.82753.82766.82766,0,0,1,.8279-.82753"/><path class="cls-2" d="M35.29233,16.59175a.68306.68306,0,1,1-.68305.68306.68306.68306,0,0,1,.68305-.68306"/><path class="cls-2" d="M35.28838,19.05191a.61615.61615,0,1,1-.61625.61625.61633.61633,0,0,1,.61625-.61625"/><path class="cls-2" d="M41.32608,16.59175a.68306.68306,0,1,1-.68306.68306.68306.68306,0,0,1,.68306-.68306"/><path class="cls-2" d="M41.33632,19.05191a.61615.61615,0,1,1-.61644.61625.61657.61657,0,0,1,.61644-.61625"/><path class="cls-2" d="M44.35172,16.59175a.68306.68306,0,1,1-.68324.68306.6829.6829,0,0,1,.68324-.68306"/><path class="cls-2" d="M44.343,19.05191a.61615.61615,0,1,1-.61626.61625.61645.61645,0,0,1,.61626-.61625"/><path class="cls-2" d="M47.369,16.59175a.68306.68306,0,1,1-.68306.68306.68306.68306,0,0,1,.68306-.68306"/><path class="cls-2" d="M47.35559,19.05191a.61615.61615,0,1,1-.61644.61625.61645.61645,0,0,1,.61644-.61625"/><path class="cls-2" d="M50.38665,16.59175a.68306.68306,0,1,1-.68306.68306.68294.68294,0,0,1,.68306-.68306"/><path class="cls-2" d="M50.38724,19.061a.61625.61625,0,1,1-.61643.61626.61621.61621,0,0,1,.61643-.61626"/><path class="cls-3" d="M47.36142,10.22781a.82771.82771,0,1,1,.82771-.82789.82782.82782,0,0,1-.82771.82789"/><path class="cls-3" d="M47.34565,7.16679a.683.683,0,1,1,.68305-.683.683.683,0,0,1-.68305.683"/><path class="cls-3" d="M47.35618,4.65469a.5602.5602,0,1,1,.56029-.56029.56043.56043,0,0,1-.56029.56029"/><path class="cls-3" d="M50.37319,10.22781a.82771.82771,0,1,1,.82771-.82789.82782.82782,0,0,1-.82771.82789"/><path class="cls-3" d="M50.36677,7.16679a.68305.68305,0,1,1,.68306-.683.683.683,0,0,1-.68306.683"/><path class="cls-3" d="M50.34775,4.67924a.56188.56188,0,1,1,.562-.56179.56183.56183,0,0,1-.562.56179"/><path class="cls-3" d="M44.17569,10.22781a.82771.82771,0,1,1,.82771-.82789.82805.82805,0,0,1-.82771.82789"/><path class="cls-3" d="M44.333,7.16679a.68305.68305,0,1,1,.68306-.683.683.683,0,0,1-.68306.683"/><path class="cls-3" d="M44.32015,4.65469a.5602.5602,0,1,1,.56029-.56029.56015.56015,0,0,1-.56029.56029"/><path class="cls-3" d="M41.32279,10.22781a.82771.82771,0,1,1,.82771-.82789.82781.82781,0,0,1-.82771.82789"/><path class="cls-3" d="M41.30707,7.16679a.68305.68305,0,1,1,.68324-.683.68329.68329,0,0,1-.68324.683"/><path class="cls-3" d="M41.31308,4.65469a.5602.5602,0,1,1,.56029-.56029.56015.56015,0,0,1-.56029.56029"/><path class="cls-3" d="M38.31044,10.22781a.82771.82771,0,1,1,.82771-.82789.828.828,0,0,1-.82771.82789"/><path class="cls-3" d="M38.29014,7.16679a.68305.68305,0,1,1,.68324-.683.68329.68329,0,0,1-.68324.683"/><path class="cls-3" d="M38.30058,4.65469a.5602.5602,0,1,1,.56029-.56029.56014.56014,0,0,1-.56029.56029"/><path class="cls-3" d="M35.28919,8.55016a.82772.82772,0,1,1-.8279.82771.82781.82781,0,0,1,.8279-.82771"/><path class="cls-3" d="M35.27252,7.16679a.68305.68305,0,1,1,.68305-.683.683.683,0,0,1-.68305.683"/><path class="cls-3" d="M35.26894,4.64526a.5602.5602,0,1,1,.56029-.56029.56018.56018,0,0,1-.56029.56029"/><path class="cls-1" d="M40.15682,15.18662h.183v-.84474h.26274V14.194h-.26274v-.107c0-.13437.01946-.23542.177-.23542a.2871.2871,0,0,1,.08759.0116l.00786-.14784a.73573.73573,0,0,0-.12277-.01179c-.27041,0-.33273.15776-.33273.399V14.194h-.23355v.14784h.23355Z"/><path class="cls-1" d="M40.15682,15.18662h.183v-.84474h.26274V14.194h-.26274v-.107c0-.13437.01946-.23542.177-.23542a.2871.2871,0,0,1,.08759.0116l.00786-.14784a.73573.73573,0,0,0-.12277-.01179c-.27041,0-.33273.15776-.33273.399V14.194h-.23355v.14784h.23355Z"/><path class="cls-1" d="M40.81974,14.6904a.50529.50529,0,1,0,1.01017,0,.50529.50529,0,1,0-1.01017,0m.19462,0a.3155.3155,0,1,1,.62093,0,.3155.3155,0,1,1-.62093,0"/><path class="cls-1" d="M40.81974,14.6904a.50529.50529,0,1,0,1.01017,0,.50529.50529,0,1,0-1.01017,0Zm.19462,0a.3155.3155,0,1,1,.62093,0,.3155.3155,0,1,1-.62093,0Z"/><path class="cls-1" d="M42.14648,15.18662h.183v-.45156c0-.24908.107-.40478.27041-.40478a.274.274,0,0,1,.10125.01759v-.16356a.51242.51242,0,0,0-.12071-.01366.3017.3017,0,0,0-.25881.17722h-.00393V14.194h-.17123Z"/><path class="cls-1" d="M42.14648,15.18662h.183v-.45156c0-.24908.107-.40478.27041-.40478a.274.274,0,0,1,.10125.01759v-.16356a.51242.51242,0,0,0-.12071-.01366.3017.3017,0,0,0-.25881.17722h-.00393V14.194h-.17123Z"/><path class="cls-1" d="M44.38506,13.85339a.90367.90367,0,0,0-.28988-.04865c-.24533,0-.436.12838-.436.37,0,.42238.58388.33853.58388.64226a.24321.24321,0,0,1-.26649.22176.826.826,0,0,1-.28221-.06606l-.01965.181a.91014.91014,0,0,0,.27847.05651c.27228,0,.49629-.11509.49629-.405,0-.44764-.58406-.38718-.58406-.64825,0-.142.12856-.181.23747-.181a.60011.60011,0,0,1,.25489.05652Z"/><path class="cls-1" d="M44.38506,13.85339a.90367.90367,0,0,0-.28988-.04865c-.24533,0-.436.12838-.436.37,0,.42238.58388.33853.58388.64226a.24321.24321,0,0,1-.26649.22176.826.826,0,0,1-.28221-.06606l-.01965.181a.91014.91014,0,0,0,.27847.05651c.27228,0,.49629-.11509.49629-.405,0-.44764-.58406-.38718-.58406-.64825,0-.142.12856-.181.23747-.181a.60011.60011,0,0,1,.25489.05652Z"/><path class="cls-1" d="M44.70232,15.60505a.60356.60356,0,0,0,.12463.01366c.24141,0,.31346-.21989.38158-.41058l.36567-1.0141h-.18471l-.27247.82153h-.00393l-.26667-.82153h-.20061l.33684.92652a.53684.53684,0,0,1,.03481.105c0,.01965-.05427.24534-.21783.24534a.27858.27858,0,0,1-.08571-.01572Z"/><path class="cls-1" d="M44.70232,15.60505a.60356.60356,0,0,0,.12463.01366c.24141,0,.31346-.21989.38158-.41058l.36567-1.0141h-.18471l-.27247.82153h-.00393l-.26667-.82153h-.20061l.33684.92652a.53684.53684,0,0,1,.03481.105c0,.01965-.05427.24534-.21783.24534a.27858.27858,0,0,1-.08571-.01572Z"/><path class="cls-1" d="M45.76871,15.15548a.57129.57129,0,0,0,.27247.05446.31221.31221,0,0,0,.34658-.30934c0-.31739-.43-.259-.43-.4613,0-.08177.08159-.1207.17516-.1207a.53592.53592,0,0,1,.19256.05053l.01554-.15944a.7605.7605,0,0,0-.22775-.03893c-.19669,0-.35032.09918-.35032.30541,0,.27846.43.26274.43.44389,0,.10705-.10312.142-.18677.142a.48928.48928,0,0,1-.22793-.07018Z"/><path class="cls-1" d="M45.76871,15.15548a.57129.57129,0,0,0,.27247.05446.31221.31221,0,0,0,.34658-.30934c0-.31739-.43-.259-.43-.4613,0-.08177.08159-.1207.17516-.1207a.53592.53592,0,0,1,.19256.05053l.01554-.15944a.7605.7605,0,0,0-.22775-.03893c-.19669,0-.35032.09918-.35032.30541,0,.27846.43.26274.43.44389,0,.10705-.10312.142-.18677.142a.48928.48928,0,0,1-.22793-.07018Z"/><path class="cls-1" d="M47.2667,14.194h-.26256v-.288l-.18321.05839V14.194H46.5973v.14784h.22363V14.922c0,.19837.11677.288.30559.288a.5708.5708,0,0,0,.1557-.02732V15.027a.22568.22568,0,0,1-.12463.035.15716.15716,0,0,1-.15345-.177v-.54308h.26256Z"/><path class="cls-1" d="M47.2667,14.194h-.26256v-.288l-.18321.05839V14.194H46.5973v.14784h.22363V14.922c0,.19837.11677.288.30559.288a.5708.5708,0,0,0,.1557-.02732V15.027a.22568.22568,0,0,1-.12463.035.15716.15716,0,0,1-.15345-.177v-.54308h.26256Z"/><path class="cls-1" d="M48.34807,14.96286a.58746.58746,0,0,1-.3056.09918.32474.32474,0,0,1-.32692-.33085h.7085c0-.31927-.107-.56049-.4379-.56049a.46115.46115,0,0,0-.465.50229.47469.47469,0,0,0,.51369.53689.76012.76012,0,0,0,.31327-.064Zm-.63252-.36791a.27515.27515,0,0,1,.26667-.27641.25061.25061,0,0,1,.2472.27641Z"/><path class="cls-1" d="M48.34807,14.96286a.58746.58746,0,0,1-.3056.09918.32474.32474,0,0,1-.32692-.33085h.7085c0-.31927-.107-.56049-.4379-.56049a.46115.46115,0,0,0-.465.50229.47469.47469,0,0,0,.51369.53689.76012.76012,0,0,0,.31327-.064Zm-.63252-.36791a.27515.27515,0,0,1,.26667-.27641.25061.25061,0,0,1,.2472.27641Z"/><path class="cls-1" d="M48.758,15.18662h.183v-.50021c0-.1849.07411-.36773.26087-.36773.14784,0,.177.15364.177.27621v.59173h.18283v-.50021c0-.1849.07392-.36773.26088-.36773.148,0,.17722.15364.17722.27621v.59173h.18283v-.63645c0-.21577-.09132-.37952-.34452-.37952a.35377.35377,0,0,0-.30728.19275.29358.29358,0,0,0-.28221-.19275.33571.33571,0,0,0-.31551.16749h-.00375V14.194H48.758Z"/><path class="cls-1" d="M48.758,15.18662h.183v-.50021c0-.1849.07411-.36773.26087-.36773.14784,0,.177.15364.177.27621v.59173h.18283v-.50021c0-.1849.07392-.36773.26088-.36773.148,0,.17722.15364.17722.27621v.59173h.18283v-.63645c0-.21577-.09132-.37952-.34452-.37952a.35377.35377,0,0,0-.30728.19275.29358.29358,0,0,0-.28221-.19275.33571.33571,0,0,0-.31551.16749h-.00375V14.194H48.758Z"/><path class="cls-1" d="M50.49717,15.15548a.57129.57129,0,0,0,.27247.05446.31221.31221,0,0,0,.34658-.30934c0-.31739-.43005-.259-.43005-.4613,0-.08177.0816-.1207.17516-.1207a.53592.53592,0,0,1,.19257.05053l.01553-.15944a.76039.76039,0,0,0-.22775-.03893c-.19668,0-.35032.09918-.35032.30541,0,.27846.43005.26274.43005.44389,0,.10705-.10312.142-.18677.142a.4905.4905,0,0,1-.22793-.07018Z"/><path class="cls-1" d="M50.49717,15.15548a.57129.57129,0,0,0,.27247.05446.31221.31221,0,0,0,.34658-.30934c0-.31739-.43005-.259-.43005-.4613,0-.08177.0816-.1207.17516-.1207a.53592.53592,0,0,1,.19257.05053l.01553-.15944a.76039.76039,0,0,0-.22775-.03893c-.19668,0-.35032.09918-.35032.30541,0,.27846.43005.26274.43005.44389,0,.10705-.10312.142-.18677.142a.4905.4905,0,0,1-.22793-.07018Z"/><path class="cls-1" d="M52.08573,15.18657h.36211c.27622,0,.51781-.07.51781-.36193a.31782.31782,0,0,0-.31551-.32693v-.00393a.31472.31472,0,0,0,.28052-.323c0-.25114-.19481-.34265-.477-.34265h-.36791Zm.19481-.61887h.12632c.16749,0,.35238.02919.35238.23935,0,.183-.15757.22008-.33273.22008h-.146Zm0-.57994h.204c.11322,0,.25133.0408.25133.20248,0,.20043-.15963.21783-.34827.21783h-.107Z"/><path class="cls-1" d="M52.08573,15.18657h.36211c.27622,0,.51781-.07.51781-.36193a.31782.31782,0,0,0-.31551-.32693v-.00393a.31472.31472,0,0,0,.28052-.323c0-.25114-.19481-.34265-.477-.34265h-.36791Zm.19481-.61887h.12632c.16749,0,.35238.02919.35238.23935,0,.183-.15757.22008-.33273.22008h-.146Zm0-.57994h.204c.11322,0,.25133.0408.25133.20248,0,.20043-.15963.21783-.34827.21783h-.107Z"/><path class="cls-1" d="M53.3832,15.18661h.183V14.194h-.183Zm.19462-1.42076h-.20641v.20622h.20641Z"/><path class="cls-1" d="M53.38327,15.18674h.183v-.99259h-.183Zm.19462-1.42095h-.20641V13.972h.20641Z"/><path class="cls-1" d="M53.906,14.6904a.50538.50538,0,1,0,1.01035,0,.50538.50538,0,1,0-1.01035,0m.19481,0a.31542.31542,0,1,1,.62074,0,.31543.31543,0,1,1-.62074,0"/><path class="cls-1" d="M53.906,14.6904a.50538.50538,0,1,0,1.01035,0,.50538.50538,0,1,0-1.01035,0Zm.19481,0a.31542.31542,0,1,1,.62074,0,.31543.31543,0,1,1-.62074,0Z"/><path class="cls-1" d="M55.21129,15.18662h.183v-.50021c0-.1849.07411-.36773.26087-.36773.14765,0,.17685.15364.17685.27621v.59173h.183v-.50021c0-.1849.07392-.36773.26087-.36773.148,0,.17722.15364.17722.27621v.59173H56.636v-.63645c0-.21577-.09169-.37952-.34452-.37952a.35428.35428,0,0,0-.30765.19275.29291.29291,0,0,0-.2822-.19275.33552.33552,0,0,0-.31515.16749h-.00374V14.194h-.17142Z"/><path class="cls-1" d="M55.21129,15.18662h.183v-.50021c0-.1849.07411-.36773.26087-.36773.14765,0,.17685.15364.17685.27621v.59173h.183v-.50021c0-.1849.07392-.36773.26087-.36773.148,0,.17722.15364.17722.27621v.59173H56.636v-.63645c0-.21577-.09169-.37952-.34452-.37952a.35428.35428,0,0,0-.30765.19275.29291.29291,0,0,0-.2822-.19275.33552.33552,0,0,0-.31515.16749h-.00374V14.194h-.17142Z"/><path class="cls-1" d="M57.79541,14.96286a.58933.58933,0,0,1-.3056.09918.32483.32483,0,0,1-.3273-.33085h.7085c0-.31927-.107-.56049-.43771-.56049a.46118.46118,0,0,0-.46523.50229.47469.47469,0,0,0,.5137.53689.76377.76377,0,0,0,.31364-.064Zm-.6329-.36791a.27516.27516,0,0,1,.26667-.27641.25076.25076,0,0,1,.2474.27641Z"/><path class="cls-1" d="M57.79541,14.96286a.58933.58933,0,0,1-.3056.09918.32483.32483,0,0,1-.3273-.33085h.7085c0-.31927-.107-.56049-.43771-.56049a.46118.46118,0,0,0-.46523.50229.47469.47469,0,0,0,.5137.53689.76377.76377,0,0,0,.31364-.064Zm-.6329-.36791a.27516.27516,0,0,1,.26667-.27641.25076.25076,0,0,1,.2474.27641Z"/><path class="cls-1" d="M58.90966,15.18668h.17516V13.727h-.1832v.60334h-.00375a.35365.35365,0,0,0-.3288-.15963.44355.44355,0,0,0-.42817.50209c0,.2706.12632.53727.4263.53727a.39965.39965,0,0,0,.33872-.16356h.00374Zm-.57432-.50022c-.00375-.181.07392-.36791.27247-.36791s.29381.18882.29381.37371c0,.16543-.08553.36979-.29175.36979-.19649,0-.27828-.21989-.27453-.37559"/><path class="cls-1" d="M58.90966,15.18668h.17516V13.727h-.1832v.60334h-.00375a.35365.35365,0,0,0-.3288-.15963.44355.44355,0,0,0-.42817.50209c0,.2706.12632.53727.4263.53727a.39965.39965,0,0,0,.33872-.16356h.00374Zm-.57432-.50022c-.00375-.181.07392-.36791.27247-.36791s.29381.18882.29381.37371c0,.16543-.08553.36979-.29175.36979C58.41338,15.06205,58.33159,14.84216,58.33534,14.68646Z"/><path class="cls-1" d="M59.51011,15.18661h.183V14.194h-.183Zm.1948-1.42076H59.4985v.20622h.20641Z"/><path class="cls-1" d="M59.51014,15.18674h.18321v-.99259h-.18321Zm.19481-1.42095h-.20641V13.972H59.705Z"/><path class="cls-1" d="M60.76492,14.20954a.68774.68774,0,0,0-.22194-.03892.49011.49011,0,0,0-.506.51986.50217.50217,0,0,0,.506.5195.55456.55456,0,0,0,.22961-.041l-.01347-.16337a.38426.38426,0,0,1-.19687.05633.33564.33564,0,0,1-.33067-.37148.33993.33993,0,0,1,.31925-.37184.52633.52633,0,0,1,.19856.04286Z"/><path class="cls-1" d="M60.76492,14.20954a.68774.68774,0,0,0-.22194-.03892.49011.49011,0,0,0-.506.51986.50217.50217,0,0,0,.506.5195.55456.55456,0,0,0,.22961-.041l-.01347-.16337a.38426.38426,0,0,1-.19687.05633.33564.33564,0,0,1-.33067-.37148.33993.33993,0,0,1,.31925-.37184.52633.52633,0,0,1,.19856.04286Z"/><path class="cls-1" d="M61.097,15.18661h.18284V14.194H61.097Zm.19463-1.42076h-.20622v.20622h.20622Z"/><path class="cls-1" d="M61.09715,15.18674H61.28v-.99259h-.18283Zm.19444-1.42095h-.20623V13.972h.20623Z"/><path class="cls-1" d="M61.70559,15.18662h.18283v-.45923c0-.24141.09357-.40871.30167-.40871.15963.00973.21034.12258.21034.35407v.51387h.18265v-.58948c0-.26686-.11453-.42649-.37166-.42649a.35688.35688,0,0,0-.32487.181h-.00393V14.194h-.177Z"/><path class="cls-1" d="M61.70559,15.18662h.18283v-.45923c0-.24141.09357-.40871.30167-.40871.15963.00973.21034.12258.21034.35407v.51387h.18265v-.58948c0-.26686-.11453-.42649-.37166-.42649a.35688.35688,0,0,0-.32487.181h-.00393V14.194h-.177Z"/><path class="cls-1" d="M63.74633,14.96286a.58745.58745,0,0,1-.30559.09918.32475.32475,0,0,1-.32693-.33085h.7085c0-.31927-.107-.56049-.4379-.56049a.46143.46143,0,0,0-.46542.50229.475.475,0,0,0,.51408.53689.76011.76011,0,0,0,.31326-.064Zm-.63252-.36791a.27489.27489,0,0,1,.26667-.27641.25061.25061,0,0,1,.2472.27641Z"/><path class="cls-1" d="M63.74633,14.96286a.58745.58745,0,0,1-.30559.09918.32475.32475,0,0,1-.32693-.33085h.7085c0-.31927-.107-.56049-.4379-.56049a.46143.46143,0,0,0-.46542.50229.475.475,0,0,0,.51408.53689.76011.76011,0,0,0,.31326-.064Zm-.63252-.36791a.27489.27489,0,0,1,.26667-.27641.25061.25061,0,0,1,.2472.27641Z"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg id="default" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70.20482 10.56943"><defs><style>.cls-1{fill:#5d5d5d;}.cls-2{fill:#575b5e;stroke:#575b5e;stroke-width:0.25px;}</style></defs><title>motto</title><path class="cls-1" d="M7.00127,1.54824h.396V4.07852H8.74053v.356H7.00127Z"/><path class="cls-1" d="M9.54961,2.42764v1.291c0,.19629.044.44385.42774.44385a.54265.54265,0,0,0,.47168-.22363.64879.64879,0,0,0,.084-.376V2.42764h.3877V4.0585c0,.04.00781.26416.01171.376h-.3916L10.533,4.09072a.62916.62916,0,0,1-.63965.36377.64228.64228,0,0,1-.72754-.67968V2.42764Z"/><path class="cls-1" d="M13.42022,4.43447h-.49561l-.57129-.80371-.56787.80371h-.43994l.7959-1.05127-.752-.95556h.49169l.53565.75537.56006-.75537h.44336l-.78321.97949Z"/><path class="cls-1" d="M14.10088,3.49893c-.00781.416.16406.72363.57617.72363a.43648.43648,0,0,0,.47168-.41553h.376a.68671.68671,0,0,1-.17188.41944.869.869,0,0,1-.69238.26806c-.63086,0-.93066-.39209-.93066-1.02734a1.03709,1.03709,0,0,1,.39551-.94385.96534.96534,0,0,1,.54785-.148c.89941,0,.8789.7959.87109,1.12354Zm1.05957-.26367c.00391-.1919-.03222-.5918-.49512-.5918a.53831.53831,0,0,0-.54785.5918Z"/><path class="cls-1" d="M16.09307,2.69522l-.00781-.26758h.37988v.292a.68331.68331,0,0,1,.63574-.34424.63542.63542,0,0,1,.65527.376.72169.72169,0,0,1,.67579-.376.66737.66737,0,0,1,.73535.71192V4.43447h-.37891V3.14736A.494.494,0,0,0,18.72,2.84317a.454.454,0,0,0-.38379-.17579.51335.51335,0,0,0-.42773.21192.828.828,0,0,0-.08789.43164V4.43447h-.37988V3.10733a.40686.40686,0,0,0-.43946-.44.54346.54346,0,0,0-.44043.21973.703.703,0,0,0-.08789.4082V4.43447h-.37988Z"/><path class="cls-1" d="M20.24932,2.71963a.66921.66921,0,0,1,.65527-.34424.82173.82173,0,0,1,.63574.25586,1.05554,1.05554,0,0,1,.23633.75586,1.15725,1.15725,0,0,1-.19238.73145.84716.84716,0,0,1-.70313.34375.79068.79068,0,0,1-.44824-.12793.62244.62244,0,0,1-.19531-.20362l-.00879.30371h-.36328l.00781-.35986V1.54824h.376Zm.56738-.08838c-.57519,0-.57519.67188-.57519.79981,0,.13183,0,.75976.55957.75976.46386,0,.5791-.45215.5791-.77978C21.38018,3.21133,21.34014,2.63125,20.8167,2.63125Z"/><path class="cls-1" d="M23.18877,2.37539a.94648.94648,0,0,1,.9834,1.05176.97849.97849,0,0,1-1.01562,1.0752A.94564.94564,0,0,1,22.16924,3.455.9717.9717,0,0,1,23.18877,2.37539Zm-.02441,1.84717c.28418,0,.6084-.2041.6084-.80762,0-.49951-.23243-.76367-.584-.76367-.24023,0-.62793.15234-.62793.77979C22.56084,3.84268,22.73662,4.22256,23.16436,4.22256Z"/><path class="cls-1" d="M25.10479,2.42764v1.291c0,.19629.04394.44385.42773.44385a.54209.54209,0,0,0,.47168-.22363.64873.64873,0,0,0,.084-.376V2.42764h.38769V4.0585c0,.04.00781.26416.01172.376H26.096l-.00781-.34375a.62916.62916,0,0,1-.63965.36377.64228.64228,0,0,1-.72754-.67968V2.42764Z"/><path class="cls-1" d="M27.2249,2.83535c0-.13574-.00781-.27588-.0205-.40771h.37988l.00879.38769a.54132.54132,0,0,1,.47949-.3955,1.19714,1.19714,0,0,1,.25977-.00831V2.7792a.33249.33249,0,0,0-.07227-.01562.7501.7501,0,0,0-.10742-.0044c-.44434,0-.54785.26416-.54785.60791V4.43447H27.2249Z"/><path class="cls-1" d="M29.12041,4.59024c.0166.22412.11231.39209.46778.39209.52441,0,.53222-.37989.53222-.92383a.69534.69534,0,0,1-.66015.33984.7729.7729,0,0,1-.61524-.24756,1.12481,1.12481,0,0,1-.22754-.73974.88844.88844,0,0,1,.8916-1.01123.69994.69994,0,0,1,.63086.30371l.00391-.27588h.36426l-.00781.36377-.00391,1.25537a1.84544,1.84544,0,0,1-.09668.83154.88221.88221,0,0,1-.835.35986c-.80371,0-.82813-.376-.84375-.64794Zm.876-.67139c.08008-.104.13574-.21192.13574-.57568a.66373.66373,0,0,0-.15625-.5.59215.59215,0,0,0-.43164-.17579c-.47559,0-.53906.48-.53906.73584,0,.30762.0918.71534.55176.71534A.50568.50568,0,0,0,29.99639,3.91885Z"/><path class="cls-1" d="M34.056,2.32754a.54784.54784,0,0,0-.623-.49951c-.69629,0-.82031.71142-.82031,1.1914,0,.54346.15625,1.13135.81641,1.13135a.626.626,0,0,0,.46777-.17187.56908.56908,0,0,0,.13965-.3042h.43945a.97746.97746,0,0,1-1.0791.80371c-1.01563,0-1.21191-.89551-1.21191-1.45508,0-.60791.23632-1.51514,1.26367-1.51514a.925.925,0,0,1,1.03515.81934Z"/><path class="cls-1" d="M35.21319,3.49893c-.00782.416.16406.72363.57519.72363a.436.436,0,0,0,.47168-.41553h.376a.675.675,0,0,1-.17188.41944.86814.86814,0,0,1-.6914.26806c-.63184,0-.93164-.39209-.93164-1.02734a1.03934,1.03934,0,0,1,.3955-.94385.969.969,0,0,1,.54786-.148c.89941,0,.87988.7959.87207,1.12354Zm1.05957-.26367c.0039-.1919-.03223-.5918-.4961-.5918a.53831.53831,0,0,0-.54785.5918Z"/><path class="cls-1" d="M37.221,2.65957l-.00391-.23193h.375l.00489.32373a.6544.6544,0,0,1,.64355-.36377.66945.66945,0,0,1,.72754.68359V4.43447h-.38379V3.15908a.45332.45332,0,0,0-.1084-.34375.51449.51449,0,0,0-.35547-.13574.53264.53264,0,0,0-.52343.59961V4.43447h-.376Z"/><path class="cls-1" d="M39.345,2.41983h.35645V1.9999l.37109-.12011v.54h.44824v.27539h-.44824V3.89883c0,.1001,0,.26758.26856.26758a.815.815,0,0,0,.17968-.02v.292a1.833,1.833,0,0,1-.31152.02393c-.34473,0-.50781-.09961-.50781-.42774V2.69522H39.345Z"/><path class="cls-1" d="M41.00518,2.83535c0-.13574-.00781-.27588-.02051-.40771h.37988l.00879.38769a.54133.54133,0,0,1,.47949-.3955,1.19715,1.19715,0,0,1,.25977-.00831V2.7792a.33249.33249,0,0,0-.07227-.01562.75.75,0,0,0-.10742-.0044c-.44433,0-.54785.26416-.54785.60791V4.43447h-.37988Z"/><path class="cls-1" d="M42.76885,3.49893c-.00781.416.16406.72363.5752.72363a.436.436,0,0,0,.47168-.41553h.376a.67494.67494,0,0,1-.17187.41944.86817.86817,0,0,1-.69141.26806c-.63184,0-.93164-.39209-.93164-1.02734a1.03935,1.03935,0,0,1,.39551-.94385.96891.96891,0,0,1,.54785-.148c.89941,0,.87988.7959.87207,1.12354Zm1.05957-.26367c.00391-.1919-.03223-.5918-.49609-.5918a.53831.53831,0,0,0-.54785.5918Z"/><path class="cls-1" d="M46.88018,1.828c-.06348-.00391-.14356-.0083-.21973-.0083-.30371,0-.30371.15185-.30371.292v.31592h.46777v.272h-.46777V4.43447h-.37207V2.69961h-.39551v-.272h.39551v-.228a.78693.78693,0,0,1,.084-.47949.562.562,0,0,1,.50391-.22022,2.16469,2.16469,0,0,1,.30762.02832Z"/><path class="cls-1" d="M48.08037,2.37539a.94648.94648,0,0,1,.9834,1.05176.97849.97849,0,0,1-1.01562,1.0752A.94564.94564,0,0,1,47.06084,3.455.9717.9717,0,0,1,48.08037,2.37539ZM48.056,4.22256c.28418,0,.6084-.2041.6084-.80762,0-.49951-.23242-.76367-.584-.76367-.24023,0-.62793.15234-.62793.77979C47.45244,3.84268,47.62823,4.22256,48.056,4.22256Z"/><path class="cls-1" d="M49.67217,2.83535c0-.13574-.00781-.27588-.01953-.40771h.37988l.00781.38769a.54232.54232,0,0,1,.4795-.3955,1.19917,1.19917,0,0,1,.25976-.00831V2.7792a.32267.32267,0,0,0-.07129-.01562.772.772,0,0,0-.1084-.0044c-.44335,0-.54785.26416-.54785.60791V4.43447h-.37988Z"/><path class="cls-1" d="M7.26934,8.39053c.00781.20019.03223.57178.6958.57178.59961,0,.67529-.37159.67529-.51563,0-.32373-.25976-.38769-.66357-.48779A2.56915,2.56915,0,0,1,7.19317,7.703a.651.651,0,0,1-.29981-.56738c0-.58789.55567-.84375,1.09961-.84375a1.12966,1.12966,0,0,1,.81152.28369.73861.73861,0,0,1,.17579.4917H8.56475c-.02-.35938-.32373-.43946-.60791-.43946-.39942,0-.63965.17969-.63965.46778,0,.25586.168.34375.52.42773a2.72069,2.72069,0,0,1,.93115.30371.66125.66125,0,0,1,.28809.57569c0,.51171-.3999.89941-1.13965.89941a1.16042,1.16042,0,0,1-.89551-.32764.905.905,0,0,1-.168-.584Z"/><path class="cls-1" d="M10.473,9.24649l-.28808.74755h-.3877l.30371-.76757-.83545-1.999h.42383l.62793,1.583.63965-1.583h.40771Z"/><path class="cls-1" d="M12.00957,8.63858c-.00439.15185.07569.36377.43946.36377a.41.41,0,0,0,.35205-.12793.312.312,0,0,0,.064-.188c0-.1958-.14014-.23194-.43994-.29981-.41992-.0957-.77148-.17969-.77148-.59961,0-.36767.31982-.60742.78369-.60742a.81037.81037,0,0,1,.72363.31152.64018.64018,0,0,1,.05176.292h-.38379c.01221-.30371-.252-.32764-.3877-.32764-.05615,0-.40771,0-.40771.2876,0,.18408.17969.228.28369.25586.55566.13183.67578.16406.79541.27588a.49585.49585,0,0,1,.15186.37158.60736.60736,0,0,1-.27149.50781,1.12859,1.12859,0,0,1-.5957.13623c-.40772,0-.7876-.168-.78369-.65185Z"/><path class="cls-1" d="M13.48565,7.21963h.35547V6.79971l.37207-.12012v.54h.44726V7.495h-.44726V8.69863c0,.1001,0,.26758.26757.26758a.79952.79952,0,0,0,.17969-.02v.292a1.82377,1.82377,0,0,1-.31152.02393c-.34375,0-.50781-.09961-.50781-.42773V7.495h-.35547Z"/><path class="cls-1" d="M15.35283,8.29873c-.00781.416.16407.72363.57618.72363a.43648.43648,0,0,0,.47168-.41552h.376a.68664.68664,0,0,1-.17187.41943.869.869,0,0,1-.69239.26807c-.63085,0-.93066-.39209-.93066-1.02735a1.03707,1.03707,0,0,1,.39551-.94384.96526.96526,0,0,1,.54785-.14795c.89941,0,.87891.7959.87109,1.12353Zm1.05957-.26367c.00391-.19189-.03222-.5918-.49511-.5918a.53831.53831,0,0,0-.54785.5918Z"/><path class="cls-1" d="M17.345,7.495l-.00781-.26758h.37988v.292a.68333.68333,0,0,1,.63574-.34423.63544.63544,0,0,1,.65528.376.72168.72168,0,0,1,.67578-.376.66735.66735,0,0,1,.73535.71191V9.23428h-.37891V7.94717A.49409.49409,0,0,0,19.972,7.643a.454.454,0,0,0-.38379-.17578.51339.51339,0,0,0-.42774.21191.828.828,0,0,0-.08789.43164V9.23428h-.37988V7.90713a.40685.40685,0,0,0-.43945-.43994.54345.54345,0,0,0-.44043.21973.703.703,0,0,0-.0879.4082V9.23428H17.345Z"/><path class="cls-1" d="M21.34112,8.63858c-.00391.15185.07617.36377.43945.36377a.411.411,0,0,0,.35254-.12793.31152.31152,0,0,0,.06347-.188c0-.1958-.13964-.23194-.43945-.29981-.41992-.0957-.77148-.17969-.77148-.59961,0-.36767.31933-.60742.7832-.60742a.81036.81036,0,0,1,.72363.31152.64018.64018,0,0,1,.05176.292h-.38379c.0127-.30371-.252-.32764-.38769-.32764-.05567,0-.40723,0-.40723.2876,0,.18408.17969.228.2832.25586.55567.13183.67578.16406.7959.27588a.49529.49529,0,0,1,.15137.37158.60619.60619,0,0,1-.27149.50781,1.12859,1.12859,0,0,1-.5957.13623c-.40723,0-.78711-.168-.7832-.65185Z"/><path class="cls-1" d="M24.26494,6.34805h1.03125a.90984.90984,0,0,1,.72754.21191.68616.68616,0,0,1,.2041.51563.64535.64535,0,0,1-.4873.65136.69216.69216,0,0,1,.5752.71973.77442.77442,0,0,1-.34766.65576,1.11866,1.11866,0,0,1-.65137.13184H24.26494Zm.3877,1.21924h.55957c.13672,0,.59961,0,.59961-.45606,0-.43555-.36328-.43555-.583-.43555h-.57617Zm0,1.34326h.68359a.50263.50263,0,0,0,.56836-.5.49406.49406,0,0,0-.55176-.49951h-.70019Z"/><path class="cls-1" d="M26.86944,6.35586h.45117v.41162h-.45117Zm.04.87158h.375V9.23428h-.375Z"/><path class="cls-1" d="M28.889,7.1752a.94647.94647,0,0,1,.9834,1.05175.97849.97849,0,0,1-1.01563,1.0752.94562.94562,0,0,1-.9873-1.04736A.97169.97169,0,0,1,28.889,7.1752Zm-.02442,1.84716c.28418,0,.6084-.2041.6084-.80761,0-.49951-.23242-.76367-.584-.76367-.24024,0-.62793.15234-.62793.77978C28.261,8.64248,28.43682,9.02236,28.86455,9.02236Z"/><path class="cls-1" d="M30.45733,7.495l-.00782-.26758h.37989v.292a.68166.68166,0,0,1,.63574-.34423.63641.63641,0,0,1,.65527.376.71913.71913,0,0,1,.67578-.376.66777.66777,0,0,1,.73536.71191V9.23428h-.37989V7.94717a.494.494,0,0,0-.06836-.3042.45126.45126,0,0,0-.38379-.17578.51655.51655,0,0,0-.42773.21191.828.828,0,0,0-.08789.43164V9.23428H31.804V7.90713a.40685.40685,0,0,0-.43946-.43994.54111.54111,0,0,0-.43945.21973.703.703,0,0,0-.08789.4082V9.23428h-.37988Z"/><path class="cls-1" d="M34.46514,8.29873c-.00781.416.16406.72363.57519.72363a.43594.43594,0,0,0,.47168-.41552h.376a.67489.67489,0,0,1-.17187.41943.86813.86813,0,0,1-.69141.26807c-.63184,0-.93164-.39209-.93164-1.02735a1.03933,1.03933,0,0,1,.39551-.94384.96882.96882,0,0,1,.54785-.14795c.89941,0,.87988.7959.87207,1.12353Zm1.05957-.26367c.00391-.19189-.03223-.5918-.49609-.5918a.53832.53832,0,0,0-.54786.5918Z"/><path class="cls-1" d="M37.85283,6.352h.375v2.5625c0,.04395.00879.21582.01661.31983h-.376l-.00781-.31983a.57569.57569,0,0,1-.17969.21192.91409.91409,0,0,1-.49609.14795c-.26758,0-.86329-.14014-.86329-1.01953,0-.76368.43555-1.09522.90723-1.09522a.649.649,0,0,1,.624.33985Zm-.14062,1.291a.54364.54364,0,0,0-.43945-.20361c-.55176,0-.55176.66748-.55176.80371,0,.35547.0918.76758.55176.76758.59179,0,.59179-.65186.59179-.80762A.85926.85926,0,0,0,37.71221,7.643Z"/><path class="cls-1" d="M38.86944,6.35586h.45117v.41162h-.45117Zm.04.87158h.375V9.23428h-.375Z"/><path class="cls-1" d="M41.16045,7.871a.39642.39642,0,0,0-.40039-.41992c-.51953,0-.51953.604-.51953.75585,0,.41163.10059.79542.5.79542a.41744.41744,0,0,0,.43555-.43555H41.556a.758.758,0,0,1-.81152.71924.90361.90361,0,0,1-.65918-.25977,1.08451,1.08451,0,0,1-.24024-.76758c0-.83545.51172-1.08349.91113-1.08349a.81731.81731,0,0,1,.61622.248.69791.69791,0,0,1,.168.44776Z"/><path class="cls-1" d="M41.98076,6.35586h.45215v.41162h-.45215Zm.04.87158h.376V9.23428h-.376Z"/><path class="cls-1" d="M43.14092,7.45938,43.137,7.22744h.376l.00391.32373a.65441.65441,0,0,1,.64355-.36377.66945.66945,0,0,1,.72754.6836V9.23428H44.5042V7.95889a.45269.45269,0,0,0-.10742-.34375.51855.51855,0,0,0-.35645-.13574.53315.53315,0,0,0-.52343.59961V9.23428h-.376Z"/><path class="cls-1" d="M45.80108,8.29873c-.00782.416.16406.72363.57519.72363a.436.436,0,0,0,.47168-.41552h.376a.67492.67492,0,0,1-.17188.41943.86811.86811,0,0,1-.6914.26807c-.63184,0-.93164-.39209-.93164-1.02735a1.03932,1.03932,0,0,1,.3955-.94384.96887.96887,0,0,1,.54786-.14795c.89941,0,.87988.7959.87207,1.12353Zm1.05957-.26367c.0039-.19189-.03223-.5918-.4961-.5918a.53831.53831,0,0,0-.54785.5918Z"/><line class="cls-2" x1="2.22959" y1="0.12999" x2="2.22959" y2="10.66384"/></svg>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-lcsb-default
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Trefex
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-06-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jekyll
|
@@ -76,6 +76,7 @@ extra_rdoc_files: []
|
|
76
76
|
files:
|
77
77
|
- LICENSE.txt
|
78
78
|
- README.md
|
79
|
+
- _includes/css-imports.html
|
79
80
|
- _includes/footer.html
|
80
81
|
- _includes/google-analytics.html
|
81
82
|
- _includes/head.html
|
@@ -85,6 +86,7 @@ files:
|
|
85
86
|
- _layouts/default.html
|
86
87
|
- _layouts/frozen.html
|
87
88
|
- _layouts/page.html
|
89
|
+
- _layouts/paginated_index.html
|
88
90
|
- _layouts/post.html
|
89
91
|
- _sass/minima.scss
|
90
92
|
- _sass/minima/_base.scss
|
@@ -92,6 +94,9 @@ files:
|
|
92
94
|
- _sass/minima/_layout.scss
|
93
95
|
- _sass/minima/_lcsb.scss
|
94
96
|
- _sass/minima/_syntax-highlighting.scss
|
97
|
+
- assets/banners/default/banner.svg
|
98
|
+
- assets/banners/default/logos.svg
|
99
|
+
- assets/banners/default/motto.svg
|
95
100
|
- assets/banners/frozen/banner.svg
|
96
101
|
- assets/banners/frozen/logos.svg
|
97
102
|
- assets/banners/frozen/motto.svg
|