jekyll-theme-cayman-blog 0.0.8 → 0.0.9

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
  SHA1:
3
- metadata.gz: 0fe71156ace05f0aeb55e1b6f7d7d5538a718e16
4
- data.tar.gz: 3d757da1d4e513f677a8276c8c043aa5208e8423
3
+ metadata.gz: c869350529e3355c51f872051638f6e4bb10509c
4
+ data.tar.gz: 3a5bcaf6caae910d5ca6c06920ce5c97f3672fe3
5
5
  SHA512:
6
- metadata.gz: '08df00c96301ff22337e8428791cf357ae31b56afe85531fe968a3d9ebef45a620befb8824a9365a8c7b6e7a1fa2ef23524e808d68fa451a3e298b6567983204'
7
- data.tar.gz: 994ff89a290b6ca6de404818f0f63d32dc94a815c2164995921b28aa45d9673108d5fee08b3dd8d103690565237d12c8e1b3a7e77d2f9406e7f8621563e6e286
6
+ metadata.gz: f0e9d8fb292aa2316648ce1fe4185cb21bdf1ceed71348a4e13ade269bcbfd495461caf089f68b42570a780ee063242f46f7f2c9fe84117861f8eb34bc439b4e
7
+ data.tar.gz: c2d69ccca5b317ff6bdbbec2fe03ded179fabd653a9ba3bbbb18b49730c8ee0f4a897486fb20091b71a2f8263e783d79afa0042478bb9287c6f4b63428b5a629
@@ -1,14 +1,14 @@
1
1
  <header class="site-header" role="banner">
2
2
 
3
3
  <div class="wrapper">
4
- {% assign default_paths = site.pages | map: "path" %}
5
- {% assign page_paths = site.header_pages | default: default_paths %}
4
+ {% assign default_refs = site.pages | sort:"order" | map: "ref" %}
5
+ {% assign page_refs = site.header_page_refs | default: default_refs %}
6
6
 
7
7
  {% if page.layout != 'home' %}
8
- <a class="site-title" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
8
+ <a class="site-title" href="{{ "/" | absolute_url }}">{{ site.title | escape }}</a>
9
9
  {% endif %}
10
10
 
11
- {% if page_paths %}
11
+ {% if page_refs %}
12
12
  <nav class="site-nav">
13
13
  <input type="checkbox" id="nav-trigger" class="nav-trigger" />
14
14
  <label for="nav-trigger">
@@ -22,12 +22,12 @@
22
22
  </label>
23
23
 
24
24
  <div class="trigger">
25
- {% for path in page_paths %}
26
- {% assign my_page = site.pages | where: "path", path | first %}
25
+ {% for ref in page_refs %}
26
+ {% assign my_page = site.pages | where: "ref", ref | first %}
27
27
  {% if my_page.title %}
28
28
  {% if my_page.title contains "404" %}
29
29
  {% else %}
30
- <a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
30
+ <a class="page-link" href="{{ my_page.url | absolute_url }}">{{ my_page.title | escape }}</a>
31
31
  {% endif %}
32
32
  {% endif %}
33
33
  {% endfor %}
@@ -43,12 +43,6 @@
43
43
  <meta name="keywords" itemprop="category" content="{{ category | escape }}" />
44
44
  {%endif %}
45
45
 
46
- <meta itemprop="name" content="{{ page_title }}" />
47
- <meta itemprop="description" content="{{ page_description }}" />
48
- {%if page_image %}
49
- <meta itemprop="image" content="{{ page_image }}" />
50
- {%endif %}
51
-
52
46
  <!-- Twitter Card data -->
53
47
  <meta name="twitter:card" content="summary_large_image" />
54
48
 
@@ -1,136 +1,162 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
3
 
4
- <head>
5
-
4
+ <head>
5
+
6
6
  {% if site.google_analytics %}
7
- <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
8
- <script>
7
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
8
+ <script>
9
9
  window.dataLayer = window.dataLayer || [];
10
10
  function gtag(){dataLayer.push(arguments);}
11
11
  gtag('js', new Date());
12
12
  gtag('config', '{{ site.google_analytics }}');
13
- </script>
13
+ </script>
14
14
  {% endif %}
15
-
15
+
16
16
  <!-- Non social metatags -->
17
17
  <meta charset="utf-8">
18
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
18
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
19
19
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
20
20
  <meta name="theme-color" content="#157878">
21
21
  <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
22
-
22
+
23
23
  {% if page.title %}
24
- {% assign page-title = page.title | escape %}
24
+ {% assign page-title = page.title | escape %}
25
25
  {% else %}
26
- {% assign page-title = site.title | escape %}
26
+ {% assign page-title = site.title | escape %}
27
27
  {% endif %}
28
-
28
+
29
29
  <title>{{ page-title }}</title>
30
-
30
+
31
31
  {% if site.gems contains "jekyll-seo-tag" %}
32
- <!-- jekyll-seo-tag -->
32
+ <!-- jekyll-seo-tag -->
33
33
  {% else %}
34
- {% include social-metatags.html %}
34
+ {% include social-metatags.html %}
35
35
  {% endif %}
36
-
36
+
37
37
  <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
38
-
38
+
39
39
  {% if site.gems contains "jekyll-feed" %}
40
- <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
40
+ <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | absolute_url }}">
41
41
  {% endif %}
42
-
42
+
43
43
  <link rel="shortcut icon" href="{{ "/favicon.ico" | absolute_url }}">
44
-
44
+
45
45
  <meta name="robots" content="noarchive">
46
-
46
+
47
47
  <!-- <link rel="alternate" media="only screen and (max-width: 640px)" href="">
48
- <link rel="alternate" media="handheld" href=""> -->
49
-
50
-
51
- <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | absolute_url }}">
52
- </head>
53
- <body>
54
-
55
- {% include site-header.html %}
56
-
57
- {% if page.layout == 'home' %}
58
- {% assign page-tagline = site.description | default: site.github.project_tagline | escape %}
59
- {% endif %}
60
- {% if page.layout == 'page' %}
61
- {% assign page-tagline = page.tagline | escape %}
62
- {% endif %}
63
- {% if page.layout == 'post' %}
64
- {% assign page-tagline = page.tagline | escape %}
65
- {% endif %}
66
-
67
- <section class="page-header">
68
- <h1 class="project-name">{{ page-title }}</h1>
69
- <h2 class="project-tagline">{{ page-tagline }}</h2>
70
- {% if page.layout == 'home' and site.github.is_project_page %}
71
- <a href="{{ site.github.repository_url }}" class="btn">View on GitHub</a>
72
- {% if site.show_downloads %}
73
- <a href="{{ site.github.zip_url }}" class="btn">Download .zip</a>
74
- <a href="{{ site.github.tar_url }}" class="btn">Download .tar.gz</a>
48
+ <link rel="alternate" media="handheld" href=""> -->
49
+
50
+
51
+ <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | absolute_url }}">
52
+ </head>
53
+ <body>
54
+
55
+ {% include site-header.html %}
56
+
57
+ {% if page.layout == 'home' %}
58
+ {% assign page-tagline = site.description | default: site.github.project_tagline | escape %}
75
59
  {% endif %}
76
- {% endif %}
77
- <!-- Post tagline -->
78
- {% if page.layout == 'post' %}
79
- <h2 class="project-date">
80
- <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
81
- {% assign date_format = site.cayman-blog.date_format | default: "%b %-d, %Y" %}
82
- {{ page.date | date: date_format }}
83
- </time>
84
- {% assign page_author = page.author | default: site.author | default: nil | escape %}
85
- {% if page_author %}
86
- • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page_author }}</span></span>
60
+ {% if page.layout == 'page' %}
61
+ {% assign page-tagline = page.tagline | escape %}
87
62
  {% endif %}
88
- </h2>
89
- {% endif %}
90
- <!-- End: Post tagline -->
91
- </section>
92
-
93
- <section class="main-content">
94
-
95
- {{ content }}
96
-
97
- <footer class="site-footer">
98
- <!-- SVG icons from https://iconmonstr.com -->
99
-
100
- <!-- Github icon -->
101
- <span class="my-span-icon">
102
- <a href="{{ site.github.owner_url }}" aria-label="{{ site.github.owner_name }}'s GitHub" title="{{ site.github.owner_name }}'s GitHub">
103
- <svg class="my-svg-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
104
- </a>
105
- </span>
106
-
107
- <!-- Twitter icon -->
108
- <span class="my-span-icon">
109
- <a href="https://twitter.com/{{ site.twitter.username }}" aria-label="{{ site.github.owner_name }}'s Twitter" title="{{ site.github.owner_name }}'s Twitter">
110
- <svg class="my-svg-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm6.066 9.645c.183 4.04-2.83 8.544-8.164 8.544-1.622 0-3.131-.476-4.402-1.291 1.524.18 3.045-.244 4.252-1.189-1.256-.023-2.317-.854-2.684-1.995.451.086.895.061 1.298-.049-1.381-.278-2.335-1.522-2.304-2.853.388.215.83.344 1.301.359-1.279-.855-1.641-2.544-.889-3.835 1.416 1.738 3.533 2.881 5.92 3.001-.419-1.796.944-3.527 2.799-3.527.825 0 1.572.349 2.096.907.654-.128 1.27-.368 1.824-.697-.215.671-.67 1.233-1.263 1.589.581-.07 1.135-.224 1.649-.453-.384.578-.87 1.084-1.433 1.489z"/></svg>
111
- </a>
112
- </span>
113
-
114
- <!-- RSS icon -->
115
- {% if site.gems contains "jekyll-feed" %}
116
- <span class="my-span-icon">
117
- <a href="{{ "/feed.xml" | relative_url }}" aria-label="RSS feed" title="{{ site.github.owner_name }}'s RSS feed">
118
- <svg class="my-svg-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm-3.374 17c-.897 0-1.626-.727-1.626-1.624s.729-1.624 1.626-1.624 1.626.727 1.626 1.624-.729 1.624-1.626 1.624zm3.885 0c-.03-3.022-2.485-5.474-5.511-5.504v-2.406c4.361.03 7.889 3.555 7.92 7.91h-2.409zm4.081 0c-.016-5.297-4.303-9.571-9.592-9.594v-2.406c6.623.023 11.985 5.384 12 12h-2.408z"/></svg>
119
- </a>
120
- </span>
63
+ {% if page.layout == 'post' %}
64
+ {% assign page-tagline = page.tagline | escape %}
121
65
  {% endif %}
122
-
123
- <!-- Contact icon -->
124
- {% assign contact_page = site.pages | where: "path", "contact.md" | first %}
125
- {% if contact_page.title %}
126
- <span class="my-span-icon">
127
- <a href="{{ contact_page.url | relative_url }}" aria-label="Contact" title="Contact {{ site.github.owner_name }}">
128
- <svg class="my-svg-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 .02c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm6.99 6.98l-6.99 5.666-6.991-5.666h13.981zm.01 10h-14v-8.505l7 5.673 7-5.672v8.504z"/></svg>
129
- </a>
130
- </span>
131
- {% endif %}
132
-
133
- </footer>
134
- </section>
135
- </body>
136
- </html>
66
+
67
+ <section class="page-header">
68
+ <h1 class="project-name">{{ page-title }}</h1>
69
+ <h2 class="project-tagline">{{ page-tagline }}</h2>
70
+ {% if page.layout == 'home' and site.github.is_project_page %}
71
+ <a href="{{ site.github.repository_url }}" class="btn">View on GitHub</a>
72
+ {% if site.show_downloads %}
73
+ <a href="{{ site.github.zip_url }}" class="btn">Download .zip</a>
74
+ <a href="{{ site.github.tar_url }}" class="btn">Download .tar.gz</a>
75
+ {% endif %}
76
+ {% endif %}
77
+ <!-- Post tagline -->
78
+ {% if page.layout == 'post' %}
79
+ <h2 class="project-date">
80
+ <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
81
+ {% assign date_format = site.cayman-blog.date_format | default: "%b %-d, %Y" %}
82
+ {{ page.date | date: date_format }}
83
+ </time>
84
+ {% assign page_author = page.author | default: site.author | default: nil | escape %}
85
+ {% if page_author %}
86
+ • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page_author }}</span></span>
87
+ {% endif %}
88
+ </h2>
89
+ {% endif %}
90
+ <!-- End: Post tagline -->
91
+ </section>
92
+
93
+ <section class="main-content">
94
+
95
+ {{ content }}
96
+
97
+ <footer class="site-footer">
98
+ <!-- SVG icons from https://iconmonstr.com -->
99
+
100
+ <!-- Github icon -->
101
+ <span class="my-span-icon">
102
+ <a href="{{ site.github.owner_url }}" aria-label="{{ site.github.owner_name }}'s GitHub" title="{{ site.github.owner_name }}'s GitHub">
103
+ <svg class="my-svg-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
104
+ </a>
105
+ </span>
106
+
107
+ <!-- Twitter icon -->
108
+ <span class="my-span-icon">
109
+ <a href="https://twitter.com/{{ site.twitter.username }}" aria-label="{{ site.github.owner_name }}'s Twitter" title="{{ site.github.owner_name }}'s Twitter">
110
+ <svg class="my-svg-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm6.066 9.645c.183 4.04-2.83 8.544-8.164 8.544-1.622 0-3.131-.476-4.402-1.291 1.524.18 3.045-.244 4.252-1.189-1.256-.023-2.317-.854-2.684-1.995.451.086.895.061 1.298-.049-1.381-.278-2.335-1.522-2.304-2.853.388.215.83.344 1.301.359-1.279-.855-1.641-2.544-.889-3.835 1.416 1.738 3.533 2.881 5.92 3.001-.419-1.796.944-3.527 2.799-3.527.825 0 1.572.349 2.096.907.654-.128 1.27-.368 1.824-.697-.215.671-.67 1.233-1.263 1.589.581-.07 1.135-.224 1.649-.453-.384.578-.87 1.084-1.433 1.489z"/></svg>
111
+ </a>
112
+ </span>
113
+
114
+ <!-- RSS icon -->
115
+ {% if site.gems contains "jekyll-feed" %}
116
+ <span class="my-span-icon">
117
+ <a href="{{ "/feed.xml" | absolute_url }}" aria-label="RSS feed" title="{{ site.github.owner_name }}'s RSS feed">
118
+ <svg class="my-svg-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm-3.374 17c-.897 0-1.626-.727-1.626-1.624s.729-1.624 1.626-1.624 1.626.727 1.626 1.624-.729 1.624-1.626 1.624zm3.885 0c-.03-3.022-2.485-5.474-5.511-5.504v-2.406c4.361.03 7.889 3.555 7.92 7.91h-2.409zm4.081 0c-.016-5.297-4.303-9.571-9.592-9.594v-2.406c6.623.023 11.985 5.384 12 12h-2.408z"/></svg>
119
+ </a>
120
+ </span>
121
+ {% endif %}
122
+
123
+ <!-- Contact icon -->
124
+ {% assign contact_page = site.pages | where: "path", "contact.md" | first %}
125
+ {% if contact_page.title %}
126
+ <span class="my-span-icon">
127
+ <a href="{{ contact_page.url | absolute_url }}" aria-label="Contact" title="Contact {{ site.github.owner_name }}">
128
+ <svg class="my-svg-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 .02c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm6.99 6.98l-6.99 5.666-6.991-5.666h13.981zm.01 10h-14v-8.505l7 5.673 7-5.672v8.504z"/></svg>
129
+ </a>
130
+ </span>
131
+ {% endif %}
132
+
133
+ </footer>
134
+ </section>
135
+
136
+ <script>
137
+ var menu = document.querySelector("nav.site-nav");
138
+ var checkbox = document.getElementById("nav-trigger");
139
+
140
+ // close menu if click outside menu
141
+ document.addEventListener("click", function(e) {
142
+ if (menu != e.target &&
143
+ !isDescendant(menu, e.target)) {
144
+ checkbox.checked = false;
145
+ }
146
+ }, false);
147
+
148
+ function isDescendant(parent, child) {
149
+ var node = child.parentNode;
150
+ while (node != null) {
151
+ if (node == parent) {
152
+ return true;
153
+ }
154
+ node = node.parentNode;
155
+ }
156
+ return false;
157
+ }
158
+ </script>
159
+
160
+ </body>
161
+ </html>
162
+
@@ -18,10 +18,10 @@ layout: default
18
18
  <span class="post-meta">{{ post.date | date: date_format }}</span>
19
19
 
20
20
  <h2>
21
- <a class="post-link" href="{{ post.url | relative_url }}" title="{{ post.title }}">{{ post.title | escape }}</a>
21
+ <a class="post-link" href="{{ post.url | absolute_url }}" title="{{ post.title }}">{{ post.title | escape }}</a>
22
22
  </h2>
23
23
 
24
- <span>{{ post.excerpt | markdownify | truncatewords: 30 }}</span>
24
+ {{ post.excerpt | markdownify | truncatewords: 30 }}
25
25
 
26
26
  </li>
27
27
  {% endfor %}
@@ -56,6 +56,7 @@
56
56
  border: 1px solid $grey-color-light;
57
57
  border-radius: 5px;
58
58
  text-align: right;
59
+ z-index: 9999;
59
60
 
60
61
  label[for="nav-trigger"] {
61
62
  display: block;
@@ -99,6 +100,7 @@
99
100
 
100
101
  &:last-child {
101
102
  margin-bottom: 10px;
103
+ margin-right: 20px;
102
104
  }
103
105
  margin-right: 10px;
104
106
  margin-left: 10px;
@@ -122,6 +124,10 @@
122
124
  margin-top: 0rem;
123
125
  margin-bottom: 0.4rem;
124
126
  }
127
+
128
+ > li > p {
129
+ margin-top: 0rem;
130
+ }
125
131
  }
126
132
 
127
133
  @include media-query($on-palm) {
@@ -201,6 +201,12 @@ a {
201
201
  @include small {
202
202
  padding: 2rem 1rem;
203
203
  font-size: 1rem;
204
+
205
+ ul,
206
+ ol {
207
+ margin-top: 0;
208
+ padding-left: 0;
209
+ }
204
210
  }
205
211
 
206
212
  kbd {
data/about.md CHANGED
@@ -3,6 +3,8 @@ layout: page
3
3
  title: About
4
4
  tagline: A few more words about this theme
5
5
  permalink: /about.html
6
+ ref: about
7
+ order: 0
6
8
  ---
7
9
 
8
10
  This is the _Cayman Blog_ Jekyll theme. You can find out more info about customizing this theme, as well as basic usage documentation, and source code at: [cayman-blog](https://github.com/lorepirri/cayman-blog)
data/contact.md CHANGED
@@ -2,6 +2,8 @@
2
2
  layout: page
3
3
  title: Contact
4
4
  tagline: Create a contact form and you are good to go
5
+ ref: contact
6
+ order: 1
5
7
  ---
6
8
 
7
9
  Jekyll is a great tool to create static sites but with static site, there's no backend to send your data to: that is why you need a third part service.
data/now.md ADDED
@@ -0,0 +1,12 @@
1
+ ---
2
+ layout: page
3
+ title: Now
4
+ tagline: What I'm doing now
5
+ permalink: /now.html
6
+ ref: now
7
+ order: 2
8
+ ---
9
+
10
+ This is a [now page](https://nownownow.com/about), and it was inspired by [the /now movement](https://sivers.org/nowff). If you have your own site, [you should make one](https://nownownow.com/about), too.
11
+
12
+ [Go to the Home Page]({{ '/' | absolute_url }})
metadata CHANGED
@@ -1,20 +1,23 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-cayman-blog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lorenzo Pirritano
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-14 00:00:00.000000000 Z
11
+ date: 2019-07-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.8'
20
+ - - ">="
18
21
  - !ruby/object:Gem::Version
19
22
  version: 3.8.6
20
23
  type: :runtime
@@ -22,6 +25,9 @@ dependencies:
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
27
  - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '3.8'
30
+ - - ">="
25
31
  - !ruby/object:Gem::Version
26
32
  version: 3.8.6
27
33
  - !ruby/object:Gem::Dependency
@@ -107,6 +113,7 @@ files:
107
113
  - assets/css/style.scss
108
114
  - contact.md
109
115
  - index.md
116
+ - now.md
110
117
  homepage: https://github.com/lorepirri/cayman-blog
111
118
  licenses:
112
119
  - CC0-1.0