minima 2.1.1 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/LICENSE.txt +1 -1
- data/README.md +44 -3
- data/_includes/footer.html +5 -16
- data/_includes/google-analytics.html +2 -1
- data/_includes/head.html +2 -7
- data/_includes/header.html +2 -2
- data/_includes/social.html +13 -0
- data/_layouts/home.html +18 -14
- data/_layouts/post.html +7 -5
- data/_sass/minima.scss +2 -0
- data/_sass/minima/_base.scss +37 -10
- data/_sass/minima/_layout.scss +5 -1
- data/assets/minima-social-icons.svg +27 -0
- metadata +22 -10
- data/_includes/icon-github.html +0 -1
- data/_includes/icon-github.svg +0 -1
- data/_includes/icon-twitter.html +0 -1
- data/_includes/icon-twitter.svg +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: a4c54b23c93122bf20de3409660a225650cff308fb557521716fef05ae4ff358
|
4
|
+
data.tar.gz: 2a08fb8081c45bebfff472f279135081359a5cd898ad6728fbbc82bcc5b55d49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0bac73f8b4698acac44f5ff00bbad5442b91e7c7bec964ed2de86f6eb3321e55130d85f157ddbfff3f67ebb75ac12a174016ed5b33451abdb02b98365ad551b2
|
7
|
+
data.tar.gz: e3cf1c765885ee6e4ac80dd411c2a9bfc5b3dfb13fc56cd6f8a69b970baef1e098764b6dd058c12fdc557c9057c70d05a9f30fbe549f1d865ec6bb011c7f42bf
|
data/LICENSE.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c) 2016 Parker Moore
|
3
|
+
Copyright (c) 2016-present Parker Moore and the minima contributors
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
@@ -34,7 +34,7 @@ Minima has been scaffolded by the `jekyll new-theme` command and therefore has a
|
|
34
34
|
Refers to files within the `_layouts` directory, that define the markup for your theme.
|
35
35
|
|
36
36
|
- `default.html` — The base layout that lays the foundation for subsequent layouts. The derived layouts inject their contents into this file at the line that says ` {{ content }} ` and are linked to this file via [FrontMatter](https://jekyllrb.com/docs/frontmatter/) declaration `layout: default`.
|
37
|
-
- `home.html` — The layout for your landing-page / home-page / index-page.
|
37
|
+
- `home.html` — The layout for your landing-page / home-page / index-page. [[More Info.](#home-layout)]
|
38
38
|
- `page.html` — The layout for your documents that contain FrontMatter, but are not posts.
|
39
39
|
- `post.html` — The layout for your posts.
|
40
40
|
|
@@ -46,8 +46,7 @@ Refers to snippets of code within the `_includes` directory that can be inserted
|
|
46
46
|
- `footer.html` — Defines the site's footer section.
|
47
47
|
- `google-analytics.html` — Inserts Google Analytics module (active only in production environment).
|
48
48
|
- `head.html` — Code-block that defines the `<head></head>` in *default* layout.
|
49
|
-
- `header.html` — Defines the site's main header section.
|
50
|
-
- `icon-* files` — Inserts github and twitter ids with respective icons.
|
49
|
+
- `header.html` — Defines the site's main header section. By default, pages with a defined `title` attribute will have links displayed here.
|
51
50
|
|
52
51
|
### Sass
|
53
52
|
|
@@ -65,9 +64,31 @@ Contains the `main.scss` that imports sass files from within the `_sass` directo
|
|
65
64
|
|
66
65
|
This directory can include sub-directories to manage assets of similar type, and will be copied over as is, to the final transformed site directory.
|
67
66
|
|
67
|
+
### Plugins
|
68
|
+
|
69
|
+
Minima comes with [`jekyll-seo-tag`](https://github.com/jekyll/jekyll-seo-tag) plugin preinstalled to make sure your website gets the most useful meta tags. See [usage](https://github.com/jekyll/jekyll-seo-tag#usage) to know how to set it up.
|
68
70
|
|
69
71
|
## Usage
|
70
72
|
|
73
|
+
### Home Layout
|
74
|
+
|
75
|
+
`home.html` is a flexible HTML layout for the site's landing-page / home-page / index-page. <br/>
|
76
|
+
|
77
|
+
#### Main Heading and Content-injection
|
78
|
+
|
79
|
+
From Minima v2.2 onwards, the *home* layout will inject all content from your `index.md` / `index.html` **before** the **`Posts`** heading. This will allow you to include non-posts related content to be published on the landing page under a dedicated heading. *We recommended that you title this section with a Heading2 (`##`)*.
|
80
|
+
|
81
|
+
Usually the `site.title` itself would suffice as the implicit 'main-title' for a landing-page. But, if your landing-page would like a heading to be explicitly displayed, then simply define a `title` variable in the document's front matter and it will be rendered with an `<h1>` tag.
|
82
|
+
|
83
|
+
#### Post Listing
|
84
|
+
|
85
|
+
This section is optional from Minima v2.2 onwards.<br/>
|
86
|
+
It will be automatically included only when your site contains one or more valid posts or drafts (if the site is configured to `show_drafts`).
|
87
|
+
|
88
|
+
The title for this section is `Posts` by default and rendered with an `<h2>` tag. You can customize this heading by defining a `list_title` variable in the document's front matter.
|
89
|
+
|
90
|
+
--
|
91
|
+
|
71
92
|
### Customization
|
72
93
|
|
73
94
|
To override the default structure and style of minima, simply create the concerned directory at the root of your site, copy the file you wish to customize to that directory, and then edit the file.
|
@@ -122,6 +143,26 @@ If you don't want to display comments for a particular post you can disable them
|
|
122
143
|
|
123
144
|
--
|
124
145
|
|
146
|
+
### Social networks
|
147
|
+
|
148
|
+
You can add links to the accounts you have on other sites, with respective icon, by adding one or more of the following options in your config:
|
149
|
+
|
150
|
+
```yaml
|
151
|
+
twitter_username: jekyllrb
|
152
|
+
github_username: jekyll
|
153
|
+
dribbble_username: jekyll
|
154
|
+
facebook_username: jekyll
|
155
|
+
flickr_username: jekyll
|
156
|
+
instagram_username: jekyll
|
157
|
+
linkedin_username: jekyll
|
158
|
+
pinterest_username: jekyll
|
159
|
+
youtube_username: jekyll
|
160
|
+
googleplus_username: +jekyll
|
161
|
+
rss: rss
|
162
|
+
```
|
163
|
+
|
164
|
+
--
|
165
|
+
|
125
166
|
### Enabling Google Analytics
|
126
167
|
|
127
168
|
To enable Google Anaytics, add the following lines to your Jekyll site:
|
data/_includes/footer.html
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
<footer class="site-footer">
|
1
|
+
<footer class="site-footer h-card">
|
2
|
+
<data class="u-url" href="{{ "/" | relative_url }}"></data>
|
2
3
|
|
3
4
|
<div class="wrapper">
|
4
5
|
|
@@ -7,7 +8,7 @@
|
|
7
8
|
<div class="footer-col-wrapper">
|
8
9
|
<div class="footer-col footer-col-1">
|
9
10
|
<ul class="contact-list">
|
10
|
-
<li>
|
11
|
+
<li class="p-name">
|
11
12
|
{% if site.author %}
|
12
13
|
{{ site.author | escape }}
|
13
14
|
{% else %}
|
@@ -15,25 +16,13 @@
|
|
15
16
|
{% endif %}
|
16
17
|
</li>
|
17
18
|
{% if site.email %}
|
18
|
-
<li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
|
19
|
+
<li><a class="u-email" href="mailto:{{ site.email }}">{{ site.email }}</a></li>
|
19
20
|
{% endif %}
|
20
21
|
</ul>
|
21
22
|
</div>
|
22
23
|
|
23
24
|
<div class="footer-col footer-col-2">
|
24
|
-
|
25
|
-
{% if site.github_username %}
|
26
|
-
<li>
|
27
|
-
{% include icon-github.html username=site.github_username %}
|
28
|
-
</li>
|
29
|
-
{% endif %}
|
30
|
-
|
31
|
-
{% if site.twitter_username %}
|
32
|
-
<li>
|
33
|
-
{% include icon-twitter.html username=site.twitter_username %}
|
34
|
-
</li>
|
35
|
-
{% endif %}
|
36
|
-
</ul>
|
25
|
+
{% include social.html %}
|
37
26
|
</div>
|
38
27
|
|
39
28
|
<div class="footer-col footer-col-3">
|
@@ -1,4 +1,5 @@
|
|
1
1
|
<script>
|
2
|
+
if(!(window.doNotTrack === "1" || navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1")) {
|
2
3
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
3
4
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
4
5
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
@@ -6,6 +7,6 @@
|
|
6
7
|
|
7
8
|
ga('create', '{{ site.google_analytics }}', 'auto');
|
8
9
|
ga('send', 'pageview');
|
9
|
-
|
10
|
+
}
|
10
11
|
</script>
|
11
12
|
|
data/_includes/head.html
CHANGED
@@ -2,15 +2,10 @@
|
|
2
2
|
<meta charset="utf-8">
|
3
3
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
5
|
-
|
6
|
-
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
7
|
-
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
|
8
|
-
|
5
|
+
{% seo %}
|
9
6
|
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
|
10
|
-
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
|
11
7
|
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
|
12
|
-
|
13
8
|
{% if jekyll.environment == 'production' and site.google_analytics %}
|
14
|
-
|
9
|
+
{% include google-analytics.html %}
|
15
10
|
{% endif %}
|
16
11
|
</head>
|
data/_includes/header.html
CHANGED
@@ -3,8 +3,8 @@
|
|
3
3
|
<div class="wrapper">
|
4
4
|
{% assign default_paths = site.pages | map: "path" %}
|
5
5
|
{% assign page_paths = site.header_pages | default: default_paths %}
|
6
|
-
<a class="site-title" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
|
7
|
-
|
6
|
+
<a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
|
7
|
+
|
8
8
|
{% if page_paths %}
|
9
9
|
<nav class="site-nav">
|
10
10
|
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<ul class="social-media-list">
|
2
|
+
{% if site.social_sites.dribbble %}<li><a href="https://dribbble.com/{{ site.social_sites.dribbble | cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#dribbble"></use></svg> <span class="username">{{ site.social_sites.dribbble | escape }}</span></a></li>{% endif %}
|
3
|
+
{% if site.social_sites.facebook %}<li><a href="https://www.facebook.com/{{ site.social_sites.facebook | cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#facebook"></use></svg> <span class="username">{{ site.social_sites.facebook | escape }}</span></a></li>{% endif %}
|
4
|
+
{% if site.social_sites.flickr %}<li><a href="https://www.flickr.com/photos/{{ site.social_sites.flickr | cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#flickr"></use></svg> <span class="username">{{ site.social_sites.flickr | escape }}</span></a></li>{% endif %}
|
5
|
+
{% if site.social_sites.github %}<li><a href="https://github.com/{{ site.social_sites.github | cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#github"></use></svg> <span class="username">{{ site.social_sites.github | escape }}</span></a></li>{% endif %}
|
6
|
+
{% if site.social_sites.instagram %}<li><a href="https://instagram.com/{{ site.social_sites.instagram | cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#instagram"></use></svg> <span class="username">{{ site.social_sites.instagram | escape }}</span></a></li>{% endif %}
|
7
|
+
{% if site.social_sites.linkedin %}<li><a href="https://www.linkedin.com/in/{{ site.social_sites.linkedin | cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#linkedin"></use></svg> <span class="username">{{ site.social_sites.linkedin | escape }}</span></a></li>{% endif %}
|
8
|
+
{% if site.social_sites.pinterest %}<li><a href="https://www.pinterest.com/{{ site.social_sites.pinterest | cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#pinterest"></use></svg> <span class="username">{{ site.social_sites.pinterest | escape }}</span></a></li>{% endif %}
|
9
|
+
{% if site.social_sites.twitter %}<li><a href="https://www.twitter.com/{{ site.social_sites.twitter | cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#twitter"></use></svg> <span class="username">{{ site.social_sites.twitter | escape }}</span></a></li>{% endif %}
|
10
|
+
{% if site.social_sites.youtube %}<li><a href="https://youtube.com/{{ site.social_sites.youtube | cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#youtube"></use></svg> <span class="username">{{ site.social_sites.youtube | escape }}</span></a></li>{% endif %}
|
11
|
+
{% if site.social_sites.googleplus %}<li><a href="https://plus.google.com/{{ site.social_sites.googleplus | escape }}"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#googleplus"></use></svg> <span class="username">{{ site.social_sites.googleplus | escape }}</span></a></li>{% endif %}
|
12
|
+
{% if site.rss %}<li><a href="{{ 'feed.xml' | relative_url }}"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#rss"></use></svg> <span>{{ site.rss | escape }}</span></a></li>{% endif %}
|
13
|
+
</ul>
|
data/_layouts/home.html
CHANGED
@@ -3,24 +3,28 @@ layout: default
|
|
3
3
|
---
|
4
4
|
|
5
5
|
<div class="home">
|
6
|
+
{% if page.title %}
|
7
|
+
<h1 class="page-heading">{{ page.title }}</h1>
|
8
|
+
{% endif %}
|
6
9
|
|
7
|
-
<h1 class="page-heading">Posts</h1>
|
8
|
-
|
9
10
|
{{ content }}
|
10
11
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
<
|
12
|
+
{% if site.posts.size > 0 %}
|
13
|
+
<h2 class="post-list-heading">{{ page.list_title | default: "Posts" }}</h2>
|
14
|
+
<ul class="post-list">
|
15
|
+
{% for post in site.posts %}
|
16
|
+
<li>
|
17
|
+
{% assign date_format = site.minima.date_format | default: "%b %-d, %Y" %}
|
18
|
+
<span class="post-meta">{{ post.date | date: date_format }}</span>
|
16
19
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
20
|
+
<h3>
|
21
|
+
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
|
22
|
+
</h3>
|
23
|
+
</li>
|
24
|
+
{% endfor %}
|
25
|
+
</ul>
|
23
26
|
|
24
|
-
|
27
|
+
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
|
28
|
+
{% endif %}
|
25
29
|
|
26
30
|
</div>
|
data/_layouts/post.html
CHANGED
@@ -1,25 +1,27 @@
|
|
1
1
|
---
|
2
2
|
layout: default
|
3
3
|
---
|
4
|
-
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
|
4
|
+
<article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
|
5
5
|
|
6
6
|
<header class="post-header">
|
7
|
-
<h1 class="post-title" itemprop="name headline">{{ page.title | escape }}</h1>
|
7
|
+
<h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
|
8
8
|
<p class="post-meta">
|
9
|
-
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
9
|
+
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
10
10
|
{% assign date_format = site.minima.date_format | default: "%b %-d, %Y" %}
|
11
11
|
{{ page.date | date: date_format }}
|
12
12
|
</time>
|
13
13
|
{% if page.author %}
|
14
|
-
• <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>
|
14
|
+
• <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span class="p-author h-card" itemprop="name">{{ page.author }}</span></span>
|
15
15
|
{% endif %}</p>
|
16
16
|
</header>
|
17
17
|
|
18
|
-
<div class="post-content" itemprop="articleBody">
|
18
|
+
<div class="post-content e-content" itemprop="articleBody">
|
19
19
|
{{ content }}
|
20
20
|
</div>
|
21
21
|
|
22
22
|
{% if site.disqus.shortname %}
|
23
23
|
{% include disqus_comments.html %}
|
24
24
|
{% endif %}
|
25
|
+
|
26
|
+
<a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
|
25
27
|
</article>
|
data/_sass/minima.scss
CHANGED
data/_sass/minima/_base.scss
CHANGED
@@ -195,21 +195,48 @@ pre {
|
|
195
195
|
/**
|
196
196
|
* Icons
|
197
197
|
*/
|
198
|
-
.icon > svg {
|
199
|
-
display: inline-block;
|
200
|
-
vertical-align: middle;
|
201
198
|
|
202
|
-
|
203
|
-
|
204
|
-
|
199
|
+
.svg-icon {
|
200
|
+
width: 16px;
|
201
|
+
height: 16px;
|
202
|
+
display: inline-block;
|
203
|
+
fill: #{$grey-color};
|
204
|
+
padding-right: 5px;
|
205
|
+
vertical-align: text-top;
|
205
206
|
}
|
206
207
|
|
207
208
|
.social-media-list {
|
208
|
-
.icon {
|
209
|
-
padding-right: 5px;
|
210
|
-
}
|
211
|
-
|
212
209
|
li + li {
|
213
210
|
padding-top: 5px;
|
214
211
|
}
|
215
212
|
}
|
213
|
+
|
214
|
+
|
215
|
+
|
216
|
+
/**
|
217
|
+
* Tables
|
218
|
+
*/
|
219
|
+
table {
|
220
|
+
margin-bottom: $spacing-unit;
|
221
|
+
width: 100%;
|
222
|
+
text-align: $table-text-align;
|
223
|
+
color: lighten($text-color, 18%);
|
224
|
+
border-collapse: collapse;
|
225
|
+
border: 1px solid $grey-color-light;
|
226
|
+
tr {
|
227
|
+
&:nth-child(even) {
|
228
|
+
background-color: lighten($grey-color-light, 6%);
|
229
|
+
}
|
230
|
+
}
|
231
|
+
th, td {
|
232
|
+
padding: ($spacing-unit / 3) ($spacing-unit / 2);
|
233
|
+
}
|
234
|
+
th {
|
235
|
+
background-color: lighten($grey-color-light, 3%);
|
236
|
+
border: 1px solid darken($grey-color-light, 4%);
|
237
|
+
border-bottom-color: darken($grey-color-light, 12%);
|
238
|
+
}
|
239
|
+
td {
|
240
|
+
border: 1px solid $grey-color-light;
|
241
|
+
}
|
242
|
+
}
|
data/_sass/minima/_layout.scss
CHANGED
@@ -0,0 +1,27 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
2
|
+
|
3
|
+
<symbol id="dribbble" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M8 16c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm6.747-6.905c-.234-.074-2.115-.635-4.257-.292.894 2.456 1.258 4.456 1.328 4.872 1.533-1.037 2.624-2.68 2.93-4.58zM10.67 14.3c-.102-.6-.5-2.688-1.46-5.18l-.044.014C5.312 10.477 3.93 13.15 3.806 13.4c1.158.905 2.614 1.444 4.194 1.444.947 0 1.85-.194 2.67-.543zm-7.747-1.72c.155-.266 2.03-3.37 5.555-4.51.09-.03.18-.056.27-.08-.173-.39-.36-.778-.555-1.16-3.413 1.02-6.723.977-7.023.97l-.003.208c0 1.755.665 3.358 1.756 4.57zM1.31 6.61c.307.005 3.122.017 6.318-.832-1.132-2.012-2.353-3.705-2.533-3.952-1.912.902-3.34 2.664-3.784 4.785zM6.4 1.368c.188.253 1.43 1.943 2.548 4 2.43-.91 3.46-2.293 3.582-2.468C11.323 1.827 9.736 1.176 8 1.176c-.55 0-1.087.066-1.6.19zm6.89 2.322c-.145.194-1.29 1.662-3.816 2.694.16.325.31.656.453.99.05.117.1.235.147.352 2.274-.286 4.533.172 4.758.22-.015-1.613-.59-3.094-1.543-4.257z"/></symbol>
|
4
|
+
|
5
|
+
<symbol id="facebook" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M15.117 0H.883C.395 0 0 .395 0 .883v14.234c0 .488.395.883.883.883h7.663V9.804H6.46V7.39h2.086V5.607c0-2.066 1.262-3.19 3.106-3.19.883 0 1.642.064 1.863.094v2.16h-1.28c-1 0-1.195.48-1.195 1.18v1.54h2.39l-.31 2.42h-2.08V16h4.077c.488 0 .883-.395.883-.883V.883C16 .395 15.605 0 15.117 0" fill-rule="nonzero"/></symbol>
|
6
|
+
|
7
|
+
<symbol id="flickr" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M0 8c0 2.05 1.662 3.71 3.71 3.71 2.05 0 3.713-1.66 3.713-3.71S5.76 4.29 3.71 4.29C1.663 4.29 0 5.95 0 8zm8.577 0c0 2.05 1.662 3.71 3.712 3.71C14.33 11.71 16 10.05 16 8s-1.662-3.71-3.71-3.71c-2.05 0-3.713 1.66-3.713 3.71z"/></symbol>
|
8
|
+
|
9
|
+
<symbol id="github" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M8 0C3.58 0 0 3.582 0 8c0 3.535 2.292 6.533 5.47 7.59.4.075.547-.172.547-.385 0-.19-.007-.693-.01-1.36-2.226.483-2.695-1.073-2.695-1.073-.364-.924-.89-1.17-.89-1.17-.725-.496.056-.486.056-.486.803.056 1.225.824 1.225.824.714 1.223 1.873.87 2.33.665.072-.517.278-.87.507-1.07-1.777-.2-3.644-.888-3.644-3.953 0-.873.31-1.587.823-2.147-.09-.202-.36-1.015.07-2.117 0 0 .67-.215 2.2.82.64-.178 1.32-.266 2-.27.68.004 1.36.092 2 .27 1.52-1.035 2.19-.82 2.19-.82.43 1.102.16 1.915.08 2.117.51.56.82 1.274.82 2.147 0 3.073-1.87 3.75-3.65 3.947.28.24.54.73.54 1.48 0 1.07-.01 1.93-.01 2.19 0 .21.14.46.55.38C13.71 14.53 16 11.53 16 8c0-4.418-3.582-8-8-8"/></symbol>
|
10
|
+
|
11
|
+
<symbol id="googleplus" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M5.09 7.273v1.745h2.89c-.116.75-.873 2.197-2.887 2.197-1.737 0-3.155-1.44-3.155-3.215S3.353 4.785 5.09 4.785c.99 0 1.652.422 2.03.786l1.382-1.33c-.887-.83-2.037-1.33-3.41-1.33C2.275 2.91 0 5.19 0 8s2.276 5.09 5.09 5.09c2.94 0 4.888-2.065 4.888-4.974 0-.334-.036-.59-.08-.843H5.09zm10.91 0h-1.455V5.818H13.09v1.455h-1.454v1.454h1.455v1.455h1.46V8.727H16"/></symbol>
|
12
|
+
|
13
|
+
<symbol id="instagram" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M8 0C5.827 0 5.555.01 4.702.048 3.85.088 3.27.222 2.76.42c-.526.204-.973.478-1.417.923-.445.444-.72.89-.923 1.417-.198.51-.333 1.09-.372 1.942C.008 5.555 0 5.827 0 8s.01 2.445.048 3.298c.04.852.174 1.433.372 1.942.204.526.478.973.923 1.417.444.445.89.72 1.417.923.51.198 1.09.333 1.942.372.853.04 1.125.048 3.298.048s2.445-.01 3.298-.048c.852-.04 1.433-.174 1.942-.372.526-.204.973-.478 1.417-.923.445-.444.72-.89.923-1.417.198-.51.333-1.09.372-1.942.04-.853.048-1.125.048-3.298s-.01-2.445-.048-3.298c-.04-.852-.174-1.433-.372-1.942-.204-.526-.478-.973-.923-1.417-.444-.445-.89-.72-1.417-.923-.51-.198-1.09-.333-1.942-.372C10.445.008 10.173 0 8 0zm0 1.44c2.136 0 2.39.01 3.233.048.78.036 1.203.166 1.485.276.374.145.64.318.92.598.28.28.453.546.598.92.11.282.24.705.276 1.485.038.844.047 1.097.047 3.233s-.01 2.39-.05 3.233c-.04.78-.17 1.203-.28 1.485-.15.374-.32.64-.6.92-.28.28-.55.453-.92.598-.28.11-.71.24-1.49.276-.85.038-1.1.047-3.24.047s-2.39-.01-3.24-.05c-.78-.04-1.21-.17-1.49-.28-.38-.15-.64-.32-.92-.6-.28-.28-.46-.55-.6-.92-.11-.28-.24-.71-.28-1.49-.03-.84-.04-1.1-.04-3.23s.01-2.39.04-3.24c.04-.78.17-1.21.28-1.49.14-.38.32-.64.6-.92.28-.28.54-.46.92-.6.28-.11.7-.24 1.48-.28.85-.03 1.1-.04 3.24-.04zm0 2.452c-2.27 0-4.108 1.84-4.108 4.108 0 2.27 1.84 4.108 4.108 4.108 2.27 0 4.108-1.84 4.108-4.108 0-2.27-1.84-4.108-4.108-4.108zm0 6.775c-1.473 0-2.667-1.194-2.667-2.667 0-1.473 1.194-2.667 2.667-2.667 1.473 0 2.667 1.194 2.667 2.667 0 1.473-1.194 2.667-2.667 2.667zm5.23-6.937c0 .53-.43.96-.96.96s-.96-.43-.96-.96.43-.96.96-.96.96.43.96.96z"/></symbol>
|
14
|
+
|
15
|
+
<symbol id="linkedin" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M13.632 13.635h-2.37V9.922c0-.886-.018-2.025-1.234-2.025-1.235 0-1.424.964-1.424 1.96v3.778h-2.37V6H8.51v1.04h.03c.318-.6 1.092-1.233 2.247-1.233 2.4 0 2.845 1.58 2.845 3.637v4.188zM3.558 4.955c-.762 0-1.376-.617-1.376-1.377 0-.758.614-1.375 1.376-1.375.76 0 1.376.617 1.376 1.375 0 .76-.617 1.377-1.376 1.377zm1.188 8.68H2.37V6h2.376v7.635zM14.816 0H1.18C.528 0 0 .516 0 1.153v13.694C0 15.484.528 16 1.18 16h13.635c.652 0 1.185-.516 1.185-1.153V1.153C16 .516 15.467 0 14.815 0z" fill-rule="nonzero"/></symbol>
|
16
|
+
|
17
|
+
<symbol id="pinterest" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M8 0C3.582 0 0 3.582 0 8c0 3.39 2.108 6.285 5.084 7.45-.07-.633-.133-1.604.028-2.295.146-.625.938-3.977.938-3.977s-.24-.48-.24-1.188c0-1.11.646-1.943 1.448-1.943.683 0 1.012.513 1.012 1.127 0 .687-.436 1.713-.662 2.664-.19.797.4 1.445 1.185 1.445 1.42 0 2.514-1.498 2.514-3.662 0-1.91-1.376-3.25-3.342-3.25-2.276 0-3.61 1.71-3.61 3.47 0 .69.263 1.43.593 1.83.066.08.075.15.057.23-.06.25-.196.8-.223.91-.035.15-.115.18-.268.11C3.516 10.46 2.89 9 2.89 7.82c0-2.52 1.834-4.84 5.287-4.84 2.774 0 4.932 1.98 4.932 4.62 0 2.76-1.74 4.98-4.16 4.98-.81 0-1.57-.42-1.84-.92l-.5 1.9c-.18.698-.67 1.57-1 2.1.75.23 1.54.357 2.37.357 4.41 0 8-3.58 8-8s-3.59-8-8-8z" fill-rule="nonzero"/></symbol>
|
18
|
+
|
19
|
+
<symbol id="rss" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M12.8 16C12.8 8.978 7.022 3.2 0 3.2V0c8.777 0 16 7.223 16 16h-3.2zM2.194 11.61c1.21 0 2.195.985 2.195 2.196 0 1.21-.99 2.194-2.2 2.194C.98 16 0 15.017 0 13.806c0-1.21.983-2.195 2.194-2.195zM10.606 16h-3.11c0-4.113-3.383-7.497-7.496-7.497v-3.11c5.818 0 10.606 4.79 10.606 10.607z"/></symbol>
|
20
|
+
|
21
|
+
<symbol id="stackoverflow" class="svg-icon" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M12.658 14.577v-4.27h1.423V16H1.23v-5.693h1.42v4.27h10.006zm-8.583-1.423h7.16V11.73h-7.16v1.424zm.173-3.235l6.987 1.46.3-1.38L4.55 8.54l-.302 1.38zm.906-3.37l6.47 3.02.602-1.3-6.47-3.02-.602 1.29zm1.81-3.19l5.478 4.57.906-1.08L7.87 2.28l-.9 1.078zM10.502 0L9.338.863l4.27 5.735 1.164-.862L10.5 0z"/></symbol>
|
22
|
+
|
23
|
+
<symbol id="twitter" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M16 3.038c-.59.26-1.22.437-1.885.517.677-.407 1.198-1.05 1.443-1.816-.634.37-1.337.64-2.085.79-.598-.64-1.45-1.04-2.396-1.04-1.812 0-3.282 1.47-3.282 3.28 0 .26.03.51.085.75-2.728-.13-5.147-1.44-6.766-3.42C.83 2.58.67 3.14.67 3.75c0 1.14.58 2.143 1.46 2.732-.538-.017-1.045-.165-1.487-.41v.04c0 1.59 1.13 2.918 2.633 3.22-.276.074-.566.114-.865.114-.21 0-.41-.02-.61-.058.42 1.304 1.63 2.253 3.07 2.28-1.12.88-2.54 1.404-4.07 1.404-.26 0-.52-.015-.78-.045 1.46.93 3.18 1.474 5.04 1.474 6.04 0 9.34-5 9.34-9.33 0-.14 0-.28-.01-.42.64-.46 1.2-1.04 1.64-1.7z" fill-rule="nonzero"/></symbol>
|
24
|
+
|
25
|
+
<symbol id="youtube" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M0 7.345c0-1.294.16-2.59.16-2.59s.156-1.1.636-1.587c.608-.637 1.408-.617 1.764-.684C3.84 2.36 8 2.324 8 2.324s3.362.004 5.6.166c.314.038.996.04 1.604.678.48.486.636 1.588.636 1.588S16 6.05 16 7.346v1.258c0 1.296-.16 2.59-.16 2.59s-.156 1.102-.636 1.588c-.608.638-1.29.64-1.604.678-2.238.162-5.6.166-5.6.166s-4.16-.037-5.44-.16c-.356-.067-1.156-.047-1.764-.684-.48-.487-.636-1.587-.636-1.587S0 9.9 0 8.605v-1.26zm6.348 2.73V5.58l4.323 2.255-4.32 2.24z"/></symbol>
|
26
|
+
|
27
|
+
</svg>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minima
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joel Glovier
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-01-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -16,14 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '3.
|
19
|
+
version: '3.5'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '3.
|
26
|
+
version: '3.5'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jekyll-seo-tag
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.1'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.1'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: bundler
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,10 +66,7 @@ files:
|
|
52
66
|
- _includes/google-analytics.html
|
53
67
|
- _includes/head.html
|
54
68
|
- _includes/header.html
|
55
|
-
- _includes/
|
56
|
-
- _includes/icon-github.svg
|
57
|
-
- _includes/icon-twitter.html
|
58
|
-
- _includes/icon-twitter.svg
|
69
|
+
- _includes/social.html
|
59
70
|
- _layouts/default.html
|
60
71
|
- _layouts/home.html
|
61
72
|
- _layouts/page.html
|
@@ -65,6 +76,7 @@ files:
|
|
65
76
|
- _sass/minima/_layout.scss
|
66
77
|
- _sass/minima/_syntax-highlighting.scss
|
67
78
|
- assets/main.scss
|
79
|
+
- assets/minima-social-icons.svg
|
68
80
|
homepage: https://github.com/jekyll/minima
|
69
81
|
licenses:
|
70
82
|
- MIT
|
@@ -86,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
86
98
|
version: '0'
|
87
99
|
requirements: []
|
88
100
|
rubyforge_project:
|
89
|
-
rubygems_version: 2.
|
101
|
+
rubygems_version: 2.7.4
|
90
102
|
signing_key:
|
91
103
|
specification_version: 4
|
92
104
|
summary: A beautiful, minimal theme for Jekyll.
|
data/_includes/icon-github.html
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
<a href="https://github.com/{{ include.username }}"><span class="icon icon--github">{% include icon-github.svg %}</span><span class="username">{{ include.username }}</span></a>
|
data/_includes/icon-github.svg
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#828282" d="M7.999,0.431c-4.285,0-7.76,3.474-7.76,7.761 c0,3.428,2.223,6.337,5.307,7.363c0.388,0.071,0.53-0.168,0.53-0.374c0-0.184-0.007-0.672-0.01-1.32 c-2.159,0.469-2.614-1.04-2.614-1.04c-0.353-0.896-0.862-1.135-0.862-1.135c-0.705-0.481,0.053-0.472,0.053-0.472 c0.779,0.055,1.189,0.8,1.189,0.8c0.692,1.186,1.816,0.843,2.258,0.645c0.071-0.502,0.271-0.843,0.493-1.037 C4.86,11.425,3.049,10.76,3.049,7.786c0-0.847,0.302-1.54,0.799-2.082C3.768,5.507,3.501,4.718,3.924,3.65 c0,0,0.652-0.209,2.134,0.796C6.677,4.273,7.34,4.187,8,4.184c0.659,0.003,1.323,0.089,1.943,0.261 c1.482-1.004,2.132-0.796,2.132-0.796c0.423,1.068,0.157,1.857,0.077,2.054c0.497,0.542,0.798,1.235,0.798,2.082 c0,2.981-1.814,3.637-3.543,3.829c0.279,0.24,0.527,0.713,0.527,1.437c0,1.037-0.01,1.874-0.01,2.129 c0,0.208,0.14,0.449,0.534,0.373c3.081-1.028,5.302-3.935,5.302-7.362C15.76,3.906,12.285,0.431,7.999,0.431z"/></svg>
|
data/_includes/icon-twitter.html
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
<a href="https://twitter.com/{{ include.username }}"><span class="icon icon--twitter">{% include icon-twitter.svg %}</span><span class="username">{{ include.username }}</span></a>
|
data/_includes/icon-twitter.svg
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#828282" d="M15.969,3.058c-0.586,0.26-1.217,0.436-1.878,0.515c0.675-0.405,1.194-1.045,1.438-1.809c-0.632,0.375-1.332,0.647-2.076,0.793c-0.596-0.636-1.446-1.033-2.387-1.033c-1.806,0-3.27,1.464-3.27,3.27 c0,0.256,0.029,0.506,0.085,0.745C5.163,5.404,2.753,4.102,1.14,2.124C0.859,2.607,0.698,3.168,0.698,3.767 c0,1.134,0.577,2.135,1.455,2.722C1.616,6.472,1.112,6.325,0.671,6.08c0,0.014,0,0.027,0,0.041c0,1.584,1.127,2.906,2.623,3.206 C3.02,9.402,2.731,9.442,2.433,9.442c-0.211,0-0.416-0.021-0.615-0.059c0.416,1.299,1.624,2.245,3.055,2.271 c-1.119,0.877-2.529,1.4-4.061,1.4c-0.264,0-0.524-0.015-0.78-0.046c1.447,0.928,3.166,1.469,5.013,1.469 c6.015,0,9.304-4.983,9.304-9.304c0-0.142-0.003-0.283-0.009-0.423C14.976,4.29,15.531,3.714,15.969,3.058z"/></svg>
|