minima-gutenberg 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +224 -0
  4. data/_includes/disqus_comments.html +20 -0
  5. data/_includes/footer.html +50 -0
  6. data/_includes/google-analytics.html +12 -0
  7. data/_includes/head.html +11 -0
  8. data/_includes/header.html +9 -0
  9. data/_includes/icon-github.html +1 -0
  10. data/_includes/icon-github.svg +1 -0
  11. data/_includes/icon-twitter.html +1 -0
  12. data/_includes/icon-twitter.svg +1 -0
  13. data/_includes/social.html +14 -0
  14. data/_layouts/default.html +20 -0
  15. data/_layouts/home.html +32 -0
  16. data/_layouts/page.html +14 -0
  17. data/_layouts/post.html +27 -0
  18. data/_sass/_gutenberg.scss +125 -0
  19. data/_sass/gutenberg/helpers/_alignment.scss +25 -0
  20. data/_sass/gutenberg/helpers/_grid.scss +95 -0
  21. data/_sass/gutenberg/layout/_aside.scss +3 -0
  22. data/_sass/gutenberg/layout/_base.scss +62 -0
  23. data/_sass/gutenberg/layout/_footer.scss +9 -0
  24. data/_sass/gutenberg/layout/_header.scss +3 -0
  25. data/_sass/gutenberg/layout/_main.scss +3 -0
  26. data/_sass/gutenberg/layout/_section.scss +3 -0
  27. data/_sass/gutenberg/mixins/_font-size.scss +5 -0
  28. data/_sass/gutenberg/mixins/_line-height.scss +5 -0
  29. data/_sass/gutenberg/mixins/_margin.scss +25 -0
  30. data/_sass/gutenberg/mixins/_padding.scss +27 -0
  31. data/_sass/gutenberg/modules/_anchor.scss +34 -0
  32. data/_sass/gutenberg/modules/_article.scss +11 -0
  33. data/_sass/gutenberg/modules/_audio.scss +10 -0
  34. data/_sass/gutenberg/modules/_canvas.scss +4 -0
  35. data/_sass/gutenberg/modules/_code.scss +28 -0
  36. data/_sass/gutenberg/modules/_details.scss +7 -0
  37. data/_sass/gutenberg/modules/_figure.scss +83 -0
  38. data/_sass/gutenberg/modules/_form.scss +3 -0
  39. data/_sass/gutenberg/modules/_heading.scss +108 -0
  40. data/_sass/gutenberg/modules/_horizontal-rule.scss +69 -0
  41. data/_sass/gutenberg/modules/_image.scss +12 -0
  42. data/_sass/gutenberg/modules/_list.scss +9 -0
  43. data/_sass/gutenberg/modules/_navigation.scss +3 -0
  44. data/_sass/gutenberg/modules/_progress.scss +4 -0
  45. data/_sass/gutenberg/modules/_quote.scss +48 -0
  46. data/_sass/gutenberg/modules/_table.scss +10 -0
  47. data/_sass/gutenberg/modules/_template.scss +4 -0
  48. data/_sass/gutenberg/modules/_text.scss +143 -0
  49. data/_sass/gutenberg/modules/_video.scss +4 -0
  50. data/assets/main.scss +7 -0
  51. data/assets/minima-social-icons.svg +33 -0
  52. metadata +160 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b1ab087a82cbc9f5283b5ee81b5fbd58180d04123b4e0f53b55ea058ffd31b26
4
+ data.tar.gz: 7586279276116758263e2d80bc7ac7b7806b391d36926b04221e6f9a1f09ed75
5
+ SHA512:
6
+ metadata.gz: a223fd080b9dccffc588317f078f80baa57ea26fd69e62670a01eccf103c758d84a49c4f80500dd57ce05f2f973a3a8b6f900ad418fb08723b426043bf926e48
7
+ data.tar.gz: 4981001cea92f7e13a50230c240edfa3a1705a917357fd8bbeb91fdb871c571d49c5d2ae4cfda596add06c9a04c4aa5ecff82192c6bff39870abf5bc174de6ea
@@ -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,224 @@
1
+ # minima-gutenberg
2
+
3
+ *Minima is a one-size-fits-all Jekyll theme for writers*. It's Jekyll's default (and first) theme, just with [Gutenberg](https://matejlatin.github.io/Gutenberg/) plopped on top. It's what you get when you run `jekyll new`.
4
+
5
+ __Versioning__:
6
+
7
+ * `minima-gutenberg` version `0.1.0` includes
8
+ * `minima` version `2.5.1`
9
+ * `gutenberg` master@[e770c46](https://github.com/matejlatin/Gutenberg/commit/e770c460ae2d50fecb5142476490715caaa03bf1)
10
+
11
+ [Theme preview](https://meowsus.github.io/minima-gutenberg/)
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-gutenberg"
21
+ ```
22
+
23
+ And add this line to your Jekyll site:
24
+
25
+ ```yaml
26
+ theme: minima-gutenberg
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 `main.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 `main.scss` that imports sass files from within the `_sass` directory. This `main.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, 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/main.scss`](assets/main.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 of `main.scss` at site source.
105
+ - Create a new file `main.scss` at `<your-site>/assets/`
106
+ - Add the frontmatter dashes, and
107
+ - Add `@import "minima";`, to `<your-site>/assets/main.scss`
108
+ - Add your custom CSS.
109
+ - Download the file from this repo
110
+ - Create a new file `main.scss` at `<your-site>/assets/`
111
+ - Copy the contents at [assets/main.scss](assets/main.scss) onto the `main.scss` you just created, and edit away!
112
+ - Copy directly from Minima 2.0 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/main.scss`
116
+
117
+ --
118
+
119
+ ### Customize navigation links
120
+
121
+ This allows you to set which pages you want to appear in the navigation area and configure order of the links.
122
+
123
+ For instance, to only link to the `about` and the `portfolio` page, add the following to you `_config.yml`:
124
+
125
+ ```yaml
126
+ header_pages:
127
+ - about.md
128
+ - portfolio.md
129
+ ```
130
+
131
+ --
132
+
133
+ ### Change default date format
134
+
135
+ You can change the default date format by specifying `site.minima.date_format`
136
+ in `_config.yml`.
137
+
138
+ ```
139
+ # Minima date format
140
+ # refer to http://shopify.github.io/liquid/filters/date/ if you want to customize this
141
+ minima:
142
+ date_format: "%b %-d, %Y"
143
+ ```
144
+
145
+ --
146
+
147
+ ### Enabling comments (via Disqus)
148
+
149
+ Optionally, if you have a Disqus account, you can tell Jekyll to use it to show a comments section below each post.
150
+
151
+ To enable it, add the following lines to your Jekyll site:
152
+
153
+ ```yaml
154
+ disqus:
155
+ shortname: my_disqus_shortname
156
+ ```
157
+
158
+ You can find out more about Disqus' shortnames [here](https://help.disqus.com/customer/portal/articles/466208).
159
+
160
+ Comments are enabled by default and will only appear in production, i.e., `JEKYLL_ENV=production`
161
+
162
+ 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.
163
+
164
+ --
165
+
166
+ ### Social networks
167
+
168
+ 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:
169
+
170
+ ```yaml
171
+ twitter_username: jekyllrb
172
+ github_username: jekyll
173
+ dribbble_username: jekyll
174
+ facebook_username: jekyll
175
+ flickr_username: jekyll
176
+ instagram_username: jekyll
177
+ linkedin_username: jekyll
178
+ pinterest_username: jekyll
179
+ youtube_username: jekyll
180
+ googleplus_username: +jekyll
181
+ rss: rss
182
+
183
+ mastodon:
184
+ - username: jekyll
185
+ instance: example.com
186
+ - username: jekyll2
187
+ instance: example.com
188
+ ```
189
+
190
+ --
191
+
192
+ ### Enabling Google Analytics
193
+
194
+ To enable Google Analytics, add the following lines to your Jekyll site:
195
+
196
+ ```yaml
197
+ google_analytics: UA-NNNNNNNN-N
198
+ ```
199
+
200
+ Google Analytics will only appear in production, i.e., `JEKYLL_ENV=production`
201
+
202
+ --
203
+
204
+ ### Enabling Excerpts on the Home Page
205
+
206
+ To display post-excerpts on the Home Page, simply add the following to your `_config.yml`:
207
+
208
+ ```yaml
209
+ show_excerpts: true
210
+ ```
211
+
212
+ ## Contributing
213
+
214
+ 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.
215
+
216
+ ## Development
217
+
218
+ To set up your environment to develop this theme, run `script/bootstrap`.
219
+
220
+ 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.
221
+
222
+ ## License
223
+
224
+ 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,50 @@
1
+ <footer class="site-footer h-card">
2
+ <data class="u-url" href="{{ "/" | relative_url }}"></data>
3
+
4
+ <div class="wrapper">
5
+
6
+ <h2 class="footer-heading">{{ site.title | escape }}</h2>
7
+
8
+ <div class="footer-col-wrapper">
9
+ <div class="footer-col footer-col-1">
10
+ <ul class="contact-list">
11
+ <li class="p-name">
12
+ {%- if site.author -%}
13
+ {{ site.author | escape }}
14
+ {%- else -%}
15
+ {{ site.title | escape }}
16
+ {%- endif -%}
17
+ </li>
18
+ {%- if site.email -%}
19
+ <li><a class="u-email" href="mailto:{{ site.email }}">{{ site.email }}</a></li>
20
+ {%- endif -%}
21
+ </ul>
22
+ </div>
23
+
24
+ <div class="footer-col footer-col-2">
25
+ {%- include social.html -%}
26
+ </div>
27
+
28
+ <div class="footer-col footer-col-3">
29
+ {%- if page_paths -%}
30
+ <nav class="site-nav">
31
+ <ul>
32
+ {%- for path in page_paths -%}
33
+ {%- assign my_page = site.pages | where: "path", path | first -%}
34
+ {%- if my_page.title -%}
35
+ <li>
36
+ <a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
37
+ </li>
38
+ {%- endif -%}
39
+ {%- endfor -%}
40
+ </ul>
41
+ </nav>
42
+ {%- endif -%}
43
+
44
+ <p>{{- site.description | escape -}}</p>
45
+ </div>
46
+ </div>
47
+
48
+ </div>
49
+
50
+ </footer>
@@ -0,0 +1,12 @@
1
+ <script>
2
+ if(!(window.doNotTrack === "1" || navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1")) {
3
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
4
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
5
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
6
+ })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
7
+
8
+ ga('create', '{{ site.google_analytics }}', 'auto');
9
+ ga('send', 'pageview');
10
+ }
11
+ </script>
12
+
@@ -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/main.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,9 @@
1
+ <header class="site-header" role="banner">
2
+ <div class="wrapper">
3
+ {%- assign default_paths = site.pages | map: "path" -%}
4
+ {%- assign page_paths = site.header_pages | default: default_paths -%}
5
+ <h1 style="text-align: center; ">
6
+ <a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
7
+ </h1>
8
+ </div>
9
+ </header>
@@ -0,0 +1 @@
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>
@@ -0,0 +1 @@
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>
@@ -0,0 +1 @@
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>
@@ -0,0 +1 @@
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>
@@ -0,0 +1,14 @@
1
+ <ul class="social-media-list">
2
+ {%- if site.dribbble_username -%}<li>Dribble @<a href="https://dribbble.com/{{ site.dribbble_username| cgi_escape | escape }}"><span class="username">{{ site.dribbble_username| escape }}</span></a></li>{%- endif -%}
3
+ {%- if site.facebook_username -%}<li>Facebook @<a href="https://www.facebook.com/{{ site.facebook_username| cgi_escape | escape }}"><span class="username">{{ site.facebook_username| escape }}</span></a></li>{%- endif -%}
4
+ {%- if site.flickr_username -%}<li>Flickr @<a href="https://www.flickr.com/photos/{{ site.flickr_username| cgi_escape | escape }}"><span class="username">{{ site.flickr_username| escape }}</span></a></li>{%- endif -%}
5
+ {%- if site.github_username -%}<li>Github @<a href="https://github.com/{{ site.github_username| cgi_escape | escape }}"><span class="username">{{ site.github_username| escape }}</span></a></li>{%- endif -%}
6
+ {%- if site.instagram_username -%}<li>Instagram @<a href="https://instagram.com/{{ site.instagram_username| cgi_escape | escape }}"><span class="username">{{ site.instagram_username| escape }}</span></a></li>{%- endif -%}
7
+ {%- if site.linkedin_username -%}<li>Linkedin @<a href="https://www.linkedin.com/in/{{ site.linkedin_username| cgi_escape | escape }}"><span class="username">{{ site.linkedin_username| escape }}</span></a></li>{%- endif -%}
8
+ {%- if site.pinterest_username -%}<li>Pinterst @<a href="https://www.pinterest.com/{{ site.pinterest_username| cgi_escape | escape }}"><span class="username">{{ site.pinterest_username| escape }}</span></a></li>{%- endif -%}
9
+ {%- for mst in site.mastodon -%}{%- if mst.username and mst.instance -%}<li>Mastodon @<a href="https://{{ mst.instance| cgi_escape | escape}}/@{{mst.username}}"><span class="username">{{ mst.username|escape }}</span></a></li>{%- endif -%}{%- endfor -%}
10
+ {%- if site.twitter_username -%}<li>Twitter @<a href="https://www.twitter.com/{{ site.twitter_username| cgi_escape | escape }}"><span class="username">{{ site.twitter_username| escape }}</span></a></li>{%- endif -%}
11
+ {%- if site.youtube_username -%}<li>YouTube @<a href="https://youtube.com/{{ site.youtube_username| cgi_escape | escape }}"><span class="username">{{ site.youtube_username| escape }}</span></a></li>{%- endif -%}
12
+ {%- if site.googleplus_username -%}<li>Google Plus @<a href="https://plus.google.com/{{ site.googleplus_username| escape }}"><span class="username">{{ site.googleplus_username| escape }}</span></a></li>{%- endif -%}
13
+ {%- if site.rss -%}<li>Subscribe <a href="{{ 'feed.xml' | relative_url }}"><span>{{ site.rss | escape }}</span></a></li>{%- endif -%}
14
+ </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>
@@ -0,0 +1,32 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="home">
6
+ {%- if page.title -%}
7
+ <h1 class="page-heading">{{ page.title }}</h1>
8
+ {%- endif -%}
9
+
10
+ {{ content }}
11
+
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
+ <a class="post-link" href="{{ post.url | relative_url }}">
19
+ {{ post.title | escape }}
20
+ </a>
21
+ <span class="post-meta">{{ post.date | date: date_format }}</span>
22
+ {%- if site.show_excerpts -%}
23
+ {{ post.excerpt }}
24
+ {%- endif -%}
25
+ </li>
26
+ {%- endfor -%}
27
+ </ul>
28
+
29
+ <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
30
+ {%- endif -%}
31
+
32
+ </div>