jekyll-theme-isabelline 0.1.18 → 0.1.19
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 +34 -1
- data/_includes/gallery.html +8 -0
- data/_includes/head.html +1 -1
- data/_includes/image.html +10 -3
- data/_includes/post_index.html +27 -11
- data/_layouts/gallery.html +10 -0
- data/_sass/_config.scss +1 -1
- data/_sass/_isabelline.scss +44 -5
- data/assets/.DS_Store +0 -0
- data/assets/blog/{example1 → example}/Quarter_Horse_Buckskin.jpg +0 -0
- data/assets/blog/example/gallery/Lanius_isabellinus1.jpg +0 -0
- data/assets/blog/example/gallery/dusan-smetana-ah7KHxYg6Ow-unsplash.jpg +0 -0
- data/assets/blog/example/gallery/jay-ruzesky-h13Y8vyIXNU-unsplash.jpg +0 -0
- data/assets/blog/example/gallery/maurits-bausenhart-OkYjLpB2gzA-unsplash.jpg +0 -0
- data/assets/blog/example/gallery/sneaky-elbow-h00rqvO5A-M-unsplash.jpg +0 -0
- data/assets/blog/getting-started/undraw_browsing_online_sr8c.svg +1 -0
- metadata +14 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d08dcb66cb7206e9726b4b67df662f9856e12b37cb784e77860be56d7201d438
|
4
|
+
data.tar.gz: bb7b654b18461822b11d07b06188ad1be05e1409a4f0fa1d0d30928ebc153250
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2b0c9899e3a62145382fbba2cfaa0b307a4d0d33710e4954e340d587956b806ca384f6117c40ca7986c119e3aca909f1ea268055bd90dfd931131658292f5e3
|
7
|
+
data.tar.gz: 03e176ec8f710e8be13ec0b3bb1f842bdcb0d7e71b522c0f48afc190a199e9616d8e23aa2fc3a9ff7c41c69d8021d51a70b253a56b17f39c65e4c3a3385342a8
|
data/README.md
CHANGED
@@ -1,3 +1,36 @@
|
|
1
1
|
# jekyll-theme-isabelline
|
2
2
|
|
3
|
-
|
3
|
+
Simple clean mobile-friendly theme for long form note taking. Works for blogging too.
|
4
|
+
|
5
|
+
## Features:
|
6
|
+
|
7
|
+
* Compatible with Jekyll 4
|
8
|
+
* Designed for long form writing
|
9
|
+
* Reserved, classy, easy to read, minimalistic visual design
|
10
|
+
* Semantic lightweight mobile first markup; special attention to markup of block quotes, asides, images, image galleries
|
11
|
+
* Customizable color scheme
|
12
|
+
|
13
|
+
## Installation
|
14
|
+
|
15
|
+
Add this line to site's `Gemfile`:
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
gem "jekyll-theme-isabelline", "~> 0.1.0"
|
19
|
+
```
|
20
|
+
And add this line to your Jekyll site:
|
21
|
+
|
22
|
+
```yaml
|
23
|
+
theme: jekyll-theme-isabelline
|
24
|
+
```
|
25
|
+
|
26
|
+
And then execute:
|
27
|
+
|
28
|
+
```sh
|
29
|
+
$ bundle
|
30
|
+
```
|
31
|
+
|
32
|
+
Or, install from CLI:
|
33
|
+
|
34
|
+
```sh
|
35
|
+
$ gem install jekyll-theme-isabelline
|
36
|
+
```
|
@@ -0,0 +1,8 @@
|
|
1
|
+
{% assign images = (include.images | split: "|") %}
|
2
|
+
{% assign thumbnails = (include.thumbnails | split: "|") %}
|
3
|
+
|
4
|
+
<div class="gallery">
|
5
|
+
{% for image in images %}
|
6
|
+
<a href="{{ include.dir }}/{{ image }}"><img src="{{ include.dir }}/{{ image }}" /></a>
|
7
|
+
{% endfor %}
|
8
|
+
</div>
|
data/_includes/head.html
CHANGED
data/_includes/image.html
CHANGED
@@ -11,9 +11,16 @@
|
|
11
11
|
{% capture alt %}alt="{{ alt }}" title="{{ alt }}"{% endcapture %}
|
12
12
|
{% endif %}
|
13
13
|
|
14
|
-
{% assign frame=include.frame
|
14
|
+
{% assign frame=include.frame %}
|
15
|
+
{% if frame == blank %}
|
16
|
+
{% assign frame=true %}
|
17
|
+
{% endif %}
|
18
|
+
|
19
|
+
{% if include.width != blank %}
|
20
|
+
{% capture width %}style="width:{{ include.width }}"{% endcapture %}
|
21
|
+
{% endif %}
|
15
22
|
|
16
|
-
<figure class="figure {% if include.caption %}caption{% endif %} {% if frame %}frame{% endif %}">
|
17
|
-
<a target="_blank" href="{{ imagePath }}"><img {{ src }} {{ alt }}
|
23
|
+
<figure {{width}} class="figure {% if include.caption %}caption{% endif %} {% if frame %}frame{% endif %}">
|
24
|
+
<a target="_blank" href="{{ imagePath }}"><img {{ src }} {{ alt }} /></a>
|
18
25
|
{% if caption != blank %}<figcaption>{{ caption }}</figcaption>{% endif %}
|
19
26
|
</figure>
|
data/_includes/post_index.html
CHANGED
@@ -1,22 +1,38 @@
|
|
1
1
|
|
2
|
-
{% assign title=
|
2
|
+
{% assign title=include.title %}
|
3
3
|
|
4
|
-
{% if title
|
5
|
-
<h1>{{ include.posts | size }} blogs since {{ include.posts | sort: 'date' | map: 'date' | compact | first | date: '%Y' }}</h1>
|
6
|
-
{% else if %}
|
4
|
+
{% if title != blank %}
|
7
5
|
<h1>{{ title }}</h1>
|
6
|
+
{% else %}
|
7
|
+
<h1>{{ include.posts | size }} blogs since {{ include.posts | sort: 'date' | map: 'date' | compact | first | date: '%Y' }}</h1>
|
8
8
|
{% endif %}
|
9
9
|
|
10
|
-
{% if site.index.intro != blank %}
|
11
|
-
{{ site.index.intro }}
|
12
|
-
{% endif %}
|
13
|
-
|
14
|
-
{% if site.index.subtitle != blank %}
|
15
|
-
<h2>{{ site.index.subtitle }}</h2>
|
16
|
-
{% endif %}
|
17
10
|
|
18
11
|
{% assign prev_year = 'first run' %}
|
19
12
|
{% assign sorted_posts = include.posts | sort: "date" | reverse %}
|
13
|
+
|
14
|
+
{% assign pinned_posts=sorted_posts | where: "pinned", 1 %}
|
15
|
+
|
16
|
+
{% if pinned_posts.size > 0 %}
|
17
|
+
<ul class="index">
|
18
|
+
{% for post in pinned_posts %}
|
19
|
+
<li>
|
20
|
+
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
21
|
+
<span class="posted">{{ post.date | date: "%b %-d, %Y" }}</span>
|
22
|
+
{% if jekyll.environment == "local" %}
|
23
|
+
{% if post.collection == 'private' %}
|
24
|
+
<span class="badge collection {{ post.collection }}">{{ post.collection }}</span>
|
25
|
+
{% endif %}
|
26
|
+
{% if post.draft %}
|
27
|
+
<span class="badge draft">draft</span>
|
28
|
+
{% endif %}
|
29
|
+
{% endif %}
|
30
|
+
</li>
|
31
|
+
{% endfor %}
|
32
|
+
</ul>
|
33
|
+
{% endif %}
|
34
|
+
|
35
|
+
|
20
36
|
{% for post in sorted_posts %}
|
21
37
|
|
22
38
|
{% assign current_year = post.date | date: "%Y" %}
|
data/_sass/_config.scss
CHANGED
@@ -41,7 +41,7 @@ $serif: "Noto Serif", Times, serif;
|
|
41
41
|
|
42
42
|
$header-serif: "Bree Serif",$serif;
|
43
43
|
$body-serif: "Noto Serif", "Bree Serif",$serif;
|
44
|
-
$header-color: darken($body-background-color,
|
44
|
+
$header-color: darken($body-background-color,90%);
|
45
45
|
$header-link-color: darken($body-background-color,70%);
|
46
46
|
|
47
47
|
$image-caption-serif: "Fira Sans Extra Condensed", "Neucha", $sans-serif;
|
data/_sass/_isabelline.scss
CHANGED
@@ -129,12 +129,15 @@ header {
|
|
129
129
|
font-size: 80%;
|
130
130
|
font-weight: normal;
|
131
131
|
margin: .5em 0;
|
132
|
-
float:
|
132
|
+
float: left;
|
133
133
|
|
134
134
|
// site menu shows posts in "global" category
|
135
135
|
ul {
|
136
136
|
padding: 0;
|
137
137
|
margin: 0;
|
138
|
+
li:first-child {
|
139
|
+
padding-left: 0;
|
140
|
+
}
|
138
141
|
li {
|
139
142
|
color: $header-link-color;
|
140
143
|
list-style: none;
|
@@ -190,7 +193,8 @@ main {
|
|
190
193
|
|
191
194
|
// figure is a composition of the image and caption
|
192
195
|
figure {
|
193
|
-
margin: 1em
|
196
|
+
margin: 1em auto;
|
197
|
+
width: 80%;
|
194
198
|
figcaption {
|
195
199
|
//font-size: .8em;
|
196
200
|
text-align: center;
|
@@ -205,6 +209,24 @@ main {
|
|
205
209
|
}
|
206
210
|
}
|
207
211
|
|
212
|
+
p img {
|
213
|
+
border-radius: 4px;
|
214
|
+
width: 100%;
|
215
|
+
}
|
216
|
+
|
217
|
+
p img + em {
|
218
|
+
font-family: $image-caption-serif;
|
219
|
+
color: $image-caption-color;
|
220
|
+
font-style: normal;
|
221
|
+
text-align: center;
|
222
|
+
display: block;
|
223
|
+
width: 100%;
|
224
|
+
}
|
225
|
+
|
226
|
+
figure.frame img {
|
227
|
+
border: 1px solid $header-color;
|
228
|
+
}
|
229
|
+
|
208
230
|
// for slideshows show the first figure, hide rest
|
209
231
|
div.slideshow figure {
|
210
232
|
display: none;
|
@@ -213,6 +235,23 @@ main {
|
|
213
235
|
}
|
214
236
|
}
|
215
237
|
|
238
|
+
div.gallery {
|
239
|
+
width: 100%;
|
240
|
+
float: left;
|
241
|
+
margin-bottom: 1em;
|
242
|
+
|
243
|
+
img {
|
244
|
+
// width: 45%;
|
245
|
+
|
246
|
+
height: 200px;
|
247
|
+
float: left;
|
248
|
+
}
|
249
|
+
}
|
250
|
+
|
251
|
+
div.gallery + p {
|
252
|
+
clear: both;
|
253
|
+
}
|
254
|
+
|
216
255
|
// drop caps
|
217
256
|
// TODO: this needs work
|
218
257
|
@if $drop-caps {
|
@@ -263,14 +302,14 @@ main {
|
|
263
302
|
padding-left: 0;
|
264
303
|
li {
|
265
304
|
list-style: none;
|
266
|
-
padding-left:
|
267
|
-
padding-bottom: .
|
305
|
+
padding-left: 1.2em;
|
306
|
+
padding-bottom: .3em;
|
268
307
|
margin-left: 0;
|
269
308
|
|
270
309
|
// mdash for unordered list items
|
271
310
|
&::before {
|
272
311
|
content: "\2014";
|
273
|
-
margin-left: -
|
312
|
+
margin-left: -1.2em;
|
274
313
|
margin-right: .2em;
|
275
314
|
}
|
276
315
|
|
data/assets/.DS_Store
CHANGED
Binary file
|
File without changes
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg id="b34a7ed3-b085-4444-bb69-8e8541180262" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="744.61498" height="542.26178" viewBox="0 0 744.61498 542.26178"><path d="M932.50251,629.9509a322.61072,322.61072,0,0,1-15.07,89.18c-.21.67-.43,1.33-.65,2h-56.24c.06-.6.12-1.27.18-2,3.75-43.11,25.37-305.49-.48-350.36C862.50251,372.41086,936.86249,492.97086,932.50251,629.9509Z" transform="translate(-227.69251 -178.86911)" fill="#e6e6e6"/><path d="M928.28254,719.13089c-.47.67-.96,1.34-1.46,2h-42.19c.32-.57.69-1.24,1.12-2,6.97-12.58,27.6-50.19,46.75-89.18,20.58-41.9,39.46-85.39,37.87-101.13C970.86249,532.37088,985.10248,640.59085,928.28254,719.13089Z" transform="translate(-227.69251 -178.86911)" fill="#e6e6e6"/><path d="M283.04472,675.92378a158.394,158.394,0,0,0,7.399,43.78516c.10309.32894.21112.653.31912.98195H318.3753c-.02945-.29461-.05894-.62355-.0884-.98195-1.84115-21.166-12.456-149.988.23569-172.01807C317.413,549.478,280.90408,608.67,283.04472,675.92378Z" transform="translate(-227.69251 -178.86911)" fill="#e6e6e6"/><path d="M285.11662,719.70894c.23078.32894.47135.65789.71684.98195H306.5477c-.15712-.27986-.33877-.60881-.54989-.98195-3.42211-6.17648-13.5509-24.64205-22.95309-43.78516-10.10427-20.57187-19.37389-41.92437-18.59322-49.65232C264.21092,628.01442,257.21944,681.14773,285.11662,719.70894Z" transform="translate(-227.69251 -178.86911)" fill="#e6e6e6"/><path d="M811.27948,721.05261H523.01163a5.34456,5.34456,0,0,1-5.33828-5.33828V644.20739a5.34457,5.34457,0,0,1,5.33828-5.33828H811.27948a5.34457,5.34457,0,0,1,5.33828,5.33828v71.50694A5.34456,5.34456,0,0,1,811.27948,721.05261ZM523.01163,641.00442a3.20647,3.20647,0,0,0-3.203,3.203v71.50694a3.20647,3.20647,0,0,0,3.203,3.203H811.27948a3.20647,3.20647,0,0,0,3.203-3.203V644.20739a3.20647,3.20647,0,0,0-3.203-3.203Z" transform="translate(-227.69251 -178.86911)" fill="#e6e6e6"/><circle cx="340.11008" cy="498.34802" r="21.74535" fill="#e6e6e6"/><path d="M618.024,662.72023a3.62423,3.62423,0,0,0,0,7.24845H788.88027a3.62422,3.62422,0,1,0,0-7.24845Z" transform="translate(-227.69251 -178.86911)" fill="#e6e6e6"/><path d="M618.024,684.46558a3.62422,3.62422,0,0,0,0,7.24844h73.52a3.62422,3.62422,0,1,0,0-7.24844Z" transform="translate(-227.69251 -178.86911)" fill="#e6e6e6"/><path d="M883.27948,615.05261H595.01163a5.34456,5.34456,0,0,1-5.33828-5.33828V538.20739a5.34457,5.34457,0,0,1,5.33828-5.33828H883.27948a5.34457,5.34457,0,0,1,5.33828,5.33828v71.50694A5.34456,5.34456,0,0,1,883.27948,615.05261ZM595.01163,535.00442a3.20647,3.20647,0,0,0-3.203,3.203v71.50694a3.20647,3.20647,0,0,0,3.203,3.203H883.27948a3.20647,3.20647,0,0,0,3.203-3.203V538.20739a3.20647,3.20647,0,0,0-3.203-3.203Z" transform="translate(-227.69251 -178.86911)" fill="#e6e6e6"/><circle cx="412.11008" cy="392.34802" r="21.74535" fill="#e6e6e6"/><path d="M690.024,556.72023a3.62423,3.62423,0,0,0,0,7.24845H860.88027a3.62422,3.62422,0,1,0,0-7.24845Z" transform="translate(-227.69251 -178.86911)" fill="#e6e6e6"/><path d="M690.024,578.46558a3.62422,3.62422,0,0,0,0,7.24844h73.52a3.62422,3.62422,0,1,0,0-7.24844Z" transform="translate(-227.69251 -178.86911)" fill="#e6e6e6"/><path d="M827.27948,436.05261H539.01163a5.34456,5.34456,0,0,1-5.33828-5.33828V184.20739a5.34457,5.34457,0,0,1,5.33828-5.33828H827.27948a5.34457,5.34457,0,0,1,5.33828,5.33828V430.71433A5.34456,5.34456,0,0,1,827.27948,436.05261ZM539.01163,181.00442a3.20647,3.20647,0,0,0-3.203,3.203V430.71433a3.20647,3.20647,0,0,0,3.203,3.203H827.27948a3.20647,3.20647,0,0,0,3.203-3.203V184.20739a3.20647,3.20647,0,0,0-3.203-3.203Z" transform="translate(-227.69251 -178.86911)" fill="#e6e6e6"/><circle cx="356.11008" cy="213.34802" r="21.74535" fill="#e6e6e6"/><path d="M634.024,377.72023a3.62422,3.62422,0,0,0,0,7.24845H804.88027a3.62422,3.62422,0,1,0,0-7.24845Z" transform="translate(-227.69251 -178.86911)" fill="#e6e6e6"/><path d="M634.024,399.46558a3.62422,3.62422,0,0,0,0,7.24844h73.52a3.62422,3.62422,0,1,0,0-7.24844Z" transform="translate(-227.69251 -178.86911)" fill="#e6e6e6"/><path d="M355.039,461.66244l3.1777,25.30059a13.30065,13.30065,0,0,0,18.60319,10.49486l0,0a13.30065,13.30065,0,0,0,6.2482-18.56187l-13.36334-24.29862-4.3696-104.46964-28.259,6.59024Z" transform="translate(-227.69251 -178.86911)" fill="#ffb8b8"/><polygon points="233.19 517.322 211.19 519.322 198.19 338.322 197.69 384.822 149.69 512.822 130.69 497.822 162.19 370.322 147.19 299.322 245.19 299.322 233.19 517.322" fill="#2f2e41"/><path d="M482.69846,720.6521l-40.89749-.99874a11.082,11.082,0,0,1-11.75527-12.79412l1.676-10.53039a9.01161,9.01161,0,0,1,8.25674-7.57218h0c6.98,7.22421,14.2,6.15724,21.61179-1.54559l16.85941,17.103,2.51765-.33842a8.38681,8.38681,0,0,1,9.17284,5.97815h0A8.38682,8.38682,0,0,1,482.69846,720.6521Z" transform="translate(-227.69251 -178.86911)" fill="#2f2e41"/><path d="M389.54319,719.29961l-41.0141-15.4744a11.84639,11.84639,0,0,1-5.64946-17.693l6.35939-9.45957a9.63322,9.63322,0,0,1,11.41191-3.6322h0c3.522,10.14429,11.00406,12.35517,21.65525,8.21643l10.4609,20.28718,2.59391.80357a8.96533,8.96533,0,0,1,6.20894,9.92156v0A8.96534,8.96534,0,0,1,389.54319,719.29961Z" transform="translate(-227.69251 -178.86911)" fill="#2f2e41"/><circle cx="198.19" cy="47.32178" r="26" fill="#ffb8b8"/><path d="M428.88251,274.19089l-45-1c12.36493-13.68021,19.87616-27.95128,21-43h24Z" transform="translate(-227.69251 -178.86911)" fill="#ffb8b8"/><path d="M475.88251,492.19089c-42.47778-10.89874-82.33441-18.24478-107-5,4.31966-45.41129-.67687-103.379-15.49915-163.96512-4.81437-19.67875-1.549-37.411,15.99915-47.53488l23.5-13.5,36,1,18.78311,10.39155a47.16015,47.16015,0,0,1,25.25368,50.97711C462.82727,377.66693,468.28069,434.98523,475.88251,492.19089Z" transform="translate(-227.69251 -178.86911)" fill="#3f3d56"/><path d="M484.88251,460.19089l3.52391,25.25469a13.30065,13.30065,0,0,1-15.22634,14.9793h0A13.30067,13.30067,0,0,1,462.31151,484.132l6.571-26.94111-23-102,29-1Z" transform="translate(-227.69251 -178.86911)" fill="#ffb8b8"/><path d="M378.88251,365.19089l-47-3c3.67218-46.2356,14.122-71.51129,30-80l17,20Z" transform="translate(-227.69251 -178.86911)" fill="#3f3d56"/><path d="M443.88251,217.19089c-9.16009-2.93048-13.91406,15.85229-27.5,27.5-3.08831,2.64775-10.794-7.67615-13.5-4.5l-4.37524-13.31663c-5.191-15.79959,4.1631-33.02343,20.42725-36.495q.64759-.13823,1.30658-.24816h0a29.15735,29.15735,0,0,1,32.87228,20.91065,3.85886,3.85886,0,0,1-2.9263,4.75332Z" transform="translate(-227.69251 -178.86911)" fill="#2f2e41"/><polygon points="257.19 177.322 213.19 187.322 211.19 115.322 236.19 116.322 257.19 177.322" fill="#3f3d56"/><rect y="540.26178" width="738.22003" height="2" fill="#3f3d56"/><path d="M895.76841,350.074H607.50056a5.34457,5.34457,0,0,1-5.33829-5.33828V218.22876a5.34457,5.34457,0,0,1,5.33829-5.33829H895.76841a5.34457,5.34457,0,0,1,5.33828,5.33829V344.7357A5.34457,5.34457,0,0,1,895.76841,350.074Z" transform="translate(-227.69251 -178.86911)" fill="#f50057"/><path d="M666.20634,256.98533a3.62423,3.62423,0,1,0,0,7.24845H837.06263a3.62422,3.62422,0,0,0,0-7.24845Z" transform="translate(-227.69251 -178.86911)" fill="#fff"/><path d="M666.20634,277.98533a3.62423,3.62423,0,1,0,0,7.24845H837.06263a3.62422,3.62422,0,0,0,0-7.24845Z" transform="translate(-227.69251 -178.86911)" fill="#fff"/><path d="M666.20634,298.73068a3.62422,3.62422,0,1,0,0,7.24844h73.52a3.62422,3.62422,0,1,0,0-7.24844Z" transform="translate(-227.69251 -178.86911)" fill="#fff"/></svg>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-isabelline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rouslan Zenetl
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: 2.0
|
39
|
+
version: 2.1.0
|
40
40
|
type: :development
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 2.0
|
46
|
+
version: 2.1.0
|
47
47
|
description:
|
48
48
|
email:
|
49
49
|
- isabelline@rzen.dev
|
@@ -58,6 +58,7 @@ files:
|
|
58
58
|
- _includes/byline.html
|
59
59
|
- _includes/disqus.html
|
60
60
|
- _includes/footer.html
|
61
|
+
- _includes/gallery.html
|
61
62
|
- _includes/google_analytics.html
|
62
63
|
- _includes/head-meta.html
|
63
64
|
- _includes/head.html
|
@@ -66,6 +67,7 @@ files:
|
|
66
67
|
- _includes/post_index.html
|
67
68
|
- _layouts/.DS_Store
|
68
69
|
- _layouts/base.html
|
70
|
+
- _layouts/gallery.html
|
69
71
|
- _layouts/page.html
|
70
72
|
- _layouts/post.html
|
71
73
|
- _layouts/tags.html
|
@@ -76,7 +78,13 @@ files:
|
|
76
78
|
- _sass/_snackbar.scss
|
77
79
|
- _sass/_syntax.scss
|
78
80
|
- assets/.DS_Store
|
79
|
-
- assets/blog/
|
81
|
+
- assets/blog/example/Quarter_Horse_Buckskin.jpg
|
82
|
+
- assets/blog/example/gallery/Lanius_isabellinus1.jpg
|
83
|
+
- assets/blog/example/gallery/dusan-smetana-ah7KHxYg6Ow-unsplash.jpg
|
84
|
+
- assets/blog/example/gallery/jay-ruzesky-h13Y8vyIXNU-unsplash.jpg
|
85
|
+
- assets/blog/example/gallery/maurits-bausenhart-OkYjLpB2gzA-unsplash.jpg
|
86
|
+
- assets/blog/example/gallery/sneaky-elbow-h00rqvO5A-M-unsplash.jpg
|
87
|
+
- assets/blog/getting-started/undraw_browsing_online_sr8c.svg
|
80
88
|
- assets/css/style.scss
|
81
89
|
- assets/favicon/README.md
|
82
90
|
- assets/favicon/android-chrome-192x192.png
|
@@ -128,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
128
136
|
- !ruby/object:Gem::Version
|
129
137
|
version: '0'
|
130
138
|
requirements: []
|
131
|
-
rubygems_version: 3.
|
139
|
+
rubygems_version: 3.1.3
|
132
140
|
signing_key:
|
133
141
|
specification_version: 4
|
134
142
|
summary: Simple clean mobile-friendly theme for long form note taking. Works for blogging
|