jumbo-jekyll-theme 5.7.0.4 → 5.7.0.5

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: 39c295fc456d1f91410d059341206364b249d6f671cffe5c209231e2bf5e21f3
4
- data.tar.gz: 1193f8810c1038ebc1aaf173fd6aa84ef3378c7cef83038bb871b51f95afb691
3
+ metadata.gz: 29dfefc605a487b71001741a124e6450002a3d807e2bbfa079708b86fe26ab52
4
+ data.tar.gz: 25e5ab5535fdcd88b5d52bff67afa4c2ff4aa7db48952f4e0cfcb7238f55610b
5
5
  SHA512:
6
- metadata.gz: 3014be27c4a85a43e5e4cc44703f28796af2fed9755a35340e785c37a50bd9f2f2bba226cf95b9aee516c7365215267aebcff5d257ceee0233106e032ba30395
7
- data.tar.gz: f10f39ae39c3a87878157b500956b4e57953cf555bc5853400683f287ce02458c0ca895f305aaf3dfcfdf4ac2ed6646137a2fc75cb117f7a048ac58920a48dbd
6
+ metadata.gz: ffe8aaaa4ebfeb3687597fca2379aa0716f0bfc97499315180076329acbf497c855ffa820cd6a56759f80809636bf75e2e84faed8a75703b81f106efe2953fe5
7
+ data.tar.gz: eff8de670dc5b438ad63e8e64c77c88913cac683e0aac813e2bd2e4324bbdf373f4fe954758095e5b4e11215e65038f6220cd4880ade638276f650a1eff6adc7
@@ -76,11 +76,10 @@ http2_resources:
76
76
  href: /assets/fonts/lato/Lato-regular.woff2
77
77
  google_analytics:
78
78
  enabled: true
79
- cookies_popup_title: Cookies & Privacy Policy
79
+ cookies_popup_title: Test Cookies & Privacy Policy
80
80
  cookies_popup_description: >
81
- Cookies enable you to use this website to the full extent and to personalize your experience on our sites. They tell us which parts of our websites people have visited, help us measure the effectiveness of ads and web searches and give us insights into user behavior so we can improve our communications with you.
82
- privacy_url: /privacy/
83
- enabled: true
81
+ Cookies enable test you to use this website to the full extent and to personalize your experience on our sites. They tell us which parts of our websites people have visited, help us measure the effectiveness of ads and web searches and give us insights into user behavior so we can improve our communications with you.
82
+ privacy_url: /privacy-test/
84
83
  code: UAXXXXXXB
85
84
  # Set the site-wide default social media share image.
86
85
  social_media_share_image: /assets/images/social-media-image.png
@@ -68,7 +68,9 @@ markup_presets:
68
68
  fallback_width: 600 # Default 800
69
69
  # Images for blog posts
70
70
  blog_image:
71
- markup: img
71
+ markup: data_picture
72
+ attributes:
73
+ img: 'class="lazyload img-fluid blog_content_image "'
72
74
  formats: [webp, original]
73
75
  widths: [400,800,1200]
74
76
  header_image:
@@ -127,7 +129,7 @@ markup_presets:
127
129
  attributes:
128
130
  img: 'class="lazyload rounded-circle small"'
129
131
  formats: [webp, original]
130
- widths: [50]
132
+ widths: [50, 100]
131
133
  post_thumb:
132
134
  markup: data_picture
133
135
  attributes:
@@ -4,7 +4,7 @@
4
4
  {% assign posts = site.posts | sort: 'date' | reverse %}
5
5
  {% endif %}
6
6
  <div class="row py-0">
7
- {% for post in posts limit: 9 %}
7
+ {% for post in posts limit: 20 %}
8
8
  {% assign timeframe = 604800 %}
9
9
  {% assign post_in_seconds = post.date | date: "%s" | plus: 0 %}
10
10
  {% assign recent_posts = "now" | date: "%s" | minus: timeframe %}
@@ -60,14 +60,6 @@
60
60
  </div>
61
61
  {% else %}
62
62
 
63
- {% comment %}
64
- Blog Filler Element - This is needed due to the layout of the blog. If not included then there will be an empty col on the first blog page.
65
- {% endcomment %}
66
-
67
- {% if forloop.index == 6 %}
68
- {% include {{site.blog_filler_element}} %}
69
- {% endif %}
70
-
71
63
  <div class="col col-12 col-sm-6 col-lg-4 blog-post-item-col p-3">
72
64
  <div class="card h-100 ">
73
65
  <div class="blog_image_header">
@@ -98,13 +90,13 @@
98
90
  </div>
99
91
  <h5 class="card-title">{{post.title}}</h5>
100
92
  <h6 class="card-subtitle mb-2 text-muted">{{ post.date | date: "%A, %B %-d, %Y"}}</h6>
93
+ {% include blog/read_time.html content=post.content %}
101
94
  <p class="card-text">
102
95
  {% if post.description %}
103
- {{post.description}}
96
+ {{post.description | strip_html | truncatewords:30 }}
104
97
  {% else %}
105
98
  {{ post.content | strip_html | truncatewords:30 }}
106
99
  {% endif %}
107
- Read time: {% include blog/read_time.html content=post.content %}
108
100
  </p>
109
101
  <p class="card-text">
110
102
  <a href="{{post.url}}" class="btn btn-primary">Read</a>
@@ -1,4 +1,4 @@
1
- {% assign url = include.object.payload | where: 'name', 'url' | first %}
1
+ {% assign url = include.object.payload %}
2
2
  <div class="col col-12 ">
3
3
  <div id="post_search" data-file-path="{{url.data}}">
4
4
  <input class="form-control form-control-lg" id="search-input" type="text" placeholder="Search {{posts.size}} posts..."/>
@@ -4,4 +4,4 @@
4
4
  {% else %}
5
5
  {% assign words = content | number_of_words %}
6
6
  {% endif %}
7
- <span class="reading-time" title="Estimated read time">{% if words < 360 %}1 min read{% else %}{{ words | divided_by:180 }} mins read{% endif %} <i class="fa fa-clock-o" aria-hidden="true"></i></span>
7
+ <span class="reading-time badge badge-light" title="Estimated read time">{% if words < 360 %}1 min read{% else %}{{ words | divided_by:180 }} mins read{% endif %} <i class="fa fa-clock-o" aria-hidden="true"></i></span>
@@ -7,13 +7,13 @@
7
7
  {% endif %}
8
8
  {% for block in include.object.block_section_content.blocks %}
9
9
  <div class="col col-12 col-sm-6 col-lg-{{block_width}} block_column">
10
- <div class="card h-100 {% if block.background_image %}background_image text-white{% endif %}">
10
+ <div class="card h-100 {% if block.background_image %}background_image text-white{% endif %} {% if block.style %}{{block.style}}{% endif %}">
11
11
  {% if block.image %}
12
12
  {% assign block_image = block.image | remove_first: "/assets/images/" %}
13
13
  {% capture block_image_alt %}{{block.title}} image {% endcapture %}
14
14
  {% picture card_block_image {{block_image}} --alt {{block_image_alt}} %}
15
15
  {% endif %}
16
- <div class="card-body {% if block.background_image %}card-img-overlay{% else %}card-body{% endif %}">
16
+ <div class="card-body {% if block.background_image %}card-img-overlay{% else %}card-body{% endif %} {% if block.content_style %}{{block.content_style}}{% endif %}">
17
17
  {% if block.title %}
18
18
  <h5 class="card-title">{{block.title}}</h5>
19
19
  {% endif %}
@@ -1,4 +1,4 @@
1
- <div class="col col-12 buttons no-padding {% if include.style %}{{include.style}}{% endif %}">
1
+ <div class="col col-12 buttons px-0 {% if include.style %}{{include.style}}{% endif %}">
2
2
  {% for button in include.object %}
3
3
  {% include flow/button.html object=button %}
4
4
  {% endfor %}
@@ -1,5 +1,11 @@
1
- {% if include.path %}
2
- {% picture blog_image {{include.path | remove_first: "/assets/images/" }} %}
1
+ {% if include.alt %}
2
+ {% capture image_alt %}{{include.alt}}{% endcapture %}
3
3
  {% else %}
4
- Image path not specified...
4
+ {% capture image_alt %}{{page.title}} content image{% endcapture %}
5
5
  {% endif %}
6
+ {% if include.class %}
7
+ {% capture image_class %}{{include.class}}{% endcapture %}
8
+ {% else %}
9
+ {% capture image_class %}{% endcapture %}
10
+ {% endif %}
11
+ {% picture blog_image {{include.path | remove_first: "/assets/images/" }} class="{{image_class}}" --alt {{image_alt}} --class {{image_class}} %}
@@ -6,6 +6,6 @@
6
6
  {% assign media_url = include.media_url %}
7
7
  {% endif %}
8
8
 
9
- <div class="embed-responsive embed-responsive-16by9">
9
+ <div class="embed-responsive embed-responsive-16by9" {% if include.class %}{{include.class}}{% endif %}>
10
10
  <iframe src='about:blank' allowFullScreen="allowFullScreen" frameBorder="0" class="lazyload embed-responsive-item" data-src="{{media_url}}"></iframe>
11
11
  </div>
@@ -14,7 +14,7 @@
14
14
  {% for item in site.data.universal_nav.items %}
15
15
  {% if item.options %}
16
16
  <li class="nav-item dropdown {% for project-site in item.options %}{% if project-site.active %}active{% break %}{% endif %}{% endfor %}">
17
- <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
17
+ <a class="nav-link dropdown-toggle" target="_self" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
18
18
  aria-haspopup="true" aria-expanded="false">
19
19
  {{item.title}}
20
20
  </a>
@@ -26,7 +26,7 @@
26
26
  </li>
27
27
  {% else %}
28
28
  <li class="nav-item {% if item.active %}active{% endif %}">
29
- <a class="nav-link" href="{{item.url}}">{{item.title}} <span class="sr-only">(current)</span></a>
29
+ <a target="_self" class="nav-link" href="{{item.url}}">{{item.title}} <span class="sr-only">(current)</span></a>
30
30
  </li>
31
31
  {% endif %}
32
32
  {% endfor %}
@@ -10,7 +10,7 @@ layout: base
10
10
  {% if page.flow %}
11
11
  {% for each in page.flow %}
12
12
  {% if each.row == "main_content_row" %}
13
- <div class="row" id="main_content">
13
+ <div class="row {% if each.style %}{{style}}{% endif %}" id="main_content">
14
14
  <div class="container">
15
15
  {{content}}
16
16
  </div>
@@ -2,6 +2,7 @@
2
2
  layout: base
3
3
  css_package: blog
4
4
  ---
5
+ <div itemscope="" itemtype="http://schema.org/BlogPosting">
5
6
  <div
6
7
  class="jumbotron d-flex align-items-center jumbotron-fluid {% if page.image %}background_image{% endif%}">
7
8
  {% if page.image %}
@@ -10,7 +11,7 @@ css_package: blog
10
11
  {% endif %}
11
12
  <div class="container text-center">
12
13
  <div class="inner_content_wrapper">
13
- <h1 class="">{{page.title}}</h1>
14
+ <h1 class="" itemprop="name headline">{{page.title}}</h1>
14
15
 
15
16
  {% assign author = site.authors | where: "username", page.author | first %}
16
17
  {% assign author-url = author.url %}
@@ -21,15 +22,17 @@ css_package: blog
21
22
  {% else %}
22
23
  {% assign author_image = site.avatar_placeholder | remove_first: "/assets/images/" %}
23
24
  {% endif %}
24
- <a href="{{author-url}}">
25
- {% picture author_thumbnail {{author_image}} --alt {{author_image_alt}} %}
26
- <p class="lead">
27
- <em>{{author_name}}</em>
28
- </p>
29
- </a>
30
- <hr class="my-4">
25
+ <div itemprop="author" itemscope="" itemtype="http://schema.org/Person">
26
+ <a href="{{author-url}}" itemprop="url" rel="author">
27
+ {% picture author_thumbnail {{author_image}} --alt {{author_image_alt}} %}
28
+ <p class="lead">
29
+ <em itemprop="name">{{author_name}}</em>
30
+ </p>
31
+ </a>
32
+ </div>
33
+
31
34
  <p>
32
- <em>{{page.date | date: "%A, %B %-d, %Y"}}</em>
35
+ <time datetime="{{page.date}}" itemprop="datePublished">{{page.date | date: "%A, %B %-d, %Y"}}</time>
33
36
  </p>
34
37
  {% include blog/read_time.html %}
35
38
  </div>
@@ -53,3 +56,4 @@ css_package: blog
53
56
  </div>
54
57
  </div>
55
58
  </div>
59
+ </div>
@@ -0,0 +1 @@
1
+ /* Custom rules for your website can be defined here. */
@@ -1,170 +1,206 @@
1
1
  #wrapper {
2
- #post_search {
3
- #results-container {
4
- position: absolute;
5
- z-index: 9999;
6
- background-color: white;
7
- width: 100%;
8
- border: 1px solid #eee;
9
- height: 300px;
10
- overflow: scroll;
2
+ .blog-content {
3
+ .blog_content_image {
4
+ margin: 20px 0px;
5
+ &.small-inline {
6
+ @include media-breakpoint-up(md) {
7
+ width: 200px;
8
+ display: block;
9
+ float: left;
10
+ margin: 0px 20px;
11
11
  }
12
- .close_search {
13
- display:none;
14
- position: absolute;
15
- top: 0px;
16
- right: 0px;
17
- font-size: 26px;
18
- color:#000;
19
- line-height: 80px;
20
- padding-right: 10px;
21
- &:hover{
22
- text-decoration: none;
23
- color:$primary;
24
- }
12
+ }
13
+ &.medium-inline {
14
+ @include media-breakpoint-up(md) {
15
+ width: 300px;
16
+ display: block;
17
+ float: left;
18
+ margin: 0px 20px;
25
19
  }
26
- .search_result_img {
27
- width: 100px;
20
+ }
21
+ &.large-inline {
22
+ @include media-breakpoint-up(md) {
23
+ width: 400px;
24
+ display: block;
25
+ float: left;
26
+ margin: 0px 20px;
28
27
  }
29
- }
30
- .highlighter-rouge {
31
- div.highlight {
32
- position: relative;
33
- pre.highlight {
34
- padding: 15px;
35
- position: relative;
36
- }
37
- .copyBtn {
38
- position: absolute;
39
- bottom: 0px;
40
- z-index: 9999;
41
- height: 40px;
42
- right: 0px;
43
- border-left: 1px solid white;
44
- border-top: 1px solid white;
45
- border-top-right-radius: 0px;
46
- border-bottom-right-radius: 0px;
47
- border-bottom-left-radius: 0px;
48
- width: 40px;
49
- &:hover, &:focus {
50
- background-color:$primary;
51
- }
52
- }
28
+ }
29
+ &.right {
30
+ @include media-breakpoint-up(md) {
31
+ float: right !important;
53
32
  }
33
+ }
34
+
54
35
  }
55
- .suggested_post_thumb {
56
- width: 100px;
57
- border:1px solid lightgray;
58
- padding:0;
59
- @include media-breakpoint-down(xs) {
60
- width:100%;
61
- }
36
+ }
37
+ #post_search {
38
+ #results-container {
39
+ position: absolute;
40
+ z-index: 9999;
41
+ background-color: white;
42
+ width: 100%;
43
+ border: 1px solid #eee;
44
+ height: 300px;
45
+ overflow: scroll;
62
46
  }
63
- .media-body {
64
- h5{
65
- font-size: 1.7rem;
66
- }
67
- & > a {
68
- color: #313131;
69
- &:hover{
70
- text-decoration: none;
71
- }
72
- }
47
+ .close_search {
48
+ display: none;
49
+ position: absolute;
50
+ top: 0px;
51
+ right: 0px;
52
+ font-size: 26px;
53
+ color: #000;
54
+ line-height: 80px;
55
+ padding-right: 10px;
56
+ &:hover {
57
+ text-decoration: none;
58
+ color: $primary;
59
+ }
73
60
  }
74
- .suggested_post_date {
75
- display:block;
61
+ .search_result_img {
62
+ width: 100px;
76
63
  }
77
- a {
78
- transition: all 500ms ease-in-out;
79
- &:hover {
80
- color: $primary;
64
+ }
65
+ .highlighter-rouge {
66
+ div.highlight {
67
+ position: relative;
68
+ pre.highlight {
69
+ padding: 15px;
70
+ position: relative;
71
+ }
72
+ .copyBtn {
73
+ position: absolute;
74
+ bottom: 0px;
75
+ z-index: 9999;
76
+ height: 40px;
77
+ right: 0px;
78
+ border-left: 1px solid white;
79
+ border-top: 1px solid white;
80
+ border-top-right-radius: 0px;
81
+ border-bottom-right-radius: 0px;
82
+ border-bottom-left-radius: 0px;
83
+ width: 40px;
84
+ &:hover,
85
+ &:focus {
86
+ background-color: $primary;
81
87
  }
88
+ }
82
89
  }
83
- .rounded-circle {
84
- width: 100px;
85
- height: 100px;
86
- &.small {
87
- height: 50px;
88
- width: 50px;
89
- margin-right: 10px;
90
- }
90
+ }
91
+ .suggested_post_thumb {
92
+ width: 100px;
93
+ border: 1px solid lightgray;
94
+ padding: 0;
95
+ @include media-breakpoint-down(xs) {
96
+ width: 100%;
91
97
  }
92
- .featured_post {
93
- .row {
94
- border-radius: 20px;
95
- overflow: hidden;
96
- -webkit-box-shadow: 0px 0px 20px 5px #f0f0f0;
97
- -moz-box-shadow: 0px 0px 20px 5px #e5e5e5;
98
- box-shadow: 0px 0px 20px 5px #ebebeb;
99
- margin-left: 0;
100
- margin-right: 0;
101
- padding: 0px;
102
- .latest-featured-post-content {
103
- .card{
104
- border-radius: 20px;
105
- border-top-right-radius: 0px;
106
- border-bottom-right-radius: 0px;
107
- @include media-breakpoint-down(sm){
108
- border-bottom-right-radius: 20px;
109
- border-top-right-radius: 0px;
110
- border-top-left-radius: 0px;;
111
- }
112
- }
113
- }
114
- }
98
+ }
99
+ .media-body {
100
+ h5 {
101
+ font-size: 1.7rem;
115
102
  }
116
- .blog_image_header {
117
- overflow: hidden;
118
- position: relative;
119
- img {
120
- height: 150px;
121
- width: 100%;
122
- object-fit: cover;
123
- }
124
- &:after {
125
- content: '';
126
- display: none;
127
- height: 100%;
128
- width: 100%;
129
- position: absolute;
130
- top: 0px;
131
- opacity: .4;
132
- background-color: $primary;
133
- z-index: 0;
134
- }
135
- &:before {
136
- content: 'Read';
137
- display: none;
138
- width: 100%;
139
- color:white;
140
- position: absolute;
141
- z-index: 1;
142
- text-align: center;
143
- top: 50%;
144
- transform: translateY(-50%);
145
- opacity:1;
146
-
147
- }
103
+ & > a {
104
+ color: #313131;
105
+ &:hover {
106
+ text-decoration: none;
107
+ }
108
+ }
109
+ }
110
+ .suggested_post_date {
111
+ display: block;
112
+ }
113
+ a {
114
+ transition: all 500ms ease-in-out;
115
+ &:hover {
116
+ color: $primary;
117
+ }
118
+ }
119
+ .rounded-circle {
120
+ width: 100px;
121
+ height: 100px;
122
+ &.small {
123
+ height: 50px;
124
+ width: 50px;
125
+ margin-right: 10px;
148
126
  }
149
- .blog-post-item-col {
127
+ }
128
+ .featured_post {
129
+ .row {
130
+ border-radius: 20px;
131
+ overflow: hidden;
132
+ -webkit-box-shadow: 0px 0px 20px 5px #f0f0f0;
133
+ -moz-box-shadow: 0px 0px 20px 5px #e5e5e5;
134
+ box-shadow: 0px 0px 20px 5px #ebebeb;
135
+ margin-left: 0;
136
+ margin-right: 0;
137
+ padding: 0px;
138
+ .latest-featured-post-content {
150
139
  .card {
151
- border-radius: 20px;
152
- overflow:hidden;
153
- -webkit-box-shadow: 0px 0px 20px 5px #f0f0f0;
154
- -moz-box-shadow: 0px 0px 20px 5px #e5e5e5;
155
- box-shadow: 0px 0px 20px 5px #ebebeb;
156
- transition: all 200ms ease;
157
- &:hover {
158
- transform: translateY(-5px);
159
- -webkit-box-shadow: 0px 0px 20px 5px #b3b3b3;
160
- -moz-box-shadow: 0px 0px 20px 5px #b3b3b3;
161
- box-shadow: 0px 0px 20px 5px#b3b3b3;
162
- .blog_image_header {
163
- &:before , &:after {
164
- display:block;
165
- }
166
- }
167
- }
140
+ border-radius: 20px;
141
+ border-top-right-radius: 0px;
142
+ border-bottom-right-radius: 0px;
143
+ @include media-breakpoint-down(sm) {
144
+ border-bottom-right-radius: 20px;
145
+ border-top-right-radius: 0px;
146
+ border-top-left-radius: 0px;
147
+ }
148
+ }
149
+ }
150
+ }
151
+ }
152
+ .blog_image_header {
153
+ overflow: hidden;
154
+ position: relative;
155
+ img {
156
+ height: 150px;
157
+ width: 100%;
158
+ object-fit: cover;
159
+ }
160
+ &:after {
161
+ content: "";
162
+ display: none;
163
+ height: 100%;
164
+ width: 100%;
165
+ position: absolute;
166
+ top: 0px;
167
+ opacity: 0.4;
168
+ background-color: $primary;
169
+ z-index: 0;
170
+ }
171
+ &:before {
172
+ content: "Read";
173
+ display: none;
174
+ width: 100%;
175
+ color: white;
176
+ position: absolute;
177
+ z-index: 1;
178
+ text-align: center;
179
+ top: 50%;
180
+ transform: translateY(-50%);
181
+ opacity: 1;
182
+ }
183
+ }
184
+ .blog-post-item-col {
185
+ .card {
186
+ border-radius: 20px;
187
+ overflow: hidden;
188
+ -webkit-box-shadow: 0px 0px 20px 5px #f0f0f0;
189
+ -moz-box-shadow: 0px 0px 20px 5px #e5e5e5;
190
+ box-shadow: 0px 0px 20px 5px #ebebeb;
191
+ transition: all 200ms ease;
192
+ &:hover {
193
+ transform: translateY(-5px);
194
+ -webkit-box-shadow: 0px 0px 20px 5px #b3b3b3;
195
+ -moz-box-shadow: 0px 0px 20px 5px #b3b3b3;
196
+ box-shadow: 0px 0px 20px 5px#b3b3b3;
197
+ .blog_image_header {
198
+ &:before,
199
+ &:after {
200
+ display: block;
201
+ }
168
202
  }
203
+ }
169
204
  }
205
+ }
170
206
  }
@@ -8,6 +8,10 @@
8
8
  img {
9
9
  height: 150px;
10
10
  width: auto;
11
+ &.rounded-circle {
12
+ height: 75px;
13
+ width: 75px;
14
+ }
11
15
  }
12
16
  }
13
17
  h1 {
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  ---
3
3
  @charset "UTF-8";
4
+ // Custom sass and css rules
5
+ @import "app/custom";
4
6
  //Bootstrap Overrides
5
7
  @import "app/overrides";
6
8
  @import "bootstrap/functions";
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jumbo-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.7.0.4
4
+ version: 5.7.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kirkby
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-01 00:00:00.000000000 Z
11
+ date: 2020-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -205,6 +205,7 @@ files:
205
205
  - _layouts/flow.html
206
206
  - _layouts/post.html
207
207
  - _sass/app/blog.scss
208
+ - _sass/app/custom.scss
208
209
  - _sass/app/overrides.scss
209
210
  - _sass/app/search.scss
210
211
  - _sass/blog.scss