jmblog-theme 0.1.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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/_includes/JB/analytics +20 -0
- data/_includes/JB/analytics-providers/getclicky +12 -0
- data/_includes/JB/analytics-providers/mixpanel +11 -0
- data/_includes/JB/analytics-providers/piwik +10 -0
- data/_includes/JB/categories_list +37 -0
- data/_includes/JB/comments +16 -0
- data/_includes/JB/comments-providers/disqus +17 -0
- data/_includes/JB/comments-providers/facebook +9 -0
- data/_includes/JB/comments-providers/intensedebate +6 -0
- data/_includes/JB/comments-providers/livefyre +6 -0
- data/_includes/JB/liquid_raw +32 -0
- data/_includes/JB/pages_list +44 -0
- data/_includes/JB/posts_collate +55 -0
- data/_includes/JB/setup +22 -0
- data/_includes/JB/sharing +8 -0
- data/_includes/JB/tags_list +35 -0
- data/_includes/JB/urlset +10 -0
- data/_includes/dataLayer/dataLayer +10 -0
- data/_includes/themes/jmblog/components/analytics/google +11 -0
- data/_includes/themes/jmblog/components/analytics/googletagmanager_body.html +4 -0
- data/_includes/themes/jmblog/components/analytics/googletagmanager_head.html +10 -0
- data/_includes/themes/jmblog/components/analytics/hubspot.html +3 -0
- data/_includes/themes/jmblog/components/analytics/hubspot_cookie_removal.html +9 -0
- data/_includes/themes/jmblog/components/breadcrumb +7 -0
- data/_includes/themes/jmblog/components/centred_buttons.html +10 -0
- data/_includes/themes/jmblog/components/contact_form.html +43 -0
- data/_includes/themes/jmblog/components/footer.html +31 -0
- data/_includes/themes/jmblog/components/head.html +76 -0
- data/_includes/themes/jmblog/components/navigation.html +7 -0
- data/_includes/themes/jmblog/components/posts_list +12 -0
- data/_includes/themes/jmblog/components/resume.html +139 -0
- data/_includes/themes/jmblog/components/share_buttons +19 -0
- data/_includes/themes/jmblog/components/social_buttons_large.html +18 -0
- data/_includes/themes/jmblog/error.html +15 -0
- data/_includes/themes/jmblog/page.html +19 -0
- data/_includes/themes/jmblog/post.html +51 -0
- data/_includes/themes/jmblog/resume.html +18 -0
- data/_includes/themes/jmblog/settings.yml +2 -0
- data/_includes/themes/jmblog/theme/error.html +46 -0
- data/_includes/themes/jmblog/theme/holding.html +53 -0
- data/_includes/themes/resume.html +11 -0
- data/_layouts/default.html +10 -0
- data/_layouts/error.html +7 -0
- data/_layouts/page.html +11 -0
- data/_layouts/post.html +5 -0
- data/_layouts/resume.html +6 -0
- data/assets/fonts/Cardo/Cardo-Regular.woff2 +0 -0
- data/assets/fonts/Cardo/OFL.txt +93 -0
- data/assets/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
- data/assets/fonts/Montserrat/OFL.txt +93 -0
- data/assets/img/balloon-3206530_1920.jpg +0 -0
- data/assets/img/favicon.png +0 -0
- data/assets/img/head-shot-square.jpg +0 -0
- data/assets/img/jekyll-logo-black-red-transparent.png +0 -0
- data/assets/img/jekyll-logo-light-solid.png +0 -0
- data/assets/img/john-cameron-zxsab1OdEsU-unsplash.jpg +0 -0
- data/assets/img/made-with-bulma--semiblack.png +0 -0
- data/assets/img/webpack-on-white-bg.svg +1 -0
- data/assets/js/error.bundle.js +2 -0
- data/assets/js/error.bundle.js.br +0 -0
- data/assets/js/error.js.map +1 -0
- data/assets/js/holding.bundle.js +2 -0
- data/assets/js/holding.bundle.js.br +0 -0
- data/assets/js/holding.js.map +1 -0
- metadata +151 -0
data/_includes/JB/urlset
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{% for url in urlset %}
|
|
2
|
+
{% unless url.sitemap.noindex != null %}
|
|
3
|
+
<url>
|
|
4
|
+
<loc>{{site.production_url}}{{ url.url }}</loc>
|
|
5
|
+
<lastmod>{% unless url.date == null %}{{ url.date | date_to_xmlschema }}{% else %}{{ site.time | date_to_xmlschema }}
|
|
6
|
+
{% endunless %}</lastmod><changefreq>monthly</changefreq>
|
|
7
|
+
<priority>{% unless url.sitemap.priority %}0.5{% else %}{{url.sitemap.priority}}{% endunless %}</priority>
|
|
8
|
+
</url>{% endunless %}
|
|
9
|
+
{% endfor %}
|
|
10
|
+
{% assign urlset = nil %}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
dataLayer = [{
|
|
3
|
+
{% if page.engagement != null %}'customer.engagement':{{ page.engagement }}{% endif %}
|
|
4
|
+
{% if page.visitor_type != null %}'customer.type':{{ page.visitor_type }}{% endif %}
|
|
5
|
+
'page.category': '{{ page.category }}',
|
|
6
|
+
{% if page.type != null %}'page.type':'{{ page.type }}',{% endif %}
|
|
7
|
+
'page.title': '{{ page.title }}',
|
|
8
|
+
'page.description': '{{ page.description }}'
|
|
9
|
+
}];
|
|
10
|
+
</script>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script type="text/javascript">
|
|
2
|
+
var _gaq = _gaq || [];
|
|
3
|
+
_gaq.push(['_setAccount', '{{ site.JB.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,10 @@
|
|
|
1
|
+
<!-- Google Tag Manager -->
|
|
2
|
+
<script>(function (w, d, s, l, i) {
|
|
3
|
+
w[l] = w[l] || []; w[l].push({
|
|
4
|
+
'gtm.start':
|
|
5
|
+
new Date().getTime(), event: 'gtm.js'
|
|
6
|
+
}); var f = d.getElementsByTagName(s)[0],
|
|
7
|
+
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
|
|
8
|
+
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
|
|
9
|
+
})(window, document, 'script', 'dataLayer', '{{site.analytics.gtm.tracking_id}}');</script>
|
|
10
|
+
<!-- End Google Tag Manager -->
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<!-- Start of HubSpot code snippet -->
|
|
2
|
+
<button type="button" id="hs_remove_cookie_button" onClick="(function removeCookies(){
|
|
3
|
+
var _hsp = window._hsp = window._hsp || [];
|
|
4
|
+
_hsp.push(['revokeCookieConsent']);
|
|
5
|
+
})()">
|
|
6
|
+
Remove cookies
|
|
7
|
+
</button>
|
|
8
|
+
|
|
9
|
+
<!-- End of HubSpot code snippet -->
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<!-- Buttons -->
|
|
2
|
+
<div class="columns is-centered">
|
|
3
|
+
<div class="column">
|
|
4
|
+
<div class="buttons is-flex is-centered">
|
|
5
|
+
<!-- <a class="button is-primary">resumé</a> -->
|
|
6
|
+
<a href="https://meetings.hubspot.com/jmoxon" class="button is-primary">book a meeting</a>
|
|
7
|
+
<a href="/contact" class="button is-primary">contact</a>
|
|
8
|
+
</div>
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<form role="form"
|
|
2
|
+
id="simpleform"
|
|
3
|
+
data-toggle="validator"
|
|
4
|
+
action="https://getsimpleform.com/messages?form_api_token=41dc591ad6a976440d791b04906034c7"
|
|
5
|
+
method="post"
|
|
6
|
+
novalidate>
|
|
7
|
+
<div class="row">
|
|
8
|
+
<!-- the redirect_to is optional, the form will redirect to the referrer on submission -->
|
|
9
|
+
<input type='hidden' name='redirect_to' value='{{site.production_url}}/thank-you.html'>
|
|
10
|
+
<input type="hidden" name="rationale" value="none">
|
|
11
|
+
<div class="form-group col-xs-12 col-lg-6 col-md-6">
|
|
12
|
+
<label for="userFullName" class="sr-only">Name</label>
|
|
13
|
+
<input class="form-control input-lg"
|
|
14
|
+
id="userFullName"
|
|
15
|
+
name="fullname"
|
|
16
|
+
placeholder="Enter name"
|
|
17
|
+
data-error="Please enter full name"
|
|
18
|
+
required>
|
|
19
|
+
<div class="help-block with-errors"></div>
|
|
20
|
+
|
|
21
|
+
</div>
|
|
22
|
+
<div class="form-group col-xs-12 col-lg-6 col-md-6">
|
|
23
|
+
<label for="userEmail" class="sr-only">Email address</label>
|
|
24
|
+
<input type="email"
|
|
25
|
+
class="form-control input-lg"
|
|
26
|
+
id="userEmail"
|
|
27
|
+
name="email"
|
|
28
|
+
placeholder="Enter email"
|
|
29
|
+
data-error="Must be a valid email"
|
|
30
|
+
required>
|
|
31
|
+
<div class="help-block with-errors"></div>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
<div class="form-group">
|
|
35
|
+
<label for="userMessage" class="sr-only">Message</label>
|
|
36
|
+
<textarea name="message" class="form-control input-lg" id="userMessage" placeholder="Your message"></textarea>
|
|
37
|
+
</div>
|
|
38
|
+
|
|
39
|
+
<button type="submit" class="btn btn-default btn-lg">Submit</button>
|
|
40
|
+
</form>
|
|
41
|
+
<div class="alert alert-success hide">
|
|
42
|
+
Thanks for saying Hi! We got your message
|
|
43
|
+
</div>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<!-- Footer -->
|
|
2
|
+
<footer class="footer">
|
|
3
|
+
<div class="container has-text-centered">
|
|
4
|
+
<p>
|
|
5
|
+
The source code for this website is licensed by
|
|
6
|
+
<a href="https://opensource.org/licenses/mit-license.php">MIT</a> and can be found
|
|
7
|
+
<a href="https://github.com/johnmoxon/johnmoxon.github.io/">
|
|
8
|
+
here on github
|
|
9
|
+
<i class="fab fa-github has-text-black"></i>
|
|
10
|
+
</a>.
|
|
11
|
+
<span xmlns:dct="https://purl.org/dc/terms/" xmlns:cc="https://creativecommons.org/ns#" class="license-text">
|
|
12
|
+
The website content by <strong><span rel="cc:attributionName">John Moxon</span></strong> is licensed under
|
|
13
|
+
<a href="https://creativecommons.org/licenses/by/4.0">
|
|
14
|
+
CC BY 4.0
|
|
15
|
+
<img
|
|
16
|
+
style="height:22px!important;margin-left: 3px;vertical-align:text-bottom;"
|
|
17
|
+
src="https://search.creativecommons.org/static/img/cc_icon.svg" />
|
|
18
|
+
<img
|
|
19
|
+
style="height:22px!important;margin-left: 3px;vertical-align:text-bottom;"
|
|
20
|
+
src="https://search.creativecommons.org/static/img/cc-by_icon.svg" />
|
|
21
|
+
</a>
|
|
22
|
+
</span>
|
|
23
|
+
</p>
|
|
24
|
+
|
|
25
|
+
<div class="has-vcentred-content">
|
|
26
|
+
<img class="" width="150px" src="/assets/img/made-with-bulma--semiblack.png" alt="Made with Bulma">
|
|
27
|
+
<img class="" width="150px" src="/assets/img/webpack-on-white-bg.svg" alt="Made with Webpack">
|
|
28
|
+
<img class="" width="150px" src="/assets/img/jekyll-logo-black-red-transparent.png" alt="Made with Jekyll">
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
</footer>
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
<title>{{ page.title }} | {{site.title}}</title>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
|
+
|
|
8
|
+
{% include themes/jmblog/components/analytics/googletagmanager_head.html %}
|
|
9
|
+
|
|
10
|
+
<!-- <script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script> -->
|
|
11
|
+
<link rel="preload" href="/assets/fonts/Cardo/Cardo-Regular.woff2" as="font" crossorigin>
|
|
12
|
+
<link rel="preload" href="/assets/fonts/Montserrat/Montserrat-Regular.woff2" as="font" crossorigin>
|
|
13
|
+
<style>
|
|
14
|
+
@font-face {
|
|
15
|
+
font-family: 'Cardo';
|
|
16
|
+
font-style: normal;
|
|
17
|
+
font-weight: 400;
|
|
18
|
+
font-display: swap;
|
|
19
|
+
src: local('Cardo'), local('Cardo-Regular'), url(/assets/fonts/Cardo/Cardo-Regular.woff2) format('woff2');
|
|
20
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/* latin */
|
|
24
|
+
@font-face {
|
|
25
|
+
font-family: 'Montserrat';
|
|
26
|
+
font-style: normal;
|
|
27
|
+
font-weight: 400;
|
|
28
|
+
font-display: swap;
|
|
29
|
+
src: local('Montserrat Regular'), local('Montserrat-Regular'), url(/assets/fonts/Montserrat/Montserrat-Regular.woff2) format('woff2');
|
|
30
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
31
|
+
}
|
|
32
|
+
</style>
|
|
33
|
+
<script defer src="https://kit.fontawesome.com/f74caf9b24.js" crossorigin="anonymous"></script>
|
|
34
|
+
|
|
35
|
+
<!-- Meta tags -->
|
|
36
|
+
<meta name="description"
|
|
37
|
+
content="{%unless page.description == null %}{{ page.description }}{%else%}{{ site.feed_description }}{% endunless %}">
|
|
38
|
+
<meta name="keywords"
|
|
39
|
+
content="{% unless page.keywords == null %}{{ page.keywords }}{% else %}{{ site.fail_back_keywords }}{% endunless %}">
|
|
40
|
+
|
|
41
|
+
<meta name="author" content="https://plus.google.com/+{{site.author.googleplus}}">
|
|
42
|
+
<meta name="google-site-verification" content="{{site.webmastertools.verification_code}}" />
|
|
43
|
+
|
|
44
|
+
<!-- {% if page.sitemap.noindex != null %} -->
|
|
45
|
+
<meta name="robots" content="{{ page.sitemap.noindex | join: ', ' }}">
|
|
46
|
+
<!-- {% endif %} -->
|
|
47
|
+
|
|
48
|
+
<link rel="alternate" type="application/rss+xml" title="{{site.author.name}}: {{site.feed_description}} » Feed"
|
|
49
|
+
href="{{site.production_url}}{{site.xJB.rss_path}}" />
|
|
50
|
+
|
|
51
|
+
<!-- Social -->
|
|
52
|
+
<!-- Facebook open graph -->
|
|
53
|
+
<meta property="og:type" content="article" />
|
|
54
|
+
<meta property="og:title" content="{% unless page.title == null %}{{ page.title }}{% endunless %}" />
|
|
55
|
+
<meta property="og:url" content="{{ site.production_url }}{{ page.url }}" />
|
|
56
|
+
<meta property="og:description" content="{% unless page.description == null %}{{ page.description }}{% endunless %}" />
|
|
57
|
+
<!-- {% unless page.date == null %} -->
|
|
58
|
+
<meta property="article:published_time" content="{{ page.date | date_to_xmlschema }}" />
|
|
59
|
+
<meta property="article:modified_time" content="{{ page.date | date_to_xmlschema }}" />
|
|
60
|
+
<!-- {% else %} -->
|
|
61
|
+
<!-- Last generated date -->
|
|
62
|
+
<meta property="article:published_time" content="{{ site.time | date_to_xmlschema }}" />
|
|
63
|
+
<meta property="article:modified_time" content="{{ site.time | date_to_xmlschema }}" />
|
|
64
|
+
<!-- {% endunless %} -->
|
|
65
|
+
<meta property="article:author" content="{{ site.production_url }}/about/" />
|
|
66
|
+
<meta property="og:site_name" content="{{ site.name }}" />
|
|
67
|
+
|
|
68
|
+
<meta property="og:image" content="{{page.peep-image}}" />
|
|
69
|
+
|
|
70
|
+
<!-- Twitter card -->
|
|
71
|
+
<meta name="twitter:site" content="@{{ site.author.twitter }}" />
|
|
72
|
+
<meta name="twitter:card" content="summary" />
|
|
73
|
+
<meta name="twitter:title" content="{{ page.title }}" />
|
|
74
|
+
<meta name="twitter:description" content="{% unless page.description == null %}{{ page.description }}{% endunless %}" />
|
|
75
|
+
|
|
76
|
+
<link rel="icon" href="/assets/img/favicon.png">
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<ul class="posts">
|
|
2
|
+
{% for post in posts_list %}
|
|
3
|
+
<li data-file="{{ BASE_PATH }}{{ post.url }}" data-target=".content" data-words="{{ post.content | number_of_words }}" class="post" >
|
|
4
|
+
<a href="{{ BASE_PATH }}{{ post.url }}">
|
|
5
|
+
<h2>{{ post.title }}</h2>
|
|
6
|
+
</a>
|
|
7
|
+
<span class="post-date">{{ post.date | date_to_string }} - <span class="eta">calculating reading time...</span></span>
|
|
8
|
+
{{ post.excerpt }}
|
|
9
|
+
<span><a href="{{ BASE_PATH }}{{ post.url }}" title="{{ post.title }}">Read more</a></span>
|
|
10
|
+
</li>
|
|
11
|
+
{% endfor %}
|
|
12
|
+
</ul>
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
<div class="content has-text-left">
|
|
2
|
+
|
|
3
|
+
{% assign resume = site.data.resume.resume_versions | find: "active", true | first %}
|
|
4
|
+
<h2>{{ resume.name }}</h2>
|
|
5
|
+
|
|
6
|
+
{% for section in resume.sections %}
|
|
7
|
+
<section id="{{ section.section_name | replace: ' ', '_' }}">
|
|
8
|
+
<h3>{{ section.section_name }}</h3>
|
|
9
|
+
|
|
10
|
+
{% case section.section_name %}
|
|
11
|
+
{% when "Contact details" %}
|
|
12
|
+
<address>
|
|
13
|
+
<a href="tel:{{ section.phone | replace: ' ', '' }}">{{ section.phone }}</a> |
|
|
14
|
+
<a href="mailto:{{ section.email }}">{{ section.email }}</a> |
|
|
15
|
+
<a href="{{ section.linkedin }}">{{ section.linkedin }}</a>
|
|
16
|
+
</address>
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
{% when "Skills" %}
|
|
20
|
+
|
|
21
|
+
{% unless section.hard == null %}
|
|
22
|
+
<ul data-type="skills-hard" class="skills" style="display: flex; flex-wrap:wrap">
|
|
23
|
+
{% for skill in section.hard %}
|
|
24
|
+
<li style="width: calc(100% / 3);">{{ skill }}</li>
|
|
25
|
+
{% endfor %}
|
|
26
|
+
</ul>
|
|
27
|
+
{% endunless %}
|
|
28
|
+
|
|
29
|
+
{% unless section.soft == null %}
|
|
30
|
+
<ul data-type="skills-soft" class="skills">
|
|
31
|
+
{% for skill in section.soft %}
|
|
32
|
+
<li>{{ skill }}</li>
|
|
33
|
+
{% endfor %}
|
|
34
|
+
</ul>
|
|
35
|
+
{% endunless %}
|
|
36
|
+
|
|
37
|
+
{% when "Experience" %}
|
|
38
|
+
{% for experience in section.experiences | where: 'relevant', true %}
|
|
39
|
+
<div id="{{ experience.company | replace: ' ', '_' }}">
|
|
40
|
+
<h4>{{ experience.company }}</h4>
|
|
41
|
+
{% for position in experience.positions | where: 'relevant', true %}
|
|
42
|
+
<div id="{{ postion.title | replace: ' ', '_' }}">
|
|
43
|
+
<h5>{{ position.title }}</h5>
|
|
44
|
+
{% unless position.summary == null %}
|
|
45
|
+
<p>{{ position.summary | newline_to_br }}</p>
|
|
46
|
+
{% endunless %}
|
|
47
|
+
|
|
48
|
+
<!-- Achievements -->
|
|
49
|
+
{% unless position.achievements == null %}
|
|
50
|
+
<ul class="postion_achievements">
|
|
51
|
+
{% for achievement in position.achievements %}
|
|
52
|
+
<li>{{ achievement }}</li>
|
|
53
|
+
{% endfor %}
|
|
54
|
+
</ul>
|
|
55
|
+
{% endunless %}
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
</div>
|
|
59
|
+
{% endfor %}
|
|
60
|
+
</div>
|
|
61
|
+
{% endfor %}
|
|
62
|
+
|
|
63
|
+
{% when "Education" %}
|
|
64
|
+
<ul class="education pb-3">
|
|
65
|
+
{% for qualification in section.qualifications %}
|
|
66
|
+
<li>
|
|
67
|
+
{{ qualification.level }} in {{ qualification.name }} -
|
|
68
|
+
{{ qualification.institution }}
|
|
69
|
+
({{ qualification.date_start }}-{{ qualification.date_end }})
|
|
70
|
+
|
|
71
|
+
</li>
|
|
72
|
+
|
|
73
|
+
{% endfor %}
|
|
74
|
+
</ul>
|
|
75
|
+
|
|
76
|
+
{% when "Awards" %}
|
|
77
|
+
<ul class="awards pb-3">
|
|
78
|
+
{% for award in section.awards %}
|
|
79
|
+
<li>
|
|
80
|
+
{{ award.name }} from {{ award.award_body }} -
|
|
81
|
+
{{ award.website }} ({{ award.date }})
|
|
82
|
+
|
|
83
|
+
</li>
|
|
84
|
+
|
|
85
|
+
{% endfor %}
|
|
86
|
+
</ul>
|
|
87
|
+
{% endcase %}
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
<hr>
|
|
91
|
+
</section>
|
|
92
|
+
{% endfor %}
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
{% comment %}
|
|
101
|
+
<address>
|
|
102
|
+
{{ site.data.resume.contact.name }} |
|
|
103
|
+
|
|
104
|
+
</address>
|
|
105
|
+
{% endcomment %}
|
|
106
|
+
<hr>
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
{% comment %}
|
|
115
|
+
<!-- Experience section -->
|
|
116
|
+
<h2>Experience</h2>
|
|
117
|
+
{% for experience in site.data.resume.experiences %}
|
|
118
|
+
<div data-type="company">
|
|
119
|
+
<h3>{{ experience.company }} | {{ experience.company }}</h3>
|
|
120
|
+
{% for position in experience.positions %}
|
|
121
|
+
<div data-type="position">
|
|
122
|
+
<h4 data>{{ postion.title }} | {{ postion.date_start | date: "%b %Y" }} -
|
|
123
|
+
{{ postion.date_end | default: "Current role" | date: "%b %Y" }}</h4>
|
|
124
|
+
<p data-type="">{{ position.summary }}</p>
|
|
125
|
+
<ul>
|
|
126
|
+
{% for achievement in position.achievements %}
|
|
127
|
+
<li>{{ achievement }}</li>
|
|
128
|
+
{% endfor %}
|
|
129
|
+
</ul>
|
|
130
|
+
|
|
131
|
+
</div>
|
|
132
|
+
{% endfor %}
|
|
133
|
+
</div>
|
|
134
|
+
{% endfor %}
|
|
135
|
+
<hr>
|
|
136
|
+
|
|
137
|
+
{% endcomment %}
|
|
138
|
+
|
|
139
|
+
</div>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<span class="share">
|
|
2
|
+
<a href="http://twitter.com/home?status={{page.description | uri_escape}}%20{{site.production_url}}{{page.url | uri_escape}}" title="Share with twitter" data-toggle="tooltip" data-placement="top" data-provider="twitter">
|
|
3
|
+
<i class="fa fa-twitter"></i>
|
|
4
|
+
</a>
|
|
5
|
+
<a href="https://www.facebook.com/sharer/sharer.php?u={{site.production_url}}{{page.url | uri_escape}}" title="Share with facebook" data-toggle="tooltip" data-placement="top" data-provider="facebook">
|
|
6
|
+
<i class="fa fa-facebook"></i>
|
|
7
|
+
</a>
|
|
8
|
+
<a href="https://plus.google.com/share?url={{page.description | uri_escape}}%20{{site.production_url}}{{page.url | uri_escape}}" title="Share on google+" data-toggle="tooltip" data-placement="top" data-provider="google+">
|
|
9
|
+
<i class="fa fa-google-plus"></i>
|
|
10
|
+
</a>
|
|
11
|
+
<!--
|
|
12
|
+
<a href="http://pinterest.com/pin/create/button/?url={{site.production_url | uri_escape }}{{page.url | uri_escape}}&media={{site.production_url | uri_escape }}/assets/img/avatar_200x200.jpg&{{page.description | uri_escape}}" title="Share on pinterest" data-toggle="tooltip" data-placement="top" data-provider="pintrest">
|
|
13
|
+
<i class="fa fa-pinterest"></i>
|
|
14
|
+
</a>
|
|
15
|
+
-->
|
|
16
|
+
<a href="{{site.JB.rss_path}}" title="Rss feed" data-toggle="tooltip" data-placement="top" data-provider="feed subscribe">
|
|
17
|
+
<i class="fa fa-rss"></i>
|
|
18
|
+
</a>
|
|
19
|
+
</span>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<!-- Social -->
|
|
2
|
+
<div class="content">
|
|
3
|
+
<a href="{{ site.linkedin_username }}">
|
|
4
|
+
<span class="icon is-large">
|
|
5
|
+
<i class="fa-3x fab fa-linkedin-in has-text-black"></i>
|
|
6
|
+
</span>
|
|
7
|
+
</a>
|
|
8
|
+
<a href="{{ site.twitter_username }}">
|
|
9
|
+
<span class="icon is-large">
|
|
10
|
+
<i class="fa-3x fab fa-twitter has-text-black"></i>
|
|
11
|
+
</span>
|
|
12
|
+
</a>
|
|
13
|
+
<a href="{{ site.medium_username }}">
|
|
14
|
+
<span class="icon is-large">
|
|
15
|
+
<i class="fa-3x fab fa-medium-m has-text-black"></i>
|
|
16
|
+
</span>
|
|
17
|
+
</a>
|
|
18
|
+
</div>
|