jekyll-theme-centos 0.2.6 → 0.5.2
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/_includes/download/body-doc.html +3 -3
- data/_includes/download/body-eol.html +2 -2
- data/_includes/download/body.html +4 -4
- data/_includes/download/cards.html +3 -3
- data/_includes/download/linux.html +3 -3
- data/_includes/download/linux/7-doc.html +1 -1
- data/_includes/download/linux/7-eol.html +1 -1
- data/_includes/download/linux/7.html +1 -1
- data/_includes/download/linux/8-doc.html +1 -1
- data/_includes/download/linux/8-eol.html +1 -1
- data/_includes/download/linux/8.html +1 -1
- data/_includes/download/stream.html +2 -2
- data/_includes/download/stream/8-doc.html +1 -1
- data/_includes/download/stream/8-eol.html +1 -1
- data/_includes/download/stream/8.html +1 -1
- data/_includes/footer.html +5 -5
- data/_includes/header/home.html +0 -10
- data/_includes/home/distributions.html +12 -0
- data/_includes/home/news-and-events.html +13 -0
- data/_includes/home/{around.html → planet.html} +1 -1
- data/_includes/home/sponsors.html +2 -2
- data/_includes/navbar.html +7 -7
- data/_includes/post-nav-explorer.html +23 -0
- data/_includes/post-nav.html +3 -0
- data/_includes/search.html +76 -57
- data/_includes/top.html +1 -1
- data/_layouts/aside.html +16 -1
- data/_layouts/blog.html +14 -29
- data/_layouts/download-mirror.html +5 -2
- data/_layouts/home.html +16 -2
- data/_layouts/page.html +9 -5
- data/_layouts/post.html +16 -29
- data/_layouts/search.html +36 -10
- data/_layouts/sponsors.html +5 -2
- data/_sass/centos/_footer.scss +2 -4
- data/_sass/centos/_header.scss +13 -24
- data/_sass/centos/_main.scss +79 -83
- data/_sass/centos/_mixins.scss +3 -0
- data/_sass/centos/_nav.scss +3 -0
- data/_sass/centos/_toc.scss +2 -1
- data/_sass/centos/_variables.scss +27 -21
- data/_sass/centos/mixins/_aside-nav.scss +24 -13
- data/_sass/centos/mixins/_content-nav.scss +11 -0
- data/_sass/centos/mixins/_content.scss +16 -26
- data/_sass/centos/mixins/_link-list.scss +1 -1
- data/_sass/centos/mixins/_post-nav-explorer.scss +21 -0
- data/assets/img/motif.png +0 -0
- data/assets/js/instantsearch.min.js +3 -0
- metadata +11 -6
- data/_includes/home/news-and-sponsors.html +0 -8
- data/_includes/home/news.html +0 -13
data/_includes/top.html
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
<div class="top">
|
|
2
|
-
<a href="#top"><button class="btn btn-light"><i class="fas fa-arrow-circle-up"></i></button></a>
|
|
2
|
+
<a href="#top"><button title="Page top" type="button" data-toggle="tooltip" class="btn btn-light"><i class="fas fa-arrow-circle-up"></i></button></a>
|
|
3
3
|
</div>
|
data/_layouts/aside.html
CHANGED
|
@@ -5,13 +5,28 @@ layout: default
|
|
|
5
5
|
<main class="aside">
|
|
6
6
|
|
|
7
7
|
<article class="aside__content">
|
|
8
|
+
<div class="aside__content__nav">
|
|
9
|
+
{% include breadcrumbs.html %}
|
|
10
|
+
{% include toc.html html=content %}
|
|
11
|
+
</div>
|
|
8
12
|
{{ content }}
|
|
13
|
+
|
|
14
|
+
<div class="aside__content__nav">
|
|
15
|
+
<div class="aside__nav__explorer">
|
|
16
|
+
{% include top.html %}
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
|
|
9
20
|
</article>
|
|
10
21
|
|
|
11
22
|
<aside class="aside__nav">
|
|
12
23
|
{% include breadcrumbs.html %}
|
|
13
24
|
{% include toc.html html=content %}
|
|
14
|
-
|
|
25
|
+
|
|
26
|
+
<div class="aside__nav__explorer">
|
|
27
|
+
{% include top.html %}
|
|
28
|
+
</div>
|
|
29
|
+
|
|
15
30
|
</aside>
|
|
16
31
|
|
|
17
32
|
</main>
|
data/_layouts/blog.html
CHANGED
|
@@ -4,24 +4,26 @@ layout: default
|
|
|
4
4
|
|
|
5
5
|
<main class="blog">
|
|
6
6
|
|
|
7
|
-
<
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
<div class="blog__content">
|
|
8
|
+
|
|
9
|
+
<ol class="blog__content__breadcrumb">
|
|
10
|
+
<li class="blog__content__breadcrumb__item"><a href="/">Home</a></li>
|
|
11
|
+
<li class="blog__content__breadcrumb__item--active">{{ page.title | capitalize }}</li>
|
|
10
12
|
</ol>
|
|
11
13
|
|
|
12
|
-
<section class="
|
|
14
|
+
<section class="blog__content__entries">
|
|
13
15
|
{%- if site.posts.size > 0 -%}
|
|
14
|
-
<div class="
|
|
16
|
+
<div class="blog__content__entries__card">
|
|
15
17
|
{%- for post in paginator.posts -%}
|
|
16
|
-
<div class="
|
|
18
|
+
<div class="blog__content__entries__card__item">
|
|
17
19
|
{%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
|
|
18
20
|
{%- if post.image -%}
|
|
19
|
-
<a href="{{ post.url | relative_url }}"><img class="
|
|
21
|
+
<a href="{{ post.url | relative_url }}"><img class="blog__content__entries__card__item__image" src="{{ post.image }}" alt="{{ post.title | escape }}"></a>
|
|
20
22
|
{%- endif -%}
|
|
21
|
-
<a href="{{ post.url | relative_url }}"><h4 class="
|
|
22
|
-
<p class="
|
|
23
|
+
<a href="{{ post.url | relative_url }}"><h4 class="blog__content__entries__card__item__title">{{ post.title | escape }}</h4></a>
|
|
24
|
+
<p class="blog__content__entries__card__item__date">{{ post.date | date: date_format }}</p>
|
|
23
25
|
{%- if site.show_excerpts -%}
|
|
24
|
-
<p class="
|
|
26
|
+
<p class="blog__content__entries__card__item__excerpt">{{ sponsor.excerpt }}</p>
|
|
25
27
|
{%- endif -%}
|
|
26
28
|
</div>
|
|
27
29
|
{% endfor %}
|
|
@@ -29,25 +31,8 @@ layout: default
|
|
|
29
31
|
{%- endif -%}
|
|
30
32
|
</section>
|
|
31
33
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
<div class="blog__navbar__newer">
|
|
35
|
-
{% else %}
|
|
36
|
-
<div class="blog__navbar__newer--disabled">
|
|
37
|
-
{% endif %}
|
|
38
|
-
<a href="{{ paginator.previous_page_path }}"><button type="button" class="btn btn-light" data-toggle="tooltip" data-placement="top" title="Newer Posts"><i class="fas fa-arrow-left"></i></button></a>
|
|
39
|
-
</div>
|
|
40
|
-
<div class="blog__navbar__feeds">
|
|
41
|
-
<a href="{{ "/feed.xml" | relative_url }}"><button type="button" class="btn btn-light" data-toggle="tooltip" data-placement="top" title="RSS"><i class="fas fa-rss"></i></button></a>
|
|
42
|
-
</div>
|
|
43
|
-
{% if paginator.next_page %}
|
|
44
|
-
<div class="blog__navbar__older">
|
|
45
|
-
{% else %}
|
|
46
|
-
<div class="blog__navbar__older--disabled">
|
|
47
|
-
{% endif %}
|
|
48
|
-
<a href="{{ paginator.next_page_path }}"><button type="button" class="btn btn-light" data-toggle="tooltip" data-placement="top" title="Older Posts"><i class="fas fa-arrow-right"></i></button></a>
|
|
49
|
-
</div>
|
|
34
|
+
{% include post-nav-explorer.html %}
|
|
35
|
+
|
|
50
36
|
</div>
|
|
51
|
-
</nav>
|
|
52
37
|
|
|
53
38
|
</main>
|
|
@@ -8,9 +8,12 @@
|
|
|
8
8
|
{% include navbar.html -%}
|
|
9
9
|
{% include header.html -%}
|
|
10
10
|
|
|
11
|
-
<main class="download">
|
|
12
|
-
{% include breadcrumbs.html %}
|
|
11
|
+
<main id="main" class="download">
|
|
13
12
|
<article class="download__content">
|
|
13
|
+
<div class="download__content__nav">
|
|
14
|
+
{% include breadcrumbs.html %}
|
|
15
|
+
{% include toc.html html=content %}
|
|
16
|
+
</div>
|
|
14
17
|
{{ content }}
|
|
15
18
|
</article>
|
|
16
19
|
</main>
|
data/_layouts/home.html
CHANGED
|
@@ -9,8 +9,22 @@
|
|
|
9
9
|
{% include header.html -%}
|
|
10
10
|
|
|
11
11
|
<main class="home">
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
<div class="home__content">
|
|
13
|
+
<div class="row">
|
|
14
|
+
<div class="col-sm-12 col-lg-8">
|
|
15
|
+
{% include home/news-and-events.html %}
|
|
16
|
+
</div>
|
|
17
|
+
<div class="col-sm-12 col-lg-4">
|
|
18
|
+
{% include home/distributions.html -%}
|
|
19
|
+
{% include home/sponsors.html %}
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
<div class="row">
|
|
23
|
+
<div class="col-sm-12">
|
|
24
|
+
{% include home/planet.html -%}
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
14
28
|
</main>
|
|
15
29
|
|
|
16
30
|
{% include footer.html -%}
|
data/_layouts/page.html
CHANGED
|
@@ -4,13 +4,17 @@ layout: default
|
|
|
4
4
|
|
|
5
5
|
<main class="page">
|
|
6
6
|
|
|
7
|
-
{% include breadcrumbs.html %}
|
|
8
|
-
{% include toc.html html=content %}
|
|
9
|
-
|
|
10
7
|
<article class="page__content">
|
|
8
|
+
<div class="page__content__nav">
|
|
9
|
+
{% include breadcrumbs.html %}
|
|
10
|
+
{% include toc.html html=content %}
|
|
11
|
+
</div>
|
|
12
|
+
|
|
11
13
|
{{ content }}
|
|
12
|
-
</article>
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+
<nav class="page__content__nav">
|
|
16
|
+
{% include top.html %}
|
|
17
|
+
</nav>
|
|
18
|
+
</article>
|
|
15
19
|
|
|
16
20
|
</main>
|
data/_layouts/post.html
CHANGED
|
@@ -4,39 +4,26 @@ layout: default
|
|
|
4
4
|
|
|
5
5
|
<main class="post">
|
|
6
6
|
|
|
7
|
-
<
|
|
7
|
+
<article class="post__content">
|
|
8
|
+
|
|
9
|
+
<nav class="post__content__nav">
|
|
10
|
+
{% include breadcrumbs.html %}
|
|
11
|
+
{% include toc.html html=content %}
|
|
12
|
+
</nav>
|
|
13
|
+
|
|
8
14
|
{% if page.image %}
|
|
9
|
-
<figure>
|
|
10
|
-
<img class="figure-img img-fluid" src="{{ page.image }}" alt="{{ page.title | escape }}">
|
|
11
|
-
</figure>
|
|
15
|
+
<figure><img class="figure-img img-fluid" src="{{ page.image }}" alt="{{ page.title | escape }}"></figure>
|
|
12
16
|
{% endif %}
|
|
17
|
+
|
|
13
18
|
{{ content }}
|
|
14
|
-
</section>
|
|
15
19
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
+
<nav class="post__content__nav">
|
|
21
|
+
{% include post-nav-explorer.html %}
|
|
22
|
+
</nav>
|
|
23
|
+
</article>
|
|
24
|
+
|
|
25
|
+
<aside class="post__nav">
|
|
26
|
+
{% include post-nav.html %}
|
|
20
27
|
</aside>
|
|
21
28
|
|
|
22
|
-
<nav class="post__navbar">
|
|
23
|
-
{% if page.previous.url %}
|
|
24
|
-
<div class="post__navbar__newer">
|
|
25
|
-
{% else %}
|
|
26
|
-
<div class="post__navbar__newer--disabled">
|
|
27
|
-
{% endif %}
|
|
28
|
-
<a href="{{ page.previous.url }}"><button type="button" class="btn btn-light" data-toggle="tooltip" data-placement="top" title="Previous Post - {{ page.previous.title }}"><i class="fas fa-arrow-left"></i></button></a>
|
|
29
|
-
</div>
|
|
30
|
-
<div class="blog__navbar_entries">
|
|
31
|
-
<a href="{{ "/blog.html" | relative_url }}"><button type="button" class="btn btn-light" data-toggle="tooltip" data-placement="top" title="Blog posts"><i class="fas fa-th"></i></button></a>
|
|
32
|
-
</div>
|
|
33
|
-
{% if page.next.url %}
|
|
34
|
-
<div class="post__navbar__older">
|
|
35
|
-
{% else %}
|
|
36
|
-
<div class="post__navbar__older--disabled">
|
|
37
|
-
{% endif %}
|
|
38
|
-
<a href="{{ page.next.url }}"><button type="button" class="btn btn-light" data-toggle="tooltip" data-placement="top" title="Next Post - {{ page.next.title }}"><i class="fas fa-arrow-right"></i></button></a>
|
|
39
|
-
</div>
|
|
40
|
-
</nav>
|
|
41
|
-
|
|
42
29
|
</main>
|
data/_layouts/search.html
CHANGED
|
@@ -1,13 +1,39 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
---
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="{{ page.lang | default: 'en' }}">
|
|
4
3
|
|
|
5
|
-
<
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
|
7
|
+
<title>{{ page.title }}</title>
|
|
8
|
+
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon.png">
|
|
9
|
+
<link rel="stylesheet" href="/assets/css/centos.bootstrap.min.css">
|
|
10
|
+
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/instantsearch.js@2.6.0/dist/instantsearch.min.css">
|
|
11
|
+
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/instantsearch.js@2.6.0/dist/instantsearch-theme-algolia.min.css">
|
|
12
|
+
</head>
|
|
6
13
|
|
|
7
|
-
|
|
14
|
+
<body>
|
|
8
15
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
16
|
+
{% include navbar.html -%}
|
|
17
|
+
{% include header.html -%}
|
|
18
|
+
|
|
19
|
+
<main class="search">
|
|
20
|
+
|
|
21
|
+
<div class="search__content">
|
|
22
|
+
<div class="search__content__nav">
|
|
23
|
+
{% include breadcrumbs.html %}
|
|
24
|
+
</div>
|
|
25
|
+
|
|
26
|
+
<div class="search__content_results">
|
|
27
|
+
{{ content }}
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
|
|
31
|
+
</main>
|
|
32
|
+
|
|
33
|
+
{% include footer.html -%}
|
|
34
|
+
|
|
35
|
+
<script src="/assets/js/jquery.min.js"></script>
|
|
36
|
+
<script src="/assets/js/bootstrap.min.js"></script>
|
|
37
|
+
</body>
|
|
38
|
+
|
|
39
|
+
</html>
|
data/_layouts/sponsors.html
CHANGED
|
@@ -4,10 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
<main class="sponsors">
|
|
6
6
|
|
|
7
|
-
{% include breadcrumbs.html %}
|
|
8
|
-
|
|
9
7
|
<div class="sponsors__content">
|
|
10
8
|
|
|
9
|
+
<div class="sponsors__content__nav">
|
|
10
|
+
{% include breadcrumbs.html %}
|
|
11
|
+
{% include toc.html html=content %}
|
|
12
|
+
</div>
|
|
13
|
+
|
|
11
14
|
{{ content }}
|
|
12
15
|
|
|
13
16
|
<div class="sponsors__content__card">
|
data/_sass/centos/_footer.scss
CHANGED
|
@@ -16,14 +16,12 @@
|
|
|
16
16
|
margin-top: $line-height-base * 1.5rem;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
color: $
|
|
19
|
+
color: $white;
|
|
20
20
|
background-color: $black;
|
|
21
21
|
font-size: $font-size-base * 0.9;
|
|
22
|
-
|
|
23
|
-
margin-top: $line-height-base * 2rem;
|
|
22
|
+
text-shadow: 0 0 5px $black;
|
|
24
23
|
|
|
25
24
|
scroll-margin-top: $scroll-margin-top;
|
|
26
|
-
margin-top: $heading-margin-top;
|
|
27
25
|
|
|
28
26
|
ul {
|
|
29
27
|
padding: 0;
|
data/_sass/centos/_header.scss
CHANGED
|
@@ -4,40 +4,32 @@
|
|
|
4
4
|
background-image: url($background-image);
|
|
5
5
|
background-color: $black;
|
|
6
6
|
background-size: cover;
|
|
7
|
-
background-position:
|
|
7
|
+
background-position: top right;
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
padding-top: 4rem;
|
|
11
|
-
padding-bottom: 3rem;
|
|
12
|
-
margin-top: 60px;
|
|
9
|
+
text-shadow: 0 0 5px $black;
|
|
13
10
|
|
|
11
|
+
&__home {
|
|
14
12
|
display: flex;
|
|
15
13
|
justify-content: center;
|
|
16
14
|
flex-direction: column;
|
|
17
15
|
|
|
16
|
+
padding-top: calc(#{$navbar-brand-height} * 4);
|
|
17
|
+
padding-bottom: calc(#{$navbar-brand-height} * 6);
|
|
18
|
+
margin-top: $navbar-brand-height;
|
|
19
|
+
|
|
18
20
|
&__title, &__description, &__preamble {
|
|
19
21
|
@extend .container;
|
|
20
|
-
text-shadow: 0 0 5px $black;
|
|
21
22
|
}
|
|
22
23
|
|
|
23
24
|
&__description {
|
|
24
25
|
@extend .lead;
|
|
25
26
|
}
|
|
26
|
-
|
|
27
|
-
&__worklines {
|
|
28
|
-
@extend .container;
|
|
29
|
-
.btn {
|
|
30
|
-
@extend .btn, .btn-outline-light;
|
|
31
|
-
margin-bottom: 1rem;
|
|
32
|
-
margin-right: 1rem;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
27
|
}
|
|
36
28
|
|
|
37
29
|
&__page {
|
|
38
|
-
padding-top:
|
|
39
|
-
padding-bottom:
|
|
40
|
-
margin-top:
|
|
30
|
+
padding-top: calc(#{$navbar-brand-height} * 2);
|
|
31
|
+
padding-bottom: calc(#{$navbar-brand-height} * 4);
|
|
32
|
+
margin-top: $navbar-brand-height;
|
|
41
33
|
|
|
42
34
|
display: flex;
|
|
43
35
|
justify-content: center;
|
|
@@ -54,9 +46,9 @@
|
|
|
54
46
|
}
|
|
55
47
|
|
|
56
48
|
&__blog, &__post {
|
|
57
|
-
padding-top:
|
|
58
|
-
padding-bottom:
|
|
59
|
-
margin-top:
|
|
49
|
+
padding-top: calc(#{$navbar-brand-height} * 2);
|
|
50
|
+
padding-bottom: calc(#{$navbar-brand-height} * 4);
|
|
51
|
+
margin-top: $navbar-brand-height;
|
|
60
52
|
|
|
61
53
|
display: flex;
|
|
62
54
|
justify-content: space-between;
|
|
@@ -78,15 +70,12 @@
|
|
|
78
70
|
}
|
|
79
71
|
}
|
|
80
72
|
}
|
|
81
|
-
|
|
82
73
|
&__present {
|
|
83
74
|
@extend .container;
|
|
84
75
|
}
|
|
85
|
-
|
|
86
76
|
&__title, &__description {
|
|
87
77
|
text-shadow: 0 0 5px $black;
|
|
88
78
|
}
|
|
89
|
-
|
|
90
79
|
&__description {
|
|
91
80
|
@extend .lead;
|
|
92
81
|
}
|
data/_sass/centos/_main.scss
CHANGED
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
.home, .page, .blog, .aside, .download, .sponsors, .search, .post {
|
|
2
2
|
@extend .container;
|
|
3
3
|
min-height: calc(30vh);
|
|
4
|
-
padding-top: $paragraph-margin-bottom;
|
|
5
|
-
padding-bottom: $paragraph-margin-bottom;
|
|
6
4
|
}
|
|
7
5
|
|
|
8
6
|
.home {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
7
|
+
&__content {
|
|
8
|
+
@extend .col-sm-12;
|
|
9
|
+
@include content;
|
|
10
|
+
&__distributions {
|
|
11
|
+
.btn {
|
|
12
|
+
@extend .btn-primary;
|
|
13
|
+
margin-right: 15px;
|
|
14
|
+
margin-bottom: $paragraph-margin-bottom;
|
|
15
|
+
}
|
|
16
16
|
}
|
|
17
17
|
&__sponsors {
|
|
18
|
-
@extend .col-4;
|
|
19
18
|
.card {
|
|
20
19
|
margin: 1em;
|
|
21
20
|
margin-left: 0;
|
|
@@ -26,128 +25,122 @@
|
|
|
26
25
|
height: 50px;
|
|
27
26
|
}
|
|
28
27
|
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
&__planet, &__news-and-events {
|
|
29
|
+
@include link-list;
|
|
30
|
+
}
|
|
32
31
|
}
|
|
33
32
|
}
|
|
34
33
|
|
|
35
34
|
.aside {
|
|
36
35
|
display: flex;
|
|
37
36
|
align-items: flex-start;
|
|
38
|
-
flex-wrap: wrap;
|
|
39
37
|
|
|
40
38
|
&__nav {
|
|
41
39
|
@include aside-nav;
|
|
42
40
|
}
|
|
43
41
|
|
|
44
42
|
&__content {
|
|
45
|
-
@extend .col-xl-8;
|
|
43
|
+
@extend .col-sm-12, .col-md-12, .col-lg-8, .col-xl-8;
|
|
46
44
|
@include content;
|
|
47
|
-
|
|
45
|
+
@include content-nav;
|
|
48
46
|
}
|
|
49
47
|
}
|
|
50
48
|
|
|
51
49
|
.page {
|
|
52
50
|
&__content {
|
|
51
|
+
@extend .col-sm-12;
|
|
53
52
|
@include content;
|
|
53
|
+
@include content-nav;
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
.blog {
|
|
58
|
-
&__breadcrumb {
|
|
59
|
-
@extend .breadcrumb;
|
|
60
|
-
&__item {
|
|
61
|
-
@extend .breadcrumb-item;
|
|
62
|
-
&--active {
|
|
63
|
-
@extend .active;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
58
|
|
|
68
|
-
&
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
flex-direction: row;
|
|
59
|
+
&__content {
|
|
60
|
+
@extend .col-sm-12;
|
|
61
|
+
@include content;
|
|
72
62
|
|
|
73
|
-
&
|
|
74
|
-
|
|
75
|
-
|
|
63
|
+
&__breadcrumb {
|
|
64
|
+
@extend .breadcrumb;
|
|
65
|
+
&__item {
|
|
66
|
+
@extend .breadcrumb-item;
|
|
67
|
+
&--active {
|
|
68
|
+
@extend .breadcrumb-item;
|
|
69
|
+
}
|
|
76
70
|
}
|
|
77
71
|
}
|
|
78
|
-
}
|
|
79
72
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
73
|
+
&__entries {
|
|
74
|
+
margin-top: 1rem;
|
|
75
|
+
margin-bottom: 1rem;
|
|
76
|
+
&__card {
|
|
77
|
+
display: flex;
|
|
78
|
+
justify-content: space-between;
|
|
79
|
+
flex-direction: row;
|
|
80
|
+
flex-wrap: wrap;
|
|
88
81
|
|
|
89
|
-
|
|
82
|
+
border: none;
|
|
90
83
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
84
|
+
&__item {
|
|
85
|
+
@extend .col-lg-6;
|
|
86
|
+
&__image {
|
|
87
|
+
@extend .img-fluid;
|
|
88
|
+
padding-bottom: 1em;
|
|
89
|
+
}
|
|
96
90
|
}
|
|
97
91
|
}
|
|
98
92
|
}
|
|
99
|
-
|
|
93
|
+
|
|
94
|
+
&__nav {
|
|
95
|
+
@include post-nav-explorer;
|
|
96
|
+
}
|
|
100
97
|
}
|
|
101
98
|
}
|
|
102
99
|
|
|
103
100
|
.post {
|
|
104
101
|
display: flex;
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
@extend .col-lg-8;
|
|
111
|
-
display: flex;
|
|
112
|
-
justify-content: space-between;
|
|
113
|
-
flex-direction: row;
|
|
114
|
-
|
|
115
|
-
&__newer, &__older {
|
|
116
|
-
&--disabled {
|
|
117
|
-
opacity: 0;
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
&__newer {
|
|
121
|
-
margin-right: 0;
|
|
122
|
-
}
|
|
123
|
-
&__older {
|
|
124
|
-
margin-left: 0;
|
|
125
|
-
}
|
|
102
|
+
align-items: flex-start;
|
|
103
|
+
|
|
104
|
+
&__nav {
|
|
105
|
+
@include aside-nav;
|
|
106
|
+
@include post-nav-explorer;
|
|
126
107
|
}
|
|
127
108
|
|
|
128
109
|
&__content {
|
|
129
|
-
@extend .col-lg-8;
|
|
110
|
+
@extend .col-sm-12, .col-md-12, .col-lg-8, .col-xl-8;
|
|
130
111
|
@include content;
|
|
131
|
-
|
|
132
|
-
&__nav {
|
|
133
|
-
@include aside-nav;
|
|
134
|
-
}
|
|
112
|
+
@include content-nav;
|
|
135
113
|
}
|
|
114
|
+
|
|
136
115
|
}
|
|
137
116
|
|
|
138
117
|
.search {
|
|
139
|
-
|
|
140
|
-
@include link-list;
|
|
118
|
+
@include content;
|
|
141
119
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
120
|
+
.ais-search-box {
|
|
121
|
+
max-width: 100%;
|
|
122
|
+
margin-bottom: 15px;
|
|
123
|
+
}
|
|
124
|
+
.ais-hits {
|
|
125
|
+
@include link-list;
|
|
126
|
+
}
|
|
127
|
+
.ais-pagination {
|
|
128
|
+
li {
|
|
129
|
+
text-decoration: none;
|
|
149
130
|
}
|
|
150
131
|
}
|
|
132
|
+
.ais-Highlight {
|
|
133
|
+
font-weight: bold;
|
|
134
|
+
font-style: normal;
|
|
135
|
+
}
|
|
136
|
+
.post-breadcrumbs {
|
|
137
|
+
display: block;
|
|
138
|
+
font-size: small;
|
|
139
|
+
}
|
|
140
|
+
.post-snippet img {
|
|
141
|
+
display: none;
|
|
142
|
+
}
|
|
143
|
+
|
|
151
144
|
}
|
|
152
145
|
|
|
153
146
|
.download {
|
|
@@ -170,6 +163,9 @@
|
|
|
170
163
|
|
|
171
164
|
.sponsors {
|
|
172
165
|
&__content {
|
|
166
|
+
@extend .col-sm-12, .col-md-12, .col-lg-12, .col-xl-12;
|
|
167
|
+
@include content;
|
|
168
|
+
|
|
173
169
|
&__card {
|
|
174
170
|
display: flex;
|
|
175
171
|
flex-wrap: wrap;
|