jekyll-theme-noesya 1.0.13 → 1.0.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d179bf5ee168ad5034116eca3f81c39efb5fb28a3e2b6cf67d27524f7430d247
4
- data.tar.gz: 9912412822b88d371e1e40f5c0474433e613ad7df235aa14ffac338d95e173eb
3
+ metadata.gz: ba93ee31d7ba9c671800ba440e82754e208303324ccc7cc4d5110069cc75f855
4
+ data.tar.gz: 99a351c9efa70f08cf440af3d46e611a35c0c4f93bf81218da8d51c74c1f0fd4
5
5
  SHA512:
6
- metadata.gz: 9061be45e3889749dbc045c5751f3b93cda733982e1b109d86d4bccdbce12705f48b10e921067cb9b35cfd49f3c46357ef95d677e7e94d17d6635cb52d782cf8
7
- data.tar.gz: '0867a5260a14801d15f190002a415544834e718c66ff31c3d8e842d27052e8f57ccaefd76a06d14dcae6b4dc0e5155d79e74e101bf37d92d00d682c91ac19da7'
6
+ metadata.gz: 6ee7e818d79140b032845f562e17c0b23ed637b04602c48fc6be0f03849538febe3fa5f7fc9953c8ba3c052e4553f50afd6111c92ba286bfe2ec42d1b005a64c
7
+ data.tar.gz: 7d835a01422f5b3f740dcfd8e70f2abd77fcff8487324db3b05e3a263f8c493027be43428fb90beb6473283904e6e4249691520b3ff965fcab0faec849584ead
@@ -2,7 +2,7 @@
2
2
  <ul>
3
3
  {% for item in site.data.menus.primary %}
4
4
  <li>
5
- <a href="{{ item.url }}">{{ item.title }}</a>
5
+ <a href="{{ item.url }}"{% if page.url contains item.url %} class="active"{% endif %}>{{ item.title }}</a>
6
6
  </li>
7
7
  {% endfor %}
8
8
  </ul>
@@ -18,6 +18,7 @@
18
18
  {% include header.html %}
19
19
  <main aria-label="Content" class="{{ page.class | default: layout.class }}">
20
20
  {{ content }}
21
+ {% include navigation-between-pages.html %}
21
22
  </main>
22
23
  {% include footer.html %}
23
24
 
data/_layouts/page.html CHANGED
@@ -7,6 +7,10 @@ class: page
7
7
  <h1>{{ page.title }}</h1>
8
8
  </header>
9
9
 
10
+ {% if page.sections %}
11
+ {% include sections-with-notes.html %}
12
+ {% endif %}
13
+
10
14
  {% if content != "" %}
11
15
  <section>
12
16
  {{ content }}
@@ -68,6 +68,8 @@
68
68
  ul:hover
69
69
  a
70
70
  color: $secondary-reverse
71
+ .menu_burger_only_mobile &
72
+ color: $white
71
73
  &:hover
72
74
  color: $white
73
75
 
@@ -79,37 +81,3 @@
79
81
  a
80
82
  &:hover
81
83
  color: $primary
82
-
83
- main.index
84
- section
85
- li
86
- a
87
- &::after
88
- filter: invert(0)
89
- main.team
90
- p
91
- color: $secondary-reverse
92
-
93
- main.metier
94
- article
95
- p
96
- color: $secondary-reverse
97
-
98
- main.metier
99
- article
100
- p
101
- color: $secondary-reverse
102
- .is-menu-opened &
103
- color: $secondary
104
-
105
- main.member
106
- header+div
107
- background-color: $bg-secondary-color-reverse
108
- > section h2+p
109
- color: $secondary-on-gray-reverse
110
- @include media-breakpoint-up(md)
111
- .is-menu-opened &
112
- background-color: $bg-secondary-color
113
- span
114
- .is-menu-opened &
115
- color: $secondary
@@ -9,7 +9,7 @@ a
9
9
  &[target="_blank"]
10
10
  &::after
11
11
  @include icon
12
- content: "\e900"
12
+ content: map-get($icons, 'link-blank')
13
13
  font-size: .75em
14
14
  margin-left: .3rem
15
15
  @include media-breakpoint-up(md)
@@ -107,6 +107,7 @@
107
107
  &:not(:first-child)
108
108
  margin-left: $grid-gutter
109
109
  a
110
+ &.active,
110
111
  &:hover
111
112
  text-decoration: underline
112
113
  @include media-breakpoint-up(lg)
@@ -15,3 +15,7 @@
15
15
  @mixin media-breakpoint-height-up($height)
16
16
  @media (min-height: ($height)) and (min-width: 1200px)
17
17
  @content
18
+
19
+ @mixin media-breakpoint-height-down($height)
20
+ @media (max-height: ($height)) and (min-width: 1200px)
21
+ @content
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-noesya
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.13
4
+ version: 1.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sébastien Moulène