jekyll-theme-basically-basic 1.3.1 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +18 -0
  3. data/README.md +150 -42
  4. data/_includes/author +30 -30
  5. data/_includes/contact-list.html +27 -27
  6. data/_includes/cv/awards.html +23 -23
  7. data/_includes/cv/basics.html +68 -68
  8. data/_includes/cv/education.html +36 -36
  9. data/_includes/cv/interests.html +19 -19
  10. data/_includes/cv/intro.html +18 -18
  11. data/_includes/cv/languages.html +19 -19
  12. data/_includes/cv/publications.html +29 -29
  13. data/_includes/cv/references.html +23 -23
  14. data/_includes/cv/volunteer.html +46 -46
  15. data/_includes/cv/work.html +46 -46
  16. data/_includes/disqus_comments.html +16 -16
  17. data/_includes/documents-collection.html +19 -0
  18. data/_includes/entry.html +37 -29
  19. data/_includes/footer.html +11 -9
  20. data/_includes/google-analytics.html +8 -8
  21. data/_includes/head.html +35 -35
  22. data/_includes/icon-bitbucket.html +4 -4
  23. data/_includes/icon-codepen.html +4 -4
  24. data/_includes/icon-dribbble.html +4 -4
  25. data/_includes/icon-facebook.html +4 -4
  26. data/_includes/icon-flickr.html +4 -4
  27. data/_includes/icon-github.html +4 -4
  28. data/_includes/icon-gitlab.html +4 -4
  29. data/_includes/icon-googleplus.html +4 -4
  30. data/_includes/icon-instagram.html +4 -4
  31. data/_includes/icon-lastfm.html +4 -4
  32. data/_includes/icon-linkedin.html +4 -4
  33. data/_includes/icon-pinterest.html +4 -4
  34. data/_includes/icon-soundcloud.html +4 -4
  35. data/_includes/icon-stackoverflow.html +4 -4
  36. data/_includes/icon-tumblr.html +4 -4
  37. data/_includes/icon-twitter.html +4 -4
  38. data/_includes/icon-xing.html +4 -4
  39. data/_includes/icon-youtube.html +4 -4
  40. data/_includes/masthead.html +27 -27
  41. data/_includes/navigation.html +25 -25
  42. data/_includes/page-intro.html +42 -42
  43. data/_includes/page-tags.html +14 -0
  44. data/_includes/posts-all.html +2 -2
  45. data/_includes/posts-category.html +3 -0
  46. data/_includes/posts-paginated.html +15 -15
  47. data/_includes/posts-tag.html +3 -0
  48. data/_includes/read-time.html +13 -13
  49. data/_includes/search-form.html +14 -13
  50. data/_includes/search/algolia-search-scripts.html +52 -52
  51. data/_includes/search/lunr-search-scripts.html +1 -1
  52. data/_includes/skip-links.html +8 -8
  53. data/_layouts/about.html +0 -2
  54. data/_layouts/categories.html +48 -0
  55. data/_layouts/category.html +9 -0
  56. data/_layouts/collection.html +9 -0
  57. data/_layouts/cv.html +28 -28
  58. data/_layouts/default.html +2 -1
  59. data/_layouts/home.html +28 -30
  60. data/_layouts/page.html +15 -17
  61. data/_layouts/post.html +18 -20
  62. data/_layouts/posts.html +29 -0
  63. data/_layouts/tag.html +9 -0
  64. data/_layouts/tags.html +48 -0
  65. data/_sass/basically-basic.scss +1 -1
  66. data/_sass/basically-basic/_base.scss +116 -118
  67. data/_sass/basically-basic/_contact-lists.scss +11 -11
  68. data/_sass/basically-basic/_entries.scss +230 -152
  69. data/_sass/basically-basic/_footer.scss +37 -13
  70. data/_sass/basically-basic/_functions.scss +2 -2
  71. data/_sass/basically-basic/_global.scss +116 -42
  72. data/_sass/basically-basic/_icons.scss +43 -43
  73. data/_sass/basically-basic/_intro.scss +3 -1
  74. data/_sass/basically-basic/_layout.scss +188 -188
  75. data/_sass/basically-basic/_mixins.scss +5 -5
  76. data/_sass/basically-basic/_navicons.scss +148 -148
  77. data/_sass/basically-basic/_navigation.scss +66 -66
  78. data/_sass/basically-basic/_print.scss +252 -252
  79. data/_sass/basically-basic/_reset.scss +522 -522
  80. data/_sass/basically-basic/_responsive-embed.scss +70 -70
  81. data/_sass/basically-basic/_search.scss +101 -101
  82. data/_sass/basically-basic/_sidebar.scss +166 -166
  83. data/_sass/basically-basic/_tables.scss +34 -34
  84. data/_sass/basically-basic/_utilities.scss +6 -6
  85. data/_sass/basically-basic/_variables.scss +3 -0
  86. data/_sass/basically-basic/functions/_color.scss +21 -21
  87. data/_sass/basically-basic/functions/_fluid-type.scss +33 -33
  88. data/_sass/basically-basic/mixins/_clearfix.scss +11 -11
  89. data/_sass/basically-basic/mixins/_float.scss +15 -15
  90. data/_sass/basically-basic/mixins/_image.scss +38 -38
  91. data/_sass/basically-basic/mixins/_lists.scss +9 -9
  92. data/_sass/basically-basic/mixins/_text-truncate.scss +10 -10
  93. data/_sass/basically-basic/themes/_default.scss +5 -5
  94. data/_sass/basically-basic/themes/_night.scss +12 -12
  95. data/_sass/basically-basic/themes/_plum.scss +12 -12
  96. data/_sass/basically-basic/themes/_sea.scss +12 -12
  97. data/_sass/basically-basic/utilities/_accessibility.scss +43 -43
  98. data/_sass/basically-basic/utilities/_align.scss +62 -62
  99. data/_sass/basically-basic/utilities/_clearfix.scss +7 -7
  100. data/_sass/basically-basic/utilities/_float.scss +7 -7
  101. data/_sass/basically-basic/utilities/_text.scss +28 -28
  102. data/_sass/basically-basic/utilities/_visibility.scss +32 -32
  103. data/_sass/basically-basic/vendor/breakpoint/_breakpoint.scss +114 -114
  104. data/_sass/basically-basic/vendor/breakpoint/_context.scss +94 -94
  105. data/_sass/basically-basic/vendor/breakpoint/_helpers.scss +151 -151
  106. data/_sass/basically-basic/vendor/breakpoint/_legacy-settings.scss +49 -49
  107. data/_sass/basically-basic/vendor/breakpoint/_no-query.scss +15 -15
  108. data/_sass/basically-basic/vendor/breakpoint/_parsers.scss +215 -215
  109. data/_sass/basically-basic/vendor/breakpoint/_respond-to.scss +82 -82
  110. data/_sass/basically-basic/vendor/breakpoint/_settings.scss +70 -70
  111. data/_sass/basically-basic/vendor/breakpoint/parsers/_double.scss +33 -33
  112. data/_sass/basically-basic/vendor/breakpoint/parsers/_query.scss +82 -82
  113. data/_sass/basically-basic/vendor/breakpoint/parsers/_resolution.scss +31 -31
  114. data/_sass/basically-basic/vendor/breakpoint/parsers/_single.scss +26 -26
  115. data/_sass/basically-basic/vendor/breakpoint/parsers/_triple.scss +36 -36
  116. data/_sass/basically-basic/vendor/breakpoint/parsers/double/_default-pair.scss +21 -21
  117. data/_sass/basically-basic/vendor/breakpoint/parsers/double/_default.scss +22 -22
  118. data/_sass/basically-basic/vendor/breakpoint/parsers/double/_double-string.scss +21 -21
  119. data/_sass/basically-basic/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -60
  120. data/_sass/basically-basic/vendor/breakpoint/parsers/single/_default.scss +13 -13
  121. data/_sass/basically-basic/vendor/breakpoint/parsers/triple/_default.scss +18 -18
  122. data/_sass/basically-basic/vendor/susy/_su.scss +4 -4
  123. data/_sass/basically-basic/vendor/susy/_susy-prefix.scss +13 -13
  124. data/_sass/basically-basic/vendor/susy/_susy.scss +5 -5
  125. data/_sass/basically-basic/vendor/susy/plugins/_svg-grid.scss +5 -5
  126. data/_sass/basically-basic/vendor/susy/plugins/svg-grid/_prefix.scss +7 -7
  127. data/_sass/basically-basic/vendor/susy/plugins/svg-grid/_svg-api.scss +114 -114
  128. data/_sass/basically-basic/vendor/susy/plugins/svg-grid/_svg-grid-math.scss +67 -67
  129. data/_sass/basically-basic/vendor/susy/plugins/svg-grid/_svg-settings.scss +14 -14
  130. data/_sass/basically-basic/vendor/susy/plugins/svg-grid/_svg-unprefix.scss +18 -18
  131. data/_sass/basically-basic/vendor/susy/plugins/svg-grid/_svg-utilities.scss +133 -133
  132. data/_sass/basically-basic/vendor/susy/susy/_api.scss +318 -318
  133. data/_sass/basically-basic/vendor/susy/susy/_normalize.scss +261 -261
  134. data/_sass/basically-basic/vendor/susy/susy/_parse.scss +163 -163
  135. data/_sass/basically-basic/vendor/susy/susy/_settings.scss +329 -329
  136. data/_sass/basically-basic/vendor/susy/susy/_su-math.scss +441 -441
  137. data/_sass/basically-basic/vendor/susy/susy/_su-validate.scss +213 -213
  138. data/_sass/basically-basic/vendor/susy/susy/_syntax-helpers.scss +191 -191
  139. data/_sass/basically-basic/vendor/susy/susy/_unprefix.scss +56 -56
  140. data/_sass/basically-basic/vendor/susy/susy/_utilities.scss +167 -167
  141. data/assets/javascripts/lunr/lunr.da.min.js +17 -17
  142. data/assets/javascripts/lunr/lunr.de.min.js +17 -17
  143. data/assets/javascripts/lunr/lunr.du.min.js +17 -17
  144. data/assets/javascripts/lunr/lunr.es.min.js +17 -17
  145. data/assets/javascripts/lunr/lunr.fi.min.js +17 -17
  146. data/assets/javascripts/lunr/lunr.fr.min.js +17 -17
  147. data/assets/javascripts/lunr/lunr.hu.min.js +17 -17
  148. data/assets/javascripts/lunr/lunr.it.min.js +17 -17
  149. data/assets/javascripts/lunr/lunr.jp.min.js +1 -1
  150. data/assets/javascripts/lunr/lunr.min.js +6 -6
  151. data/assets/javascripts/lunr/lunr.no.min.js +17 -17
  152. data/assets/javascripts/lunr/lunr.pt.min.js +17 -17
  153. data/assets/javascripts/lunr/lunr.ro.min.js +17 -17
  154. data/assets/javascripts/lunr/lunr.ru.min.js +17 -17
  155. data/assets/javascripts/lunr/lunr.sv.min.js +17 -17
  156. data/assets/javascripts/lunr/lunr.tr.min.js +17 -17
  157. data/assets/javascripts/main.js +12 -12
  158. data/assets/javascripts/search-data.json +43 -27
  159. data/assets/stylesheets/main.scss +9 -9
  160. metadata +21 -5
@@ -1,17 +1,17 @@
1
- {% if page.comments != false and jekyll.environment == "production" %}
2
- <div id="disqus_thread"></div>
3
- <script>
4
- var disqus_config = function () {
5
- this.page.url = '{{ page.url | absolute_url }}';
6
- this.page.identifier = '{{ page.url | absolute_url }}';
7
- };
8
-
9
- (function() {
10
- var d = document, s = d.createElement('script');
11
- s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
12
- s.setAttribute('data-timestamp', +new Date());
13
- (d.head || d.body).appendChild(s);
14
- })();
15
- </script>
16
- <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
1
+ {% if page.comments != false and jekyll.environment == "production" %}
2
+ <div id="disqus_thread"></div>
3
+ <script>
4
+ var disqus_config = function () {
5
+ this.page.url = '{{ page.url | absolute_url }}';
6
+ this.page.identifier = '{{ page.url | absolute_url }}';
7
+ };
8
+
9
+ (function() {
10
+ var d = document, s = d.createElement('script');
11
+ s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
12
+ s.setAttribute('data-timestamp', +new Date());
13
+ (d.head || d.body).appendChild(s);
14
+ })();
15
+ </script>
16
+ <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
17
17
  {% endif %}
@@ -0,0 +1,19 @@
1
+ {% assign entries = site[include.collection] %}
2
+
3
+ {% if include.sort_by == 'title' %}
4
+ {% if include.sort_order == 'reverse' %}
5
+ {% assign entries = entries | sort: 'title' | reverse %}
6
+ {% else %}
7
+ {% assign entries = entries | sort: 'title' %}
8
+ {% endif %}
9
+ {% elsif include.sort_by == 'date' %}
10
+ {% if include.sort_order == 'reverse' %}
11
+ {% assign entries = entries | sort: 'date' | reverse %}
12
+ {% else %}
13
+ {% assign entries = entries | sort: 'date' %}
14
+ {% endif %}
15
+ {% endif %}
16
+
17
+ {%- for post in entries -%}
18
+ {% include entry.html %}
19
+ {%- endfor -%}
@@ -1,29 +1,37 @@
1
- {% if post.id %}
2
- {% assign title = post.title | markdownify | strip_html %}
3
- {% else %}
4
- {% assign title = post.title %}
5
- {% endif %}
6
-
7
- <article class="entry">
8
- <header class="entry-header">
9
- <h3 class="entry-title">
10
- <a href="{{ post.url | relative_url }}" rel="bookmark">{{ title }}</a>
11
- </h3>
12
- </header>
13
- <footer class="entry-meta">
14
- <ul>
15
- {% if post.date %}
16
- <li><span class="icon">{% include icon-calendar.svg %}</span><time class="entry-time" datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%B %-d, %Y" }}</time></li>
17
- {% endif %}
18
- {% if post.read_time %}
19
- <li><span class="icon">{% include icon-stopwatch.svg %}</span>{% capture read_time %}{% include read-time.html %}{% endcapture %}{{ read_time | strip }}</li>
20
- {% endif %}
21
- </ul>
22
- </footer>
23
- <div class="entry-excerpt">
24
- {% if post.excerpt %}
25
- {{ post.excerpt | markdownify }}
26
- <p><a href="{{ post.url | relative_url }}" class="more-link">{{ site.data.theme.t.read_more | default: 'Read More' }} <span class="icon icon--arrow-right">{% include icon-arrow-right.svg %}</span></a></p>
27
- {% endif %}
28
- </div>
29
- </article>
1
+ {% if post.id %}
2
+ {% assign title = post.title | markdownify | strip_html %}
3
+ {% else %}
4
+ {% assign title = post.title %}
5
+ {% endif %}
6
+
7
+ <article class="entry">
8
+ <header class="entry-header">
9
+ <h3 class="entry-title">
10
+ <a href="{{ post.url | relative_url }}" rel="bookmark">{{ title }}</a>
11
+ </h3>
12
+ {% if post.image.thumbnail %}
13
+ {% assign entry_image = post.image.thumbnail %}
14
+ {% unless entry_image contains '://' %}
15
+ {% assign entry_image = entry_image | relative_url %}
16
+ {% endunless %}
17
+ {% assign entry_image = entry_image | escape %}
18
+ <img class="entry-image u-photo" src="{{ entry_image }}" alt="">
19
+ {% endif %}
20
+ </header>
21
+ <footer class="entry-meta">
22
+ <ul>
23
+ {% if post.date %}
24
+ <li><span class="icon">{% include icon-calendar.svg %}</span><time class="entry-time" datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%B %-d, %Y" }}</time></li>
25
+ {% endif %}
26
+ {% if post.read_time %}
27
+ <li><span class="icon">{% include icon-stopwatch.svg %}</span>{% capture read_time %}{% include read-time.html %}{% endcapture %}{{ read_time | strip }}</li>
28
+ {% endif %}
29
+ </ul>
30
+ </footer>
31
+ <div class="entry-excerpt">
32
+ {% if post.excerpt %}
33
+ {{ post.excerpt | markdownify }}
34
+ <p><a href="{{ post.url | relative_url }}" class="more-link">{{ site.data.theme.t.read_more | default: 'Read More' }} <span class="icon icon--arrow-right">{% include icon-arrow-right.svg %}</span></a></p>
35
+ {% endif %}
36
+ </div>
37
+ </article>
@@ -1,9 +1,11 @@
1
- <footer id="footer" class="site-footer">
2
- <div class="copyright">
3
- {% if site.copyright %}
4
- {{ site.copyright | markdownify }}
5
- {% else %}
6
- <p>&copy; {{ site.time | date: '%Y' }} {{ site.title }}.</p>
7
- {% endif %}
8
- </div>
9
- </footer>
1
+ <footer id="footer" class="site-footer">
2
+ <div class="inner">
3
+ <div class="copyright">
4
+ {% if site.copyright %}
5
+ {{ site.copyright | markdownify }}
6
+ {% else %}
7
+ <p>&copy; {{ site.time | date: '%Y' }} {{ site.title }}.</p>
8
+ {% endif %}
9
+ </div>
10
+ </div>
11
+ </footer>
@@ -1,9 +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','https://www.google-analytics.com/analytics.js','ga');
6
-
7
- ga('create', '{{ site.google_analytics }}', 'auto');
8
- ga('send', 'pageview');
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','https://www.google-analytics.com/analytics.js','ga');
6
+
7
+ ga('create', '{{ site.google_analytics }}', 'auto');
8
+ ga('send', 'pageview');
9
9
  </script>
@@ -1,35 +1,35 @@
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
-
6
- {% if site.plugins contains 'jekyll-seo-tag' or site.gems contains 'jekyll-seo-tag' %}
7
- {% comment %}
8
- Add metadata for search engines and social networks if jekyll-seo-tag plugin is enabled
9
- {% endcomment %}
10
- {% include head-seo.html %}
11
- {% else %}
12
- <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
13
- <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
14
- <link rel="canonical" href="{{ page.url | replace:'index.html', '' | absolute_url }}">
15
- {% endif %}
16
-
17
- <script>
18
- /* Cut the mustard */
19
- if ( 'querySelector' in document && 'addEventListener' in window ) {
20
- document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + 'js';
21
- }
22
- </script>
23
-
24
- <link rel="stylesheet" href="{{ '/assets/stylesheets/main.css' | relative_url }}">
25
- {% if site.data.theme.google_fonts %}
26
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family={% for font in site.data.theme.google_fonts %}{{ font.name | replace: ' ', '+' }}{% if font.weights %}:{% endif %}{{ font.weights | remove: ' ' }}{% if forloop.last != true %}|{% endif %}{% endfor %}">
27
- {% endif %}
28
-
29
- {% if site.plugins contains 'jekyll-feed' or site.gems contains 'jekyll-feed'%}
30
- {% comment %}
31
- Add Atom feed link if jekyll-feed plugin is enabled
32
- {% endcomment %}
33
- {% include head-feed.html %}
34
- {% endif %}
35
- </head>
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
+
6
+ {% if site.plugins contains 'jekyll-seo-tag' or site.gems contains 'jekyll-seo-tag' %}
7
+ {% comment %}
8
+ Add metadata for search engines and social networks if jekyll-seo-tag plugin is enabled
9
+ {% endcomment %}
10
+ {% include head-seo.html %}
11
+ {% else %}
12
+ <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
13
+ <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
14
+ <link rel="canonical" href="{{ page.url | replace:'index.html', '' | absolute_url }}">
15
+ {% endif %}
16
+
17
+ <script>
18
+ /* Cut the mustard */
19
+ if ( 'querySelector' in document && 'addEventListener' in window ) {
20
+ document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + 'js';
21
+ }
22
+ </script>
23
+
24
+ <link rel="stylesheet" href="{{ '/assets/stylesheets/main.css' | relative_url }}">
25
+ {% if site.data.theme.google_fonts %}
26
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family={% for font in site.data.theme.google_fonts %}{{ font.name | replace: ' ', '+' }}{% if font.weights %}:{% endif %}{{ font.weights | remove: ' ' }}{% if forloop.last != true %}|{% endif %}{% endfor %}">
27
+ {% endif %}
28
+
29
+ {% if site.plugins contains 'jekyll-feed' or site.gems contains 'jekyll-feed'%}
30
+ {% comment %}
31
+ Add Atom feed link if jekyll-feed plugin is enabled
32
+ {% endcomment %}
33
+ {% include head-feed.html %}
34
+ {% endif %}
35
+ </head>
@@ -1,4 +1,4 @@
1
- <a href="https://bitbucket.org/{{ include.username }}">
2
- <span class="icon icon--bitbucket">{% include icon-bitbucket.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://bitbucket.org/{{ include.username }}">
2
+ <span class="icon icon--bitbucket">{% include icon-bitbucket.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://codepen.io/{{ include.username }}">
2
- <span class="icon icon--codepen">{% include icon-codepen.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://codepen.io/{{ include.username }}">
2
+ <span class="icon icon--codepen">{% include icon-codepen.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://dribbble.com/{{ include.username }}">
2
- <span class="icon icon--dribbble">{% include icon-dribbble.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://dribbble.com/{{ include.username }}">
2
+ <span class="icon icon--dribbble">{% include icon-dribbble.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://www.facebook.com/{{ include.username }}">
2
- <span class="icon icon--facebook">{% include icon-facebook.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://www.facebook.com/{{ include.username }}">
2
+ <span class="icon icon--facebook">{% include icon-facebook.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://www.flickr.com/{{ include.username }}">
2
- <span class="icon icon--flickr">{% include icon-flickr.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://www.flickr.com/{{ include.username }}">
2
+ <span class="icon icon--flickr">{% include icon-flickr.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://github.com/{{ include.username }}">
2
- <span class="icon icon--github">{% include icon-github.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://github.com/{{ include.username }}">
2
+ <span class="icon icon--github">{% include icon-github.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://gitlab.com{{ include.username }}">
2
- <span class="icon icon--gitlab">{% include icon-gitlab.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://gitlab.com{{ include.username }}">
2
+ <span class="icon icon--gitlab">{% include icon-gitlab.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://plus.google.com/+{{ include.username }}">
2
- <span class="icon icon--googleplus">{% include icon-googleplus.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://plus.google.com/+{{ include.username }}">
2
+ <span class="icon icon--googleplus">{% include icon-googleplus.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://instagram.com/{{ include.username }}">
2
- <span class="icon icon--instagram">{% include icon-instagram.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://instagram.com/{{ include.username }}">
2
+ <span class="icon icon--instagram">{% include icon-instagram.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://last.fm/user/{{ include.username }}">
2
- <span class="icon icon--lastfm">{% include icon-lastfm.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://last.fm/user/{{ include.username }}">
2
+ <span class="icon icon--lastfm">{% include icon-lastfm.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://www.linkedin.com/in/{{ include.username }}">
2
- <span class="icon icon--linkedin">{% include icon-linkedin.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://www.linkedin.com/in/{{ include.username }}">
2
+ <span class="icon icon--linkedin">{% include icon-linkedin.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://www.pinterest.com/{{ include.username }}">
2
- <span class="icon icon--pinterest">{% include icon-pinterest.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://www.pinterest.com/{{ include.username }}">
2
+ <span class="icon icon--pinterest">{% include icon-pinterest.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://soundcloud.com/{{ include.username }}">
2
- <span class="icon icon--soundcloud">{% include icon-soundcloud.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://soundcloud.com/{{ include.username }}">
2
+ <span class="icon icon--soundcloud">{% include icon-soundcloud.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://www.stackoverflow.com/users/{{ include.username }}">
2
- <span class="icon icon--stackoverflow">{% include icon-stackoverflow.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://www.stackoverflow.com/users/{{ include.username }}">
2
+ <span class="icon icon--stackoverflow">{% include icon-stackoverflow.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://{{ include.username }}.tumblr.com">
2
- <span class="icon icon--tumblr">{% include icon-tumblr.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://{{ include.username }}.tumblr.com">
2
+ <span class="icon icon--tumblr">{% include icon-tumblr.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://twitter.com/{{ include.username }}">
2
- <span class="icon icon--twitter">{% include icon-twitter.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://twitter.com/{{ include.username }}">
2
+ <span class="icon icon--twitter">{% include icon-twitter.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://www.xing.com/profile/{{ include.username }}">
2
- <span class="icon icon--xing">{% include icon-xing.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://www.xing.com/profile/{{ include.username }}">
2
+ <span class="icon icon--xing">{% include icon-xing.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,4 +1,4 @@
1
- <a href="https://www.youtube.com/user/{{ include.username }}">
2
- <span class="icon icon--youtube">{% include icon-youtube.svg %}</span>
3
- <span class="label">{{ include.label | default: include.username }}</span>
4
- </a>
1
+ <a href="https://www.youtube.com/user/{{ include.username }}">
2
+ <span class="icon icon--youtube">{% include icon-youtube.svg %}</span>
3
+ <span class="label">{{ include.label | default: include.username }}</span>
4
+ </a>
@@ -1,27 +1,27 @@
1
- {% if site.logo contains '://' %}
2
- {% assign site_logo = site.logo %}
3
- {% else %}
4
- {% assign site_logo = site.logo | relative_url %}
5
- {% endif %}
6
-
7
- <header id="masthead">
8
- <div class="inner">
9
- <div class="title-area">
10
- {% if page.url == '/' %}
11
- <h1 class="site-title">
12
- <a href="{{ '/' | relative_url }}">
13
- {% if site.logo %}<img src="{{ site_logo }}" alt="" class="site-logo">{% endif %}
14
- <span>{{ site.title | escape }}</span>
15
- </a>
16
- </h1>
17
- {% else %}
18
- <p class="site-title">
19
- <a href="{{ '/' | relative_url }}">
20
- {% if site.logo %}<img src="{{ site_logo }}" alt="" class="site-logo">{% endif %}
21
- <span>{{ site.title | escape }}</span>
22
- </a>
23
- </p>
24
- {% endif %}
25
- </div>
26
- </div>
27
- </header>
1
+ {% if site.logo contains '://' %}
2
+ {% assign site_logo = site.logo %}
3
+ {% else %}
4
+ {% assign site_logo = site.logo | relative_url %}
5
+ {% endif %}
6
+
7
+ <header id="masthead">
8
+ <div class="inner">
9
+ <div class="title-area">
10
+ {% if page.url == '/' %}
11
+ <h1 class="site-title">
12
+ <a href="{{ '/' | relative_url }}">
13
+ {% if site.logo %}<img src="{{ site_logo }}" alt="" class="site-logo">{% endif %}
14
+ <span>{{ site.title | escape }}</span>
15
+ </a>
16
+ </h1>
17
+ {% else %}
18
+ <p class="site-title">
19
+ <a href="{{ '/' | relative_url }}">
20
+ {% if site.logo %}<img src="{{ site_logo }}" alt="" class="site-logo">{% endif %}
21
+ <span>{{ site.title | escape }}</span>
22
+ </a>
23
+ </p>
24
+ {% endif %}
25
+ </div>
26
+ </div>
27
+ </header>