red-star 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 15b5cd474d16d6496efcd5abd3903c74f3e7b22b97f41382da4d3ced7140eefe
4
+ data.tar.gz: af4bb868798b26a1de99d68d68d8aec921f75d5cbc274dc941dfadd8052c1dfe
5
+ SHA512:
6
+ metadata.gz: d2eb06d70f1b4794979070e36fc05235e05fb33075f5c78eb575ef4587194ff28ecd23794b0c777e899148599324e9e228e5202491c79c090f3b97db11aa6ff6
7
+ data.tar.gz: b93fd036b2b4137202f5f191d0e44b832cd5b2d4548ce13b5e3e4ae62e313302a3720223e9818f660fa9a58e36b8e1bc15ea98422e42361e8a974b0680416674
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016-present Parker Moore and the minima contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,269 @@
1
+ # minima
2
+
3
+ *Minima is a one-size-fits-all Jekyll theme for writers*. It's Jekyll's default (and first) theme. It's what you get when you run `jekyll new`.
4
+
5
+ ***Disclaimer:** The information here may vary depending on the version you're using. Please refer to the `README.md` bundled
6
+ within the theme-gem for information specific to your version or by pointing your browser to the Git tag corresponding to your
7
+ version. e.g. https://github.com/jekyll/minima/blob/v2.5.0/README.md*
8
+ *Running `bundle show minima` will provide you with the local path to your current theme version.*
9
+
10
+
11
+ [Theme preview](https://jekyll.github.io/minima/)
12
+
13
+ ![minima theme preview](/screenshot.png)
14
+
15
+ ## Installation
16
+
17
+ Add this line to your Jekyll site's Gemfile:
18
+
19
+ ```ruby
20
+ gem "minima"
21
+ ```
22
+
23
+ And add this line to your Jekyll site:
24
+
25
+ ```yaml
26
+ theme: minima
27
+ ```
28
+
29
+ And then execute:
30
+
31
+ $ bundle
32
+
33
+
34
+ ## Contents At-A-Glance
35
+
36
+ Minima has been scaffolded by the `jekyll new-theme` command and therefore has all the necessary files and directories to have a new Jekyll site up and running with zero-configuration.
37
+
38
+ ### Layouts
39
+
40
+ Refers to files within the `_layouts` directory, that define the markup for your theme.
41
+
42
+ - `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`.
43
+ - `home.html` — The layout for your landing-page / home-page / index-page. [[More Info.](#home-layout)]
44
+ - `page.html` — The layout for your documents that contain FrontMatter, but are not posts.
45
+ - `post.html` — The layout for your posts.
46
+
47
+ ### Includes
48
+
49
+ Refers to snippets of code within the `_includes` directory that can be inserted in multiple layouts (and another include-file as well) within the same theme-gem.
50
+
51
+ - `disqus_comments.html` — Code to markup disqus comment box.
52
+ - `footer.html` — Defines the site's footer section.
53
+ - `google-analytics.html` — Inserts Google Analytics module (active only in production environment).
54
+ - `head.html` &mdash; Code-block that defines the `<head></head>` in *default* layout.
55
+ - `header.html` &mdash; Defines the site's main header section. By default, pages with a defined `title` attribute will have links displayed here.
56
+
57
+ ### Sass
58
+
59
+ Refers to `.scss` files within the `_sass` directory that define the theme's styles.
60
+
61
+ - `minima.scss` &mdash; The core file imported by preprocessed `css/style.scss`, it defines the variable defaults for the theme and also further imports sass partials to supplement itself.
62
+ - `minima/_base.scss` &mdash; Resets and defines base styles for various HTML elements.
63
+ - `minima/_layout.scss` &mdash; Defines the visual style for various layouts.
64
+ - `minima/_syntax-highlighting.scss` &mdash; Defines the styles for syntax-highlighting.
65
+
66
+ ### Assets
67
+
68
+ Refers to various asset files within the `assets` directory.
69
+ Contains the `css/style.scss` that imports sass files from within the `_sass` directory. This `css/style.scss` is what gets processed into the theme's main stylesheet `main.css` called by `_layouts/default.html` via `_includes/head.html`.
70
+
71
+ This directory can include sub-directories to manage assets of similar type (`img`, `fonts`, `svg`), and will be copied over as is, to the final transformed site directory.
72
+
73
+ ### Plugins
74
+
75
+ 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.
76
+
77
+ ## Usage
78
+
79
+ ### Home Layout
80
+
81
+ `home.html` is a flexible HTML layout for the site's landing-page / home-page / index-page. <br/>
82
+
83
+ #### Main Heading and Content-injection
84
+
85
+ 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 (`##`)*.
86
+
87
+ 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.
88
+
89
+ #### Post Listing
90
+
91
+ This section is optional from Minima v2.2 onwards.<br/>
92
+ 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`).
93
+
94
+ 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.
95
+
96
+ --
97
+
98
+ ### Customization
99
+
100
+ 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.
101
+ e.g., to override the [`_includes/head.html `](_includes/head.html) file to specify a custom style path, create an `_includes` directory, copy `_includes/head.html` from minima gem folder to `<yoursite>/_includes` and start editing that file.
102
+
103
+ The site's default CSS has now moved to a new place within the gem itself, [`assets/css/style.scss`](assets/css/style.scss). To **override the default CSS**, the file has to exist at your site source. Do either of the following:
104
+ - Create a new instance at site source.
105
+ - Create a new file at `<your-site>/assets/css/style.scss`
106
+ - Add the frontmatter dashes, and
107
+ - Add `@import "minima";`
108
+ - Add your custom CSS.
109
+ - Download the file from this repo
110
+ - Create a new file at `<your-site>/assets/css/style.scss`
111
+ - Copy the contents at [assets/css/style.scss](assets/css/style.scss) onto the `css/style.scss` you just created, and edit away!
112
+ - Copy directly from minima gem
113
+ - Go to your local minima gem installation directory ( run `bundle show minima` to get the path to it ).
114
+ - Copy the `assets/` folder from there into the root of `<your-site>`
115
+ - Change whatever values you want, inside `<your-site>/assets/css/style.scss`
116
+
117
+
118
+ When you override only a minima-sass-partial, it is not automatically imported because we're still importing the `minima.scss` within the theme-gem and that subsequently imports the partials with respect to itself, i.e. partials within the gem. Hence you should either include a *copy of `minima.scss` from the gem* inside the `_sass` directory at source or the overriding `/assets/css/style.scss` file should explicitly import the edited partial. :
119
+ e.g. To have an **edited** `_syntax-highlighting.scss` be rendered, you should either have
120
+
121
+ ```sass
122
+ /* <your-site>/assets/css/style.scss */
123
+
124
+ @import "minima";
125
+ @import "minima/syntax-highlighting";
126
+ ```
127
+ or
128
+ your `<your-site>/_sass/` should look like:
129
+
130
+ ```
131
+ .
132
+ ├── minima.scss
133
+ ├── minima
134
+ | ├── _syntax-highlighting.scss
135
+ ```
136
+
137
+ To have your CSS overrides in sync with upstream changes released in future versions, collect all your overrides into a single partial sass-file and then import that partial after importing minima, like so:
138
+
139
+ ```sass
140
+ /* <your-site>/assets/css/style.scss */
141
+
142
+ @import "minima";
143
+ @import "my_overrides";
144
+ ```
145
+
146
+
147
+ ### Customize navigation links
148
+
149
+ This allows you to set which pages you want to appear in the navigation area and configure order of the links.
150
+
151
+ For instance, to only link to the `about` and the `portfolio` page, add the following to your `_config.yml`:
152
+
153
+ ```yaml
154
+ header_pages:
155
+ - about.md
156
+ - portfolio.md
157
+ ```
158
+
159
+ --
160
+
161
+ ### Change default date format
162
+
163
+ You can change the default date format by specifying `site.minima.date_format`
164
+ in `_config.yml`.
165
+
166
+ ```
167
+ # Minima date format
168
+ # refer to http://shopify.github.io/liquid/filters/date/ if you want to customize this
169
+ minima:
170
+ date_format: "%b %-d, %Y"
171
+ ```
172
+
173
+ --
174
+
175
+ ### Add your favicons
176
+
177
+ 1. Head over to [https://realfavicongenerator.net/](https://realfavicongenerator.net/) to add your own favicons.
178
+ 2. [Customize](#customization) default `_includes/head.html` in your source directory and insert the given code snippet.
179
+
180
+ --
181
+
182
+ ### Enabling comments (via Disqus)
183
+
184
+ Optionally, if you have a Disqus account, you can tell Jekyll to use it to show a comments section below each post.
185
+
186
+ To enable it, add the following lines to your Jekyll site:
187
+
188
+ ```yaml
189
+ disqus:
190
+ shortname: my_disqus_shortname
191
+ ```
192
+
193
+ You can find out more about Disqus' shortnames [here](https://help.disqus.com/installation/whats-a-shortname).
194
+
195
+ Comments are enabled by default and will only appear in production, i.e., `JEKYLL_ENV=production`
196
+
197
+ If you don't want to display comments for a particular post you can disable them by adding `comments: false` to that post's YAML Front Matter.
198
+
199
+ :warning: `url`, e.g. `https://example.com`, must be set in you config file for Disqus to work.
200
+
201
+ --
202
+
203
+ ### Social networks
204
+
205
+ 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.
206
+ From `Minima-3.0` onwards, the usernames are to be nested under `minima.social_links`, with the keys being simply the social-network's name:
207
+
208
+ ```yaml
209
+ minima:
210
+ social_links:
211
+ twitter: jekyllrb
212
+ github: jekyll
213
+ dribbble: jekyll
214
+ facebook: jekyll
215
+ flickr: jekyll
216
+ instagram: jekyll
217
+ linkedin: jekyll
218
+ pinterest: jekyll
219
+ telegram: jekyll
220
+ googleplus: +jekyll
221
+ microdotblog: jekyll
222
+ rss: rss
223
+
224
+ mastodon:
225
+ - username: jekyll
226
+ instance: example.com
227
+ - username: jekyll2
228
+ instance: example.com
229
+
230
+ youtube: jekyll
231
+ youtube_channel: UC8CXR0-3I70i1tfPg1PAE1g
232
+ youtube_channel_name: CloudCannon
233
+ ```
234
+
235
+ --
236
+
237
+ ### Enabling Google Analytics
238
+
239
+ To enable Google Analytics, add the following lines to your Jekyll site:
240
+
241
+ ```yaml
242
+ google_analytics: UA-NNNNNNNN-N
243
+ ```
244
+
245
+ Google Analytics will only appear in production, i.e., `JEKYLL_ENV=production`
246
+
247
+ --
248
+
249
+ ### Enabling Excerpts on the Home Page
250
+
251
+ To display post-excerpts on the Home Page, simply add the following to your `_config.yml`:
252
+
253
+ ```yaml
254
+ show_excerpts: true
255
+ ```
256
+
257
+ ## Contributing
258
+
259
+ Bug reports and pull requests are welcome on GitHub at https://github.com/jekyll/minima. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
260
+
261
+ ## Development
262
+
263
+ To set up your environment to develop this theme, run `script/bootstrap`.
264
+
265
+ To test your theme, run `script/server` (or `bundle exec jekyll serve`) and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme and the contents. As you make modifications, your site will regenerate and you should see the changes in the browser after a refresh.
266
+
267
+ ## License
268
+
269
+ The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -0,0 +1,20 @@
1
+ {%- if page.comments != false and jekyll.environment == "production" -%}
2
+
3
+ <div id="disqus_thread"></div>
4
+ <script>
5
+ var disqus_config = function () {
6
+ this.page.url = '{{ page.url | absolute_url }}';
7
+ this.page.identifier = '{{ page.url | absolute_url }}';
8
+ };
9
+
10
+ (function() {
11
+ var d = document, s = d.createElement('script');
12
+
13
+ s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
14
+
15
+ s.setAttribute('data-timestamp', +new Date());
16
+ (d.head || d.body).appendChild(s);
17
+ })();
18
+ </script>
19
+ <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
20
+ {%- endif -%}
@@ -0,0 +1,34 @@
1
+ <footer class="site-footer h-card">
2
+ <data class="u-url" href="{{ "/" | relative_url }}"></data>
3
+
4
+ <div class="wrapper">
5
+
6
+ <div class="footer-col-wrapper">
7
+ <div class="footer-col one-half">
8
+ <h2 class="footer-heading">{{ site.title | escape }}</h2>
9
+ <ul class="contact-list">
10
+ <li class="p-name">
11
+ {%- if site.author -%}
12
+ {{ site.author | escape }}
13
+ {%- else -%}
14
+ {{ site.title | escape }}
15
+ {%- endif -%}
16
+ </li>
17
+ {%- if site.email -%}
18
+ <li><a class="u-email" href="mailto:{{ site.email }}">{{ site.email }}</a></li>
19
+ {%- endif -%}
20
+ </ul>
21
+ </div>
22
+
23
+ <div class="footer-col one-half">
24
+ <p>{{- site.description | escape -}}</p>
25
+ </div>
26
+
27
+ <div class="social-links">
28
+ {%- include social.html -%}
29
+ </div>
30
+ </div>
31
+
32
+ </div>
33
+
34
+ </footer>
@@ -0,0 +1,9 @@
1
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
2
+ <script>
3
+ window['ga-disable-{{ site.google_analytics }}'] = window.doNotTrack === "1" || navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1";
4
+ window.dataLayer = window.dataLayer || [];
5
+ function gtag(){dataLayer.push(arguments);}
6
+ gtag('js', new Date());
7
+
8
+ gtag('config', '{{ site.google_analytics }}');
9
+ </script>
@@ -0,0 +1,11 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+ {%- seo -%}
6
+ <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
7
+ {%- feed_meta -%}
8
+ {%- if jekyll.environment == 'production' and site.google_analytics -%}
9
+ {%- include google-analytics.html -%}
10
+ {%- endif -%}
11
+ </head>
@@ -0,0 +1,31 @@
1
+ <header class="site-header">
2
+
3
+ <div class="wrapper">
4
+ {%- assign default_paths = site.pages | map: "path" -%}
5
+ {%- assign page_paths = site.header_pages | default: default_paths -%}
6
+ {%- assign titles_size = site.pages | map: 'title' | join: '' | size -%}
7
+ <a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
8
+
9
+ {%- if titles_size > 0 -%}
10
+ <nav class="site-nav">
11
+ <input type="checkbox" id="nav-trigger" class="nav-trigger" />
12
+ <label for="nav-trigger">
13
+ <span class="menu-icon">
14
+ <svg viewBox="0 0 18 15" width="18px" height="15px">
15
+ <path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
16
+ </svg>
17
+ </span>
18
+ </label>
19
+
20
+ <div class="trigger">
21
+ {%- for path in page_paths -%}
22
+ {%- assign my_page = site.pages | where: "path", path | first -%}
23
+ {%- if my_page.title -%}
24
+ <a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
25
+ {%- endif -%}
26
+ {%- endfor -%}
27
+ </div>
28
+ </nav>
29
+ {%- endif -%}
30
+ </div>
31
+ </header>
@@ -0,0 +1,19 @@
1
+ {%- assign social = site.minima.social_links -%}
2
+
3
+ <ul class="social-media-list">
4
+ {%- if social.dribbble -%}<li><a href="https://dribbble.com/{{ social.dribbble | cgi_escape | escape }}" title="{{ social.dribbble | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#dribbble' | relative_url }}"></use></svg></a></li>{%- endif -%}
5
+ {%- if social.facebook -%}<li><a href="https://www.facebook.com/{{ social.facebook | cgi_escape | escape }}" title="{{ social.facebook | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#facebook' | relative_url }}"></use></svg></a></li>{%- endif -%}
6
+ {%- if social.flickr -%}<li><a href="https://www.flickr.com/photos/{{ social.flickr | cgi_escape | escape }}" title="{{ social.flickr | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#flickr' | relative_url }}"></use></svg></a></li>{%- endif -%}
7
+ {%- if social.github -%}<li><a href="https://github.com/{{ social.github | cgi_escape | escape }}" title="{{ social.github | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#github' | relative_url }}"></use></svg></a></li>{%- endif -%}
8
+ {%- if social.instagram -%}<li><a href="https://www.instagram.com/{{ social.instagram | cgi_escape | escape }}" title="{{ social.instagram | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#instagram' | relative_url }}"></use></svg></a></li>{%- endif -%}
9
+ {%- if social.linkedin -%}<li><a href="https://www.linkedin.com/in/{{ social.linkedin | cgi_escape | escape }}" title="{{ social.linkedin | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#linkedin' | relative_url }}"></use></svg></a></li>{%- endif -%}
10
+ {%- if social.pinterest -%}<li><a href="https://www.pinterest.com/{{ social.pinterest | cgi_escape | escape }}" title="{{ social.pinterest | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#pinterest' | relative_url }}"></use></svg></a></li>{%- endif -%}
11
+ {%- for mst in social.mastodon -%}{%- if mst.username and mst.instance -%}<li><a rel="me" href="https://{{ mst.instance | cgi_escape | escape}}/@{{mst.username}}" title="{{ mst.username | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#mastodon' | relative_url }}"></use></svg></a></li>{%- endif -%}{%- endfor -%}
12
+ {%- if social.twitter -%}<li><a href="https://twitter.com/{{ social.twitter | cgi_escape | escape }}" title="{{ social.twitter | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#twitter' | relative_url }}"></use></svg></a></li>{%- endif -%}
13
+ {%- if social.youtube -%}<li><a href="https://www.youtube.com/{{ social.youtube | cgi_escape | escape }}" title="{{ social.youtube | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#youtube' | relative_url }}"></use></svg></a></li>{%- endif -%}
14
+ {%- if social.youtube_channel -%}<li><a href="https://www.youtube.com/channel/{{ social.youtube_channel | cgi_escape | escape }}" title="{{ social.youtube_channel_name | escape | default: 'YouTube' }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#youtube' | relative_url }}"></use></svg></a></li>{%- endif -%}
15
+ {%- if social.telegram -%}<li><a href="https://t.me/{{ social.telegram | cgi_escape | escape }}" title="{{ social.telegram | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#telegram' | relative_url }}"></use></svg></a></li>{%- endif -%}
16
+ {%- if social.microdotblog -%}<li><a rel="me" href="https://micro.blog/{{ social.microdotblog | cgi_escape | escape }}" title="{{ social.microdotblog | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#microdotblog' | relative_url }}"></use></svg></a></li>{%- endif -%}
17
+ {%- if social.googleplus -%}<li><a href="https://plus.google.com/{{ social.googleplus | escape }}" title="{{ social.googleplus | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#googleplus' | relative_url }}"></use></svg></a></li>{%- endif -%}
18
+ {%- if social.rss -%}<li><a href="{{ 'feed.xml' | relative_url }}" title="{{ social.rss | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#rss' | relative_url }}"></use></svg></a></li>{%- endif -%}
19
+ </ul>
@@ -0,0 +1,20 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {%- include head.html -%}
5
+
6
+ <body>
7
+
8
+ {%- include header.html -%}
9
+
10
+ <main class="page-content" aria-label="Content">
11
+ <div class="wrapper">
12
+ {{ content }}
13
+ </div>
14
+ </main>
15
+
16
+ {%- include footer.html -%}
17
+
18
+ </body>
19
+
20
+ </html>