jekyll-theme-woforo 0.1.3 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (179) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +690 -0
  3. data/{LICENSE → LICENSE.txt} +5 -5
  4. data/README.md +128 -19
  5. data/_includes/analytics-providers/custom.html +3 -0
  6. data/_includes/analytics-providers/google-universal.html +9 -0
  7. data/_includes/analytics-providers/google.html +11 -0
  8. data/_includes/analytics.html +12 -0
  9. data/_includes/archive-single.html +38 -0
  10. data/_includes/author-profile-custom-links.html +7 -0
  11. data/_includes/author-profile.html +241 -0
  12. data/_includes/base_path +5 -0
  13. data/_includes/breadcrumbs.html +39 -0
  14. data/_includes/browser-upgrade.html +3 -0
  15. data/_includes/category-list.html +26 -0
  16. data/_includes/comment.html +22 -0
  17. data/_includes/comments-providers/custom.html +3 -0
  18. data/_includes/comments-providers/discourse.html +13 -0
  19. data/_includes/comments-providers/disqus.html +22 -0
  20. data/_includes/comments-providers/facebook.html +8 -0
  21. data/_includes/comments-providers/google-plus.html +2 -0
  22. data/_includes/comments-providers/scripts.html +18 -0
  23. data/_includes/comments-providers/staticman.html +42 -0
  24. data/_includes/comments.html +80 -0
  25. data/_includes/feature_row +50 -0
  26. data/_includes/figure +12 -0
  27. data/_includes/footer.html +22 -0
  28. data/_includes/footer/custom.html +3 -0
  29. data/_includes/gallery +47 -0
  30. data/_includes/group-by-array +47 -0
  31. data/_includes/head.html +19 -9
  32. data/_includes/head/custom.html +5 -0
  33. data/_includes/masthead.html +21 -0
  34. data/_includes/nav_list +47 -0
  35. data/_includes/page__hero.html +53 -0
  36. data/_includes/page__taxonomy.html +7 -0
  37. data/_includes/paginator.html +68 -0
  38. data/_includes/post_pagination.html +14 -0
  39. data/_includes/read-time.html +15 -0
  40. data/_includes/scripts.html +4 -0
  41. data/_includes/seo.html +145 -0
  42. data/_includes/sidebar.html +23 -0
  43. data/_includes/social-share.html +13 -0
  44. data/_includes/tag-list.html +26 -0
  45. data/_includes/toc +7 -0
  46. data/_layouts/archive-taxonomy.html +15 -0
  47. data/_layouts/archive.html +24 -0
  48. data/_layouts/compress.html +10 -0
  49. data/_layouts/default.html +25 -5
  50. data/_layouts/home.html +11 -0
  51. data/_layouts/single.html +74 -0
  52. data/_layouts/splash.html +20 -0
  53. data/_sass/_animations.scss +21 -0
  54. data/_sass/_archive.scss +238 -0
  55. data/_sass/_base.scss +315 -0
  56. data/_sass/_buttons.scss +153 -0
  57. data/_sass/_footer.scss +80 -0
  58. data/_sass/_forms.scss +391 -0
  59. data/_sass/_masthead.scss +53 -0
  60. data/_sass/_mixins.scss +53 -0
  61. data/_sass/_navigation.scss +544 -0
  62. data/_sass/_notices.scss +99 -0
  63. data/_sass/_page.scss +401 -0
  64. data/_sass/_print.scss +18 -0
  65. data/_sass/_reset.scss +187 -0
  66. data/_sass/_sidebar.scss +231 -0
  67. data/_sass/_syntax.scss +146 -0
  68. data/_sass/_tables.scss +38 -0
  69. data/_sass/_utilities.scss +470 -0
  70. data/_sass/_variables.scss +128 -0
  71. data/_sass/vendor/breakpoint/_breakpoint.scss +114 -0
  72. data/_sass/vendor/breakpoint/_context.scss +95 -0
  73. data/_sass/vendor/breakpoint/_helpers.scss +151 -0
  74. data/_sass/vendor/breakpoint/_legacy-settings.scss +50 -0
  75. data/_sass/vendor/breakpoint/_no-query.scss +15 -0
  76. data/_sass/vendor/breakpoint/_parsers.scss +215 -0
  77. data/_sass/vendor/breakpoint/_respond-to.scss +82 -0
  78. data/_sass/vendor/breakpoint/_settings.scss +71 -0
  79. data/_sass/vendor/breakpoint/parsers/_double.scss +33 -0
  80. data/_sass/vendor/breakpoint/parsers/_query.scss +82 -0
  81. data/_sass/vendor/breakpoint/parsers/_resolution.scss +31 -0
  82. data/_sass/vendor/breakpoint/parsers/_single.scss +26 -0
  83. data/_sass/vendor/breakpoint/parsers/_triple.scss +36 -0
  84. data/_sass/vendor/breakpoint/parsers/double/_default-pair.scss +21 -0
  85. data/_sass/vendor/breakpoint/parsers/double/_default.scss +22 -0
  86. data/_sass/vendor/breakpoint/parsers/double/_double-string.scss +22 -0
  87. data/_sass/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -0
  88. data/_sass/vendor/breakpoint/parsers/single/_default.scss +13 -0
  89. data/_sass/vendor/breakpoint/parsers/triple/_default.scss +18 -0
  90. data/_sass/vendor/font-awesome/_animated.scss +34 -0
  91. data/_sass/vendor/font-awesome/_bordered-pulled.scss +25 -0
  92. data/_sass/vendor/font-awesome/_core.scss +12 -0
  93. data/_sass/vendor/font-awesome/_fixed-width.scss +6 -0
  94. data/_sass/vendor/font-awesome/_font-awesome.scss +18 -0
  95. data/_sass/vendor/font-awesome/_icons.scss +789 -0
  96. data/_sass/vendor/font-awesome/_larger.scss +13 -0
  97. data/_sass/vendor/font-awesome/_list.scss +19 -0
  98. data/_sass/vendor/font-awesome/_mixins.scss +60 -0
  99. data/_sass/vendor/font-awesome/_path.scss +15 -0
  100. data/_sass/vendor/font-awesome/_rotated-flipped.scss +20 -0
  101. data/_sass/vendor/font-awesome/_screen-reader.scss +5 -0
  102. data/_sass/vendor/font-awesome/_stacked.scss +20 -0
  103. data/_sass/vendor/font-awesome/_variables.scss +800 -0
  104. data/_sass/vendor/magnific-popup/_magnific-popup.scss +649 -0
  105. data/_sass/vendor/magnific-popup/_settings.scss +46 -0
  106. data/_sass/vendor/susy/_su.scss +4 -0
  107. data/_sass/vendor/susy/_susy.scss +4 -0
  108. data/_sass/vendor/susy/_susyone.scss +4 -0
  109. data/_sass/vendor/susy/susy/_su.scss +7 -0
  110. data/_sass/vendor/susy/susy/language/_susy.scss +24 -0
  111. data/_sass/vendor/susy/susy/language/_susyone.scss +13 -0
  112. data/_sass/vendor/susy/susy/language/susy/_background.scss +385 -0
  113. data/_sass/vendor/susy/susy/language/susy/_bleed.scss +200 -0
  114. data/_sass/vendor/susy/susy/language/susy/_box-sizing.scss +47 -0
  115. data/_sass/vendor/susy/susy/language/susy/_breakpoint-plugin.scss +185 -0
  116. data/_sass/vendor/susy/susy/language/susy/_container.scss +81 -0
  117. data/_sass/vendor/susy/susy/language/susy/_context.scss +36 -0
  118. data/_sass/vendor/susy/susy/language/susy/_gallery.scss +94 -0
  119. data/_sass/vendor/susy/susy/language/susy/_grids.scss +64 -0
  120. data/_sass/vendor/susy/susy/language/susy/_gutters.scss +154 -0
  121. data/_sass/vendor/susy/susy/language/susy/_isolate.scss +77 -0
  122. data/_sass/vendor/susy/susy/language/susy/_margins.scss +94 -0
  123. data/_sass/vendor/susy/susy/language/susy/_padding.scss +74 -0
  124. data/_sass/vendor/susy/susy/language/susy/_rows.scss +138 -0
  125. data/_sass/vendor/susy/susy/language/susy/_settings.scss +216 -0
  126. data/_sass/vendor/susy/susy/language/susy/_span.scss +163 -0
  127. data/_sass/vendor/susy/susy/language/susy/_validation.scss +16 -0
  128. data/_sass/vendor/susy/susy/language/susyone/_background.scss +18 -0
  129. data/_sass/vendor/susy/susy/language/susyone/_functions.scss +377 -0
  130. data/_sass/vendor/susy/susy/language/susyone/_grid.scss +312 -0
  131. data/_sass/vendor/susy/susy/language/susyone/_isolation.scss +51 -0
  132. data/_sass/vendor/susy/susy/language/susyone/_margin.scss +93 -0
  133. data/_sass/vendor/susy/susy/language/susyone/_media.scss +105 -0
  134. data/_sass/vendor/susy/susy/language/susyone/_padding.scss +92 -0
  135. data/_sass/vendor/susy/susy/language/susyone/_settings.scss +60 -0
  136. data/_sass/vendor/susy/susy/output/_float.scss +9 -0
  137. data/_sass/vendor/susy/susy/output/_shared.scss +15 -0
  138. data/_sass/vendor/susy/susy/output/_support.scss +9 -0
  139. data/_sass/vendor/susy/susy/output/float/_container.scss +16 -0
  140. data/_sass/vendor/susy/susy/output/float/_end.scss +40 -0
  141. data/_sass/vendor/susy/susy/output/float/_isolate.scss +22 -0
  142. data/_sass/vendor/susy/susy/output/float/_span.scss +35 -0
  143. data/_sass/vendor/susy/susy/output/shared/_background.scss +26 -0
  144. data/_sass/vendor/susy/susy/output/shared/_container.scss +21 -0
  145. data/_sass/vendor/susy/susy/output/shared/_direction.scss +42 -0
  146. data/_sass/vendor/susy/susy/output/shared/_inspect.scss +25 -0
  147. data/_sass/vendor/susy/susy/output/shared/_margins.scss +23 -0
  148. data/_sass/vendor/susy/susy/output/shared/_output.scss +14 -0
  149. data/_sass/vendor/susy/susy/output/shared/_padding.scss +23 -0
  150. data/_sass/vendor/susy/susy/output/support/_background.scss +58 -0
  151. data/_sass/vendor/susy/susy/output/support/_box-sizing.scss +19 -0
  152. data/_sass/vendor/susy/susy/output/support/_clearfix.scss +18 -0
  153. data/_sass/vendor/susy/susy/output/support/_prefix.scss +19 -0
  154. data/_sass/vendor/susy/susy/output/support/_rem.scss +22 -0
  155. data/_sass/vendor/susy/susy/output/support/_support.scss +85 -0
  156. data/_sass/vendor/susy/susy/su/_grid.scss +103 -0
  157. data/_sass/vendor/susy/susy/su/_settings.scss +73 -0
  158. data/_sass/vendor/susy/susy/su/_utilities.scss +111 -0
  159. data/_sass/vendor/susy/susy/su/_validation.scss +57 -0
  160. data/assets/css/main.scss +79 -0
  161. data/assets/fonts/FontAwesome.otf +0 -0
  162. data/assets/fonts/fontawesome-webfont.eot +0 -0
  163. data/assets/fonts/fontawesome-webfont.svg +2671 -0
  164. data/assets/fonts/fontawesome-webfont.ttf +0 -0
  165. data/assets/fonts/fontawesome-webfont.woff +0 -0
  166. data/assets/fonts/fontawesome-webfont.woff2 +0 -0
  167. data/assets/js/_main.js +100 -0
  168. data/assets/js/main.min.js +5 -0
  169. data/assets/js/plugins/jquery.fitvids.js +82 -0
  170. data/assets/js/plugins/jquery.greedy-navigation.js +72 -0
  171. data/assets/js/plugins/jquery.magnific-popup.js +2049 -0
  172. data/assets/js/plugins/jquery.smooth-scroll.min.js +8 -0
  173. data/assets/js/plugins/stickyfill.min.js +8 -0
  174. data/assets/js/vendor/jquery/jquery-1.12.4.min.js +5 -0
  175. metadata +243 -16
  176. data/_includes/header.html +0 -0
  177. data/_layouts/page.html +0 -5
  178. data/_layouts/post.html +0 -9
  179. data/_sass/woforo.scss +0 -24
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016 WoFoRo Community
3
+ Copyright (c) 2016 Michael Rose
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
@@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
9
  copies of the Software, and to permit persons to whom the Software is
10
10
  furnished to do so, subject to the following conditions:
11
11
 
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
14
 
15
15
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
16
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
17
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
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.
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,48 +1,157 @@
1
- # jekyll-theme-woforo
1
+ # [Minimal Mistakes Jekyll Theme](https://mmistakes.github.io/minimal-mistakes/)
2
2
 
3
- Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
3
+ [![GitHub release](https://img.shields.io/gem/v/minimal-mistakes-jekyll.svg)](https://github.com/mmistakes/minimal-mistakes/releases) [![GitHub license](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://raw.githubusercontent.com/mmistakes/minimal-mistakes/master/LICENSE)
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ Minimal Mistakes is a flexible two-column Jekyll theme. Perfect for hosting your personal site, blog, or portfolio on GitHub or self-hosting on your own server. As the name implies --- styling is purposely minimalistic to be enhanced and customized by you :smile:.
6
6
 
7
- ## Installation
7
+ See what's new in the [CHANGELOG](CHANGELOG.md).
8
8
 
9
- Add this line to your Jekyll site's Gemfile:
9
+ :sparkles: Minimal Mistakes is now available as a [Ruby gem](https://rubygems.org/gems/minimal-mistakes-jekyll). Consult the [Quick-Start Guide](https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/) and [this blog post](https://mmistakes.github.io/minimal-mistakes/jekyll/gemified-theme-beta/) to learn how to upgrade.
10
+
11
+ [![Minimal Mistakes live preview][2]][1]
12
+
13
+ [1]: https://mmistakes.github.io/minimal-mistakes/
14
+ [2]: screenshot.png (live preview)
15
+
16
+ ![layout examples](screenshot-layouts.png)
17
+
18
+ ## Notable Features
19
+
20
+ - "Gemified" for easier install/upgrading
21
+ - Compatible with Jekyll 3.x and GitHub Pages
22
+ - Support for Jekyll's built-in Sass/SCSS preprocessor
23
+ - Several responsive layout options (single, archive index, splash, and paginated home page)
24
+ - SEO optimized with support for [Twitter Cards](https://dev.twitter.com/cards/overview) and [Open Graph](http://ogp.me/) data
25
+ - Optional [header images](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#headers), [custom sidebars](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#sidebars), [table of contents](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#table-of-contents), [galleries](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#gallery), related posts, [breadcrumb links](https://mmistakes.github.io/minimal-mistakes/docs/configuration/#breadcrumb-navigation-beta), [navigation lists](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#navigation-list), and more.
26
+ - Commenting support (powered by [Disqus](https://disqus.com/), [Facebook](https://developers.facebook.com/docs/plugins/comments), Google+, [Discourse](https://www.discourse.org/), static-based via [Staticman](https://staticman.net/), and custom).
27
+ - [Google Analytics](https://www.google.com/analytics/) support.
28
+ - UI localized text in English (default), Brazilian Portuguese, Chinese, French, German, Italian, Spanish, and Turkish
29
+
30
+ ## Demo Pages
31
+
32
+ | Name | Description |
33
+ | ------------------------------------------- | ----------------------------------------------------- |
34
+ | [Post with Header Image][header-image-post] | A post with a large header image. |
35
+ | [HTML Tags and Formatting Post][html-tags-post] | A variety of common markup showing how the theme styles them. |
36
+ | [Syntax Highlighting Post][syntax-post] | Post displaying highlighted code. |
37
+ | [Post with a Gallery][gallery-post] | A post showing several images wrapped in `<figure>` elements. |
38
+ | [Sample Collection Page][sample-collection] | Single page from a collection. |
39
+ | [Categories Archive][categories-archive] | Posts grouped by category. |
40
+ | [Tags Archive][tags-archive] | Posts grouped by tags. |
41
+
42
+ Additional sample posts are available under [posts archive][year-archive] on the demo site. Source files for these (and the entire demo site) can be found in [`/docs`](docs).
43
+
44
+ [header-image-post]: https://mmistakes.github.io/minimal-mistakes/layout-header-image-text-readability/
45
+ [gallery-post]: https://mmistakes.github.io/minimal-mistakes/post%20formats/post-gallery/
46
+ [html-tags-post]: https://mmistakes.github.io/minimal-mistakes/markup/markup-html-tags-and-formatting/
47
+ [syntax-post]: https://mmistakes.github.io/minimal-mistakes/markup-syntax-highlighting/
48
+ [sample-collection]: https://mmistakes.github.io/minimal-mistakes/recipes/chocolate-chip-cookies/
49
+ [categories-archive]: https://mmistakes.github.io/minimal-mistakes/categories/
50
+ [tags-archive]: https://mmistakes.github.io/minimal-mistakes/tags/
51
+ [year-archive]: https://mmistakes.github.io/minimal-mistakes/year-archive/
52
+
53
+ ## Usage
54
+
55
+ For detailed instructions on how to configure, customize, add content, and more read the [theme's documentation](https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/).
56
+
57
+ **Note:** Gem version of the theme requires Jekyll v3.3+ and is not currently supported on [GitHub Pages](https://pages.github.com/). You can still use the theme with GitHub Pages, you'll just need to install using the old "[repo fork method](https://mmistakes.github.io/minimal-mistakes/docs/installation/)".
58
+
59
+ ## Quick Start
60
+
61
+ Add this line to your Jekyll site's `Gemfile`:
10
62
 
11
63
  ```ruby
12
- gem "jekyll-theme-woforo"
64
+ gem "minimal-mistakes-jekyll"
13
65
  ```
14
66
 
15
- And add this line to your Jekyll site's `_config.yml`:
67
+ Add this line to your Jekyll site's `_config.yml` file:
16
68
 
17
69
  ```yaml
18
- theme: jekyll-theme-woforo
70
+ theme: minimal-mistakes-jekyll
19
71
  ```
20
72
 
21
- And then execute:
73
+ Then run Bundler to install the theme gem and dependencies:
22
74
 
23
- $ bundle
75
+ ```bash
76
+ bundle install
77
+ ```
24
78
 
25
- Or install it yourself as:
79
+ To update the theme run `bundle update`.
26
80
 
27
- $ gem install jekyll-theme-woforo
81
+ ---
28
82
 
29
- ## Usage
83
+ ## Contributing
30
84
 
31
- TODO: Write usage instructions here. Describe your available layouts, includes, and/or sass.
85
+ Having trouble working with the theme? Found a typo in the documentation? Interested in adding a feature or [fixing a bug](https://github.com/mmistakes/minimal-mistakes/issues)? Then by all means [submit an issue](https://github.com/mmistakes/minimal-mistakes/issues/new) or [pull request](https://help.github.com/articles/using-pull-requests/). If this is your first pull request, it may be helpful to read up on the [GitHub Flow](https://guides.github.com/introduction/flow/) first.
32
86
 
33
- ## Contributing
87
+ Minimal Mistakes has been designed as a base for you to customize and fit your site's unique needs. Please keep this in mind when requesting features and/or submitting pull requests. If it's not something that most people will use, I probably won't consider it. When in doubt ask.
88
+
89
+ This goes for author sidebar links and "share button" additions -- I have no intention of merging in every possibly option, the essentials are there to get you started :smile:.
90
+
91
+ ### Pull Requests
92
+
93
+ To help me out try to avoid creating pull requests on `master` and instead branch off of `develop`. It's much easier for me to test, merge, and roll them into new releases this way.
34
94
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. 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.
95
+ Theme documentation and demo pages can be found in the [`/docs`](docs) if submitting improvements, typo corrections, etc.
36
96
 
37
97
  ## Development
38
98
 
39
99
  To set up your environment to develop this theme, run `bundle install`.
40
100
 
41
- Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
101
+ To test the theme, run `bundle exec rake preview` and open your browser at `http://localhost:4000/test/`. This starts a Jekyll server using your theme and the contents of the `test/` directory. As you make modifications to your theme and to the example site, your site will regenerate and you should see the changes in the browser after a refresh.
102
+
103
+ ---
104
+
105
+ ## Credits
106
+
107
+ ### Creator
108
+
109
+ **Michael Rose**
42
110
 
43
- When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
111
+ - <https://mademistakes.com>
112
+ - <https://twitter.com/mmistakes>
113
+ - <https://github.com/mmistakes>
114
+
115
+ ### Icons + Demo Images:
116
+
117
+ - [The Noun Project](https://thenounproject.com) -- Garrett Knoll, Arthur Shlain, and [tracy tam](https://thenounproject.com/tracytam)
118
+ - [Font Awesome](http://fortawesome.github.io/Font-Awesome/)
119
+ - [Unsplash](https://unsplash.com/)
120
+
121
+ ### Other:
122
+
123
+ - [Jekyll](http://jekyllrb.com/)
124
+ - [jQuery](http://jquery.com/)
125
+ - [Susy](http://susy.oddbird.net/)
126
+ - [Breakpoint](http://breakpoint-sass.com/)
127
+ - [Magnific Popup](http://dimsemenov.com/plugins/magnific-popup/)
128
+ - [FitVids.JS](http://fitvidsjs.com/)
129
+ - Greedy Navigation - [lukejacksonn](http://codepen.io/lukejacksonn/pen/PwmwWV)
130
+ - [jQuery Smooth Scroll](https://github.com/kswedberg/jquery-smooth-scroll)
131
+ - [Stickyfill](https://github.com/wilddeer/stickyfill)
132
+
133
+ ---
44
134
 
45
135
  ## License
46
136
 
47
- The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
137
+ The MIT License (MIT)
138
+
139
+ Copyright (c) 2016 Michael Rose
140
+
141
+ Permission is hereby granted, free of charge, to any person obtaining a copy
142
+ of this software and associated documentation files (the "Software"), to deal
143
+ in the Software without restriction, including without limitation the rights
144
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
145
+ copies of the Software, and to permit persons to whom the Software is
146
+ furnished to do so, subject to the following conditions:
147
+
148
+ The above copyright notice and this permission notice shall be included in all
149
+ copies or substantial portions of the Software.
48
150
 
151
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
152
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
153
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
154
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
155
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
156
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
157
+ SOFTWARE.
@@ -0,0 +1,3 @@
1
+ <!-- start custom analytics snippet -->
2
+
3
+ <!-- end custom analytics snippet -->
@@ -0,0 +1,9 @@
1
+ <script>
2
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
3
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
4
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
5
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
6
+
7
+ ga('create', '{{ site.analytics.google.tracking_id }}', 'auto');
8
+ ga('send', 'pageview');
9
+ </script>
@@ -0,0 +1,11 @@
1
+ <script type="text/javascript">
2
+ var _gaq = _gaq || [];
3
+ _gaq.push(['_setAccount', '{{ site.analytics.google.tracking_id }}']);
4
+ _gaq.push(['_trackPageview']);
5
+
6
+ (function() {
7
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
8
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
9
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
10
+ })();
11
+ </script>
@@ -0,0 +1,12 @@
1
+ {% if site.analytics.provider and page.analytics != false %}
2
+
3
+ {% case site.analytics.provider %}
4
+ {% when "google" %}
5
+ {% include /analytics-providers/google.html %}
6
+ {% when "google-universal" %}
7
+ {% include /analytics-providers/google-universal.html %}
8
+ {% when "custom" %}
9
+ {% include /analytics-providers/custom.html %}
10
+ {% endcase %}
11
+
12
+ {% endif %}
@@ -0,0 +1,38 @@
1
+ {% if post.header.teaser %}
2
+ {% capture teaser %}{{ post.header.teaser }}{% endcapture %}
3
+ {% else %}
4
+ {% assign teaser = site.teaser %}
5
+ {% endif %}
6
+
7
+ {% if post.id %}
8
+ {% assign title = post.title | markdownify | remove: "<p>" | remove: "</p>" %}
9
+ {% else %}
10
+ {% assign title = post.title %}
11
+ {% endif %}
12
+
13
+ <div class="{{ include.type | default: "list" }}__item">
14
+ <article class="archive__item" itemscope itemtype="http://schema.org/CreativeWork">
15
+ {% if include.type == "grid" and teaser %}
16
+ <div class="archive__item-teaser">
17
+ <img src=
18
+ {% if teaser contains "://" %}
19
+ "{{ teaser }}"
20
+ {% else %}
21
+ "{{ teaser | absolute_url }}"
22
+ {% endif %}
23
+ alt="">
24
+ </div>
25
+ {% endif %}
26
+ <h2 class="archive__item-title" itemprop="headline">
27
+ {% if post.link %}
28
+ <a href="{{ post.link }}">{{ title }}</a> <a href="{{ post.url | absolute_url }}" rel="permalink"><i class="fa fa-link" aria-hidden="true" title="permalink"></i><span class="sr-only">Permalink</span></a>
29
+ {% else %}
30
+ <a href="{{ post.url | absolute_url }}" rel="permalink">{{ title }}</a>
31
+ {% endif %}
32
+ </h2>
33
+ {% if post.read_time %}
34
+ <p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>
35
+ {% endif %}
36
+ {% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
37
+ </article>
38
+ </div>
@@ -0,0 +1,7 @@
1
+ <!--
2
+ <li>
3
+ <a href="http://link-to-whatever-social-network.com/user/" itemprop="sameAs">
4
+ <i class="fa fa-fw" aria-hidden="true"></i> Custom Social Profile Link
5
+ </a>
6
+ </li>
7
+ -->
@@ -0,0 +1,241 @@
1
+ {% if page.author and site.data.authors[page.author] %}
2
+ {% assign author = site.data.authors[page.author] %}
3
+ {% else %}
4
+ {% assign author = site.author %}
5
+ {% endif %}
6
+
7
+ <div itemscope itemtype="http://schema.org/Person">
8
+
9
+ {% if author.avatar %}
10
+ <div class="author__avatar">
11
+ {% if author.avatar contains "://" %}
12
+ <img src="{{ author.avatar }}" alt="{{ author.name }}" itemprop="image">
13
+ {% else %}
14
+ <img src="{{ author.avatar | absolute_url }}" class="author__avatar" alt="{{ author.name }}" itemprop="image">
15
+ {% endif %}
16
+ </div>
17
+ {% endif %}
18
+
19
+ <div class="author__content">
20
+ <h3 class="author__name" itemprop="name">{{ author.name }}</h3>
21
+ {% if author.bio %}
22
+ <p class="author__bio" itemprop="description">
23
+ {{ author.bio }}
24
+ </p>
25
+ {% endif %}
26
+ </div>
27
+
28
+ <div class="author__urls-wrapper">
29
+ <button class="btn btn--inverse">{{ site.data.ui-text[site.locale].follow_label | remove: ":" | default: "Follow" }}</button>
30
+ <ul class="author__urls social-icons">
31
+ {% if author.location %}
32
+ <li itemprop="homeLocation" itemscope itemtype="http://schema.org/Place">
33
+ <i class="fa fa-fw fa-map-marker" aria-hidden="true"></i> <span itemprop="name">{{ author.location }}</span>
34
+ </li>
35
+ {% endif %}
36
+
37
+ {% if author.uri %}
38
+ <li>
39
+ <a href="{{ author.uri }}" itemprop="url">
40
+ <i class="fa fa-fw fa-chain" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].website_label | default: "Website" }}
41
+ </a>
42
+ </li>
43
+ {% endif %}
44
+
45
+ {% if author.email %}
46
+ <li>
47
+ <a href="mailto:{{ author.email }}">
48
+ <meta itemprop="email" content="{{ author.email }}" />
49
+ <i class="fa fa-fw fa-envelope-square" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].email_label | default: "Email" }}
50
+ </a>
51
+ </li>
52
+ {% endif %}
53
+
54
+ {% if author.keybase %}
55
+ <li>
56
+ <a href="https://keybase.io/{{ author.keybase }}" itemprop="sameAs">
57
+ <i class="fa fa-fw fa-key" aria-hidden="true"></i> Keybase
58
+ </a>
59
+ </li>
60
+ {% endif %}
61
+
62
+ {% if author.twitter %}
63
+ <li>
64
+ <a href="https://twitter.com/{{ author.twitter }}" itemprop="sameAs">
65
+ <i class="fa fa-fw fa-twitter-square" aria-hidden="true"></i> Twitter
66
+ </a>
67
+ </li>
68
+ {% endif %}
69
+
70
+ {% if author.facebook %}
71
+ <li>
72
+ <a href="https://www.facebook.com/{{ author.facebook }}" itemprop="sameAs">
73
+ <i class="fa fa-fw fa-facebook-square" aria-hidden="true"></i> Facebook
74
+ </a>
75
+ </li>
76
+ {% endif %}
77
+
78
+ {% if author.google_plus %}
79
+ <li>
80
+ <a href="https://plus.google.com/+{{ author.google_plus }}" itemprop="sameAs">
81
+ <i class="fa fa-fw fa-google-plus-square" aria-hidden="true"></i> Google+
82
+ </a>
83
+ </li>
84
+ {% endif %}
85
+
86
+ {% if author.linkedin %}
87
+ <li>
88
+ <a href="https://www.linkedin.com/in/{{ author.linkedin }}" itemprop="sameAs">
89
+ <i class="fa fa-fw fa-linkedin-square" aria-hidden="true"></i> LinkedIn
90
+ </a>
91
+ </li>
92
+ {% endif %}
93
+
94
+ {% if author.xing %}
95
+ <li>
96
+ <a href="https://www.xing.com/profile/{{ author.xing }}" itemprop="sameAs">
97
+ <i class="fa fa-fw fa-xing-square" aria-hidden="true"></i> XING
98
+ </a>
99
+ </li>
100
+ {% endif %}
101
+
102
+ {% if author.instagram %}
103
+ <li>
104
+ <a href="https://instagram.com/{{ author.instagram }}" itemprop="sameAs">
105
+ <i class="fa fa-fw fa-instagram" aria-hidden="true"></i> Instagram
106
+ </a>
107
+ </li>
108
+ {% endif %}
109
+
110
+ {% if author.tumblr %}
111
+ <li>
112
+ <a href="https://{{ author.tumblr }}.tumblr.com" itemprop="sameAs">
113
+ <i class="fa fa-fw fa-tumblr-square" aria-hidden="true"></i> Tumblr
114
+ </a>
115
+ </li>
116
+ {% endif %}
117
+
118
+ {% if author.bitbucket %}
119
+ <li>
120
+ <a href="https://bitbucket.org/{{ author.bitbucket }}" itemprop="sameAs">
121
+ <i class="fa fa-fw fa-bitbucket" aria-hidden="true"></i> Bitbucket
122
+ </a>
123
+ </li>
124
+ {% endif %}
125
+
126
+ {% if author.github %}
127
+ <li>
128
+ <a href="https://github.com/{{ author.github }}" itemprop="sameAs">
129
+ <i class="fa fa-fw fa-github" aria-hidden="true"></i> GitHub
130
+ </a>
131
+ </li>
132
+ {% endif %}
133
+
134
+ {% if author.stackoverflow %}
135
+ <li>
136
+ <a href="https://www.stackoverflow.com/users/{{ author.stackoverflow }}" itemprop="sameAs">
137
+ <i class="fa fa-fw fa-stack-overflow" aria-hidden="true"></i> Stackoverflow
138
+ </a>
139
+ </li>
140
+ {% endif %}
141
+
142
+ {% if author.lastfm %}
143
+ <li>
144
+ <a href="https://last.fm/user/{{ author.lastfm }}" itemprop="sameAs">
145
+ <i class="fa fa-fw fa-lastfm-square" aria-hidden="true"></i> Last.fm
146
+ </a>
147
+ </li>
148
+ {% endif %}
149
+
150
+ {% if author.dribbble %}
151
+ <li>
152
+ <a href="https://dribbble.com/{{ author.dribbble }}" itemprop="sameAs">
153
+ <i class="fa fa-fw fa-dribbble" aria-hidden="true"></i> Dribbble
154
+ </a>
155
+ </li>
156
+ {% endif %}
157
+
158
+ {% if author.pinterest %}
159
+ <li>
160
+ <a href="https://www.pinterest.com/{{ author.pinterest }}" itemprop="sameAs">
161
+ <i class="fa fa-fw fa-pinterest" aria-hidden="true"></i> Pinterest
162
+ </a>
163
+ </li>
164
+ {% endif %}
165
+
166
+ {% if author.foursquare %}
167
+ <li>
168
+ <a href="https://foursquare.com/{{ author.foursquare }}" itemprop="sameAs">
169
+ <i class="fa fa-fw fa-foursquare" aria-hidden="true"></i> Foursquare
170
+ </a>
171
+ </li>
172
+ {% endif %}
173
+
174
+ {% if author.steam %}
175
+ <li>
176
+ <a href="https://steamcommunity.com/id/{{ author.steam }}" itemprop="sameAs">
177
+ <i class="fa fa-fw fa-steam-square" aria-hidden="true"></i> Steam
178
+ </a>
179
+ </li>
180
+ {% endif %}
181
+
182
+ {% if author.youtube %}
183
+ {% if author.youtube contains "://" %}
184
+ <li>
185
+ <a href="{{ author.youtube }}" itemprop="sameAs">
186
+ <i class="fa fa-fw fa-youtube-square" aria-hidden="true"></i> YouTube
187
+ </a>
188
+ </li>
189
+ {% else author.youtube %}
190
+ <li>
191
+ <a href="https://www.youtube.com/user/{{ author.youtube }}" itemprop="sameAs">
192
+ <i class="fa fa-fw fa-youtube-square" aria-hidden="true"></i> YouTube
193
+ </a>
194
+ </li>
195
+ {% endif %}
196
+ {% endif %}
197
+
198
+ {% if author.soundcloud %}
199
+ <li>
200
+ <a href="https://soundcloud.com/{{ author.soundcloud }}" itemprop="sameAs">
201
+ <i class="fa fa-fw fa-soundcloud" aria-hidden="true"></i> Soundcloud
202
+ </a>
203
+ </li>
204
+ {% endif %}
205
+
206
+ {% if author.weibo %}
207
+ <li>
208
+ <a href="https://www.weibo.com/{{ author.weibo }}" itemprop="sameAs">
209
+ <i class="fa fa-fw fa-weibo" aria-hidden="true"></i> Weibo
210
+ </a>
211
+ </li>
212
+ {% endif %}
213
+
214
+ {% if author.flickr %}
215
+ <li>
216
+ <a href="https://www.flickr.com/{{ author.flickr }}" itemprop="sameAs">
217
+ <i class="fa fa-fw fa-flickr" aria-hidden="true"></i> Flickr
218
+ </a>
219
+ </li>
220
+ {% endif %}
221
+
222
+ {% if author.codepen %}
223
+ <li>
224
+ <a href="https://codepen.io/{{ author.codepen }}" itemprop="sameAs">
225
+ <i class="fa fa-fw fa-codepen" aria-hidden="true"></i> CodePen
226
+ </a>
227
+ </li>
228
+ {% endif %}
229
+
230
+ {% if author.vine %}
231
+ <li>
232
+ <a href="https://vine.co/u/{{ author.vine }}" itemprop="sameAs">
233
+ <i class="fa fa-fw fa-vine" aria-hidden="true"></i> Vine
234
+ </a>
235
+ </li>
236
+ {% endif %}
237
+
238
+ {% include author-profile-custom-links.html %}
239
+ </ul>
240
+ </div>
241
+ </div>