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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/README.md +150 -42
- data/_includes/author +30 -30
- data/_includes/contact-list.html +27 -27
- data/_includes/cv/awards.html +23 -23
- data/_includes/cv/basics.html +68 -68
- data/_includes/cv/education.html +36 -36
- data/_includes/cv/interests.html +19 -19
- data/_includes/cv/intro.html +18 -18
- data/_includes/cv/languages.html +19 -19
- data/_includes/cv/publications.html +29 -29
- data/_includes/cv/references.html +23 -23
- data/_includes/cv/volunteer.html +46 -46
- data/_includes/cv/work.html +46 -46
- data/_includes/disqus_comments.html +16 -16
- data/_includes/documents-collection.html +19 -0
- data/_includes/entry.html +37 -29
- data/_includes/footer.html +11 -9
- data/_includes/google-analytics.html +8 -8
- data/_includes/head.html +35 -35
- data/_includes/icon-bitbucket.html +4 -4
- data/_includes/icon-codepen.html +4 -4
- data/_includes/icon-dribbble.html +4 -4
- data/_includes/icon-facebook.html +4 -4
- data/_includes/icon-flickr.html +4 -4
- data/_includes/icon-github.html +4 -4
- data/_includes/icon-gitlab.html +4 -4
- data/_includes/icon-googleplus.html +4 -4
- data/_includes/icon-instagram.html +4 -4
- data/_includes/icon-lastfm.html +4 -4
- data/_includes/icon-linkedin.html +4 -4
- data/_includes/icon-pinterest.html +4 -4
- data/_includes/icon-soundcloud.html +4 -4
- data/_includes/icon-stackoverflow.html +4 -4
- data/_includes/icon-tumblr.html +4 -4
- data/_includes/icon-twitter.html +4 -4
- data/_includes/icon-xing.html +4 -4
- data/_includes/icon-youtube.html +4 -4
- data/_includes/masthead.html +27 -27
- data/_includes/navigation.html +25 -25
- data/_includes/page-intro.html +42 -42
- data/_includes/page-tags.html +14 -0
- data/_includes/posts-all.html +2 -2
- data/_includes/posts-category.html +3 -0
- data/_includes/posts-paginated.html +15 -15
- data/_includes/posts-tag.html +3 -0
- data/_includes/read-time.html +13 -13
- data/_includes/search-form.html +14 -13
- data/_includes/search/algolia-search-scripts.html +52 -52
- data/_includes/search/lunr-search-scripts.html +1 -1
- data/_includes/skip-links.html +8 -8
- data/_layouts/about.html +0 -2
- data/_layouts/categories.html +48 -0
- data/_layouts/category.html +9 -0
- data/_layouts/collection.html +9 -0
- data/_layouts/cv.html +28 -28
- data/_layouts/default.html +2 -1
- data/_layouts/home.html +28 -30
- data/_layouts/page.html +15 -17
- data/_layouts/post.html +18 -20
- data/_layouts/posts.html +29 -0
- data/_layouts/tag.html +9 -0
- data/_layouts/tags.html +48 -0
- data/_sass/basically-basic.scss +1 -1
- data/_sass/basically-basic/_base.scss +116 -118
- data/_sass/basically-basic/_contact-lists.scss +11 -11
- data/_sass/basically-basic/_entries.scss +230 -152
- data/_sass/basically-basic/_footer.scss +37 -13
- data/_sass/basically-basic/_functions.scss +2 -2
- data/_sass/basically-basic/_global.scss +116 -42
- data/_sass/basically-basic/_icons.scss +43 -43
- data/_sass/basically-basic/_intro.scss +3 -1
- data/_sass/basically-basic/_layout.scss +188 -188
- data/_sass/basically-basic/_mixins.scss +5 -5
- data/_sass/basically-basic/_navicons.scss +148 -148
- data/_sass/basically-basic/_navigation.scss +66 -66
- data/_sass/basically-basic/_print.scss +252 -252
- data/_sass/basically-basic/_reset.scss +522 -522
- data/_sass/basically-basic/_responsive-embed.scss +70 -70
- data/_sass/basically-basic/_search.scss +101 -101
- data/_sass/basically-basic/_sidebar.scss +166 -166
- data/_sass/basically-basic/_tables.scss +34 -34
- data/_sass/basically-basic/_utilities.scss +6 -6
- data/_sass/basically-basic/_variables.scss +3 -0
- data/_sass/basically-basic/functions/_color.scss +21 -21
- data/_sass/basically-basic/functions/_fluid-type.scss +33 -33
- data/_sass/basically-basic/mixins/_clearfix.scss +11 -11
- data/_sass/basically-basic/mixins/_float.scss +15 -15
- data/_sass/basically-basic/mixins/_image.scss +38 -38
- data/_sass/basically-basic/mixins/_lists.scss +9 -9
- data/_sass/basically-basic/mixins/_text-truncate.scss +10 -10
- data/_sass/basically-basic/themes/_default.scss +5 -5
- data/_sass/basically-basic/themes/_night.scss +12 -12
- data/_sass/basically-basic/themes/_plum.scss +12 -12
- data/_sass/basically-basic/themes/_sea.scss +12 -12
- data/_sass/basically-basic/utilities/_accessibility.scss +43 -43
- data/_sass/basically-basic/utilities/_align.scss +62 -62
- data/_sass/basically-basic/utilities/_clearfix.scss +7 -7
- data/_sass/basically-basic/utilities/_float.scss +7 -7
- data/_sass/basically-basic/utilities/_text.scss +28 -28
- data/_sass/basically-basic/utilities/_visibility.scss +32 -32
- data/_sass/basically-basic/vendor/breakpoint/_breakpoint.scss +114 -114
- data/_sass/basically-basic/vendor/breakpoint/_context.scss +94 -94
- data/_sass/basically-basic/vendor/breakpoint/_helpers.scss +151 -151
- data/_sass/basically-basic/vendor/breakpoint/_legacy-settings.scss +49 -49
- data/_sass/basically-basic/vendor/breakpoint/_no-query.scss +15 -15
- data/_sass/basically-basic/vendor/breakpoint/_parsers.scss +215 -215
- data/_sass/basically-basic/vendor/breakpoint/_respond-to.scss +82 -82
- data/_sass/basically-basic/vendor/breakpoint/_settings.scss +70 -70
- data/_sass/basically-basic/vendor/breakpoint/parsers/_double.scss +33 -33
- data/_sass/basically-basic/vendor/breakpoint/parsers/_query.scss +82 -82
- data/_sass/basically-basic/vendor/breakpoint/parsers/_resolution.scss +31 -31
- data/_sass/basically-basic/vendor/breakpoint/parsers/_single.scss +26 -26
- data/_sass/basically-basic/vendor/breakpoint/parsers/_triple.scss +36 -36
- data/_sass/basically-basic/vendor/breakpoint/parsers/double/_default-pair.scss +21 -21
- data/_sass/basically-basic/vendor/breakpoint/parsers/double/_default.scss +22 -22
- data/_sass/basically-basic/vendor/breakpoint/parsers/double/_double-string.scss +21 -21
- data/_sass/basically-basic/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -60
- data/_sass/basically-basic/vendor/breakpoint/parsers/single/_default.scss +13 -13
- data/_sass/basically-basic/vendor/breakpoint/parsers/triple/_default.scss +18 -18
- data/_sass/basically-basic/vendor/susy/_su.scss +4 -4
- data/_sass/basically-basic/vendor/susy/_susy-prefix.scss +13 -13
- data/_sass/basically-basic/vendor/susy/_susy.scss +5 -5
- data/_sass/basically-basic/vendor/susy/plugins/_svg-grid.scss +5 -5
- data/_sass/basically-basic/vendor/susy/plugins/svg-grid/_prefix.scss +7 -7
- data/_sass/basically-basic/vendor/susy/plugins/svg-grid/_svg-api.scss +114 -114
- data/_sass/basically-basic/vendor/susy/plugins/svg-grid/_svg-grid-math.scss +67 -67
- data/_sass/basically-basic/vendor/susy/plugins/svg-grid/_svg-settings.scss +14 -14
- data/_sass/basically-basic/vendor/susy/plugins/svg-grid/_svg-unprefix.scss +18 -18
- data/_sass/basically-basic/vendor/susy/plugins/svg-grid/_svg-utilities.scss +133 -133
- data/_sass/basically-basic/vendor/susy/susy/_api.scss +318 -318
- data/_sass/basically-basic/vendor/susy/susy/_normalize.scss +261 -261
- data/_sass/basically-basic/vendor/susy/susy/_parse.scss +163 -163
- data/_sass/basically-basic/vendor/susy/susy/_settings.scss +329 -329
- data/_sass/basically-basic/vendor/susy/susy/_su-math.scss +441 -441
- data/_sass/basically-basic/vendor/susy/susy/_su-validate.scss +213 -213
- data/_sass/basically-basic/vendor/susy/susy/_syntax-helpers.scss +191 -191
- data/_sass/basically-basic/vendor/susy/susy/_unprefix.scss +56 -56
- data/_sass/basically-basic/vendor/susy/susy/_utilities.scss +167 -167
- data/assets/javascripts/lunr/lunr.da.min.js +17 -17
- data/assets/javascripts/lunr/lunr.de.min.js +17 -17
- data/assets/javascripts/lunr/lunr.du.min.js +17 -17
- data/assets/javascripts/lunr/lunr.es.min.js +17 -17
- data/assets/javascripts/lunr/lunr.fi.min.js +17 -17
- data/assets/javascripts/lunr/lunr.fr.min.js +17 -17
- data/assets/javascripts/lunr/lunr.hu.min.js +17 -17
- data/assets/javascripts/lunr/lunr.it.min.js +17 -17
- data/assets/javascripts/lunr/lunr.jp.min.js +1 -1
- data/assets/javascripts/lunr/lunr.min.js +6 -6
- data/assets/javascripts/lunr/lunr.no.min.js +17 -17
- data/assets/javascripts/lunr/lunr.pt.min.js +17 -17
- data/assets/javascripts/lunr/lunr.ro.min.js +17 -17
- data/assets/javascripts/lunr/lunr.ru.min.js +17 -17
- data/assets/javascripts/lunr/lunr.sv.min.js +17 -17
- data/assets/javascripts/lunr/lunr.tr.min.js +17 -17
- data/assets/javascripts/main.js +12 -12
- data/assets/javascripts/search-data.json +43 -27
- data/assets/stylesheets/main.scss +9 -9
- 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 -%}
|
data/_includes/entry.html
CHANGED
|
@@ -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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
</
|
|
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>
|
data/_includes/footer.html
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
<footer id="footer" class="site-footer">
|
|
2
|
-
<div class="
|
|
3
|
-
|
|
4
|
-
{
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
</
|
|
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>© {{ 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>
|
data/_includes/head.html
CHANGED
|
@@ -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>
|
data/_includes/icon-codepen.html
CHANGED
|
@@ -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>
|
data/_includes/icon-flickr.html
CHANGED
|
@@ -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>
|
data/_includes/icon-github.html
CHANGED
|
@@ -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>
|
data/_includes/icon-gitlab.html
CHANGED
|
@@ -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>
|
data/_includes/icon-lastfm.html
CHANGED
|
@@ -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>
|
data/_includes/icon-tumblr.html
CHANGED
|
@@ -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>
|
data/_includes/icon-twitter.html
CHANGED
|
@@ -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>
|
data/_includes/icon-xing.html
CHANGED
|
@@ -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>
|
data/_includes/icon-youtube.html
CHANGED
|
@@ -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>
|
data/_includes/masthead.html
CHANGED
|
@@ -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>
|