jmblog-theme 0.1.2 → 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 +4 -4
- data/_authors/john_doe.md +15 -0
- data/_config.yml +80 -0
- data/_data/navigation.yml +8 -0
- data/_includes/themes/jmblog-theme/bio.html +45 -0
- data/_includes/themes/jmblog-theme/components/article_highlight.html +48 -0
- data/_includes/themes/jmblog-theme/components/author.html +45 -0
- data/_includes/themes/jmblog-theme/components/comments.html +18 -0
- data/_includes/themes/jmblog-theme/components/footer.html +2 -2
- data/_includes/themes/jmblog-theme/components/head.html +3 -1
- data/_includes/themes/jmblog-theme/components/img.html +12 -0
- data/_includes/themes/jmblog-theme/components/lazyload.html +17 -0
- data/_includes/themes/jmblog-theme/components/navigation.html +66 -7
- data/_includes/themes/jmblog-theme/components/pagination_links.html +39 -0
- data/_includes/themes/jmblog-theme/components/reading-time.html +6 -0
- data/_includes/themes/jmblog-theme/components/related_articles.html +73 -0
- data/_includes/themes/jmblog-theme/components/share_buttons.html +20 -0
- data/_includes/themes/jmblog-theme/components/social_buttons_small.html +38 -0
- data/_includes/themes/jmblog-theme/home.html +94 -0
- data/_includes/themes/jmblog-theme/page.html +19 -12
- data/_includes/themes/jmblog-theme/post.html +70 -44
- data/_includes/themes/jmblog-theme/theme/{error.html → _old_error.html} +1 -1
- data/_includes/themes/jmblog-theme/theme/default.html +1 -0
- data/_includes/themes/jmblog-theme/theme/maintenance.html +1 -0
- data/_layouts/bio.html +11 -0
- data/_layouts/default.html +3 -2
- data/_layouts/error.html +7 -3
- data/_layouts/home.html +11 -0
- data/_layouts/maintenance.html +11 -0
- data/_layouts/page.html +1 -1
- data/_layouts/post.html +1 -1
- data/_pages/404.md +11 -0
- data/_pages/contact.md +7 -0
- data/_posts/2020-07-06-managing-and-leading-remote-teams-in-our-new-normal.md +34 -0
- data/assets/img/chris-montgomery-smgTvepind4-unsplash.jpg +0 -0
- data/assets/img/ph.png +0 -0
- data/assets/js/default.bundle.js +2 -0
- data/assets/js/default.bundle.js.br +0 -0
- data/assets/js/default.js.map +1 -0
- data/assets/js/maintenance.bundle.js +2 -0
- data/assets/js/maintenance.bundle.js.br +0 -0
- data/assets/js/maintenance.js.map +1 -0
- data/assets/js/vendor.bundle.js +2 -0
- data/assets/js/vendor.bundle.js.br +0 -0
- data/assets/js/vendor.js.map +1 -0
- data/assets/sass/base.scss +83 -0
- data/assets/sass/modules/card.scss +55 -0
- data/assets/sass/modules/navbar.scss +49 -0
- data/assets/sass/theme/_all.scss +2 -0
- data/assets/sass/theme/brand.scss +56 -0
- data/assets/sass/theme/lazyload.scss +10 -0
- data/assets/sass/utilities/_all.sass +2 -0
- data/assets/sass/utilities/breakpoints.scss +25 -0
- data/assets/sass/utilities/helpers.scss +48 -0
- data/index.html +7 -0
- metadata +52 -18
- data/_includes/themes/jmblog-theme/components/share_buttons +0 -19
- data/_includes/themes/jmblog-theme/theme/holding.html +0 -53
- data/assets/img/balloon-3206530_1920.jpg +0 -0
- data/assets/img/head-shot-square.jpg +0 -0
- data/assets/js/error.bundle.js +0 -2
- data/assets/js/error.bundle.js.br +0 -0
- data/assets/js/error.js.map +0 -1
- data/assets/js/holding.bundle.js +0 -2
- data/assets/js/holding.bundle.js.br +0 -0
- data/assets/js/holding.js.map +0 -1
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
<section class="hero is-dark">
|
|
2
|
+
<div class="hero-body">
|
|
3
|
+
<h4 class="title is-6 is-spaced">Related posts</h4>
|
|
4
|
+
|
|
5
|
+
<div class="columns is-multiline">
|
|
6
|
+
|
|
7
|
+
{% assign maxRelated = 4 %}
|
|
8
|
+
{% assign minCommonTags = 1 %}
|
|
9
|
+
{% assign maxRelatedCounter = 0 %}
|
|
10
|
+
|
|
11
|
+
{% assign posts = site.posts | where_exp: "item", "item.slug != page.slug" %}
|
|
12
|
+
{% for post in posts %}
|
|
13
|
+
{% assign sameTagCount = 0 %}
|
|
14
|
+
|
|
15
|
+
{% for category in post.categories %}
|
|
16
|
+
{% if page.categories contains category %}
|
|
17
|
+
{% assign sameTagCount = sameTagCount | plus: 1 %}
|
|
18
|
+
{% endif %}
|
|
19
|
+
{% endfor %}
|
|
20
|
+
|
|
21
|
+
{% if sameTagCount >= minCommonTags %}
|
|
22
|
+
<!-- START related component -->
|
|
23
|
+
<div class="column is-one-quarter">
|
|
24
|
+
<a href="{{ post.url }}">
|
|
25
|
+
<div class="box has-min-height px-3 py-3 is-shadowless">
|
|
26
|
+
<article class="media">
|
|
27
|
+
<div class="media-left is-hidden-tablet-only">
|
|
28
|
+
<figure class="image is-64x64">
|
|
29
|
+
<img src="{{ post.image.path | default: '/assets/img/ph.png' | append: '?nf_resize=smartcrop&w=64&h=64' }}" alt="{{ post.title }}">
|
|
30
|
+
</figure>
|
|
31
|
+
</div>
|
|
32
|
+
<div class="media-content">
|
|
33
|
+
<p class="is-size-6 has-text-black">
|
|
34
|
+
{{ post.title | truncatewords: 15 }}
|
|
35
|
+
</p>
|
|
36
|
+
</div>
|
|
37
|
+
</article>
|
|
38
|
+
</div>
|
|
39
|
+
</a>
|
|
40
|
+
</div>
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
<!-- END related component -->
|
|
44
|
+
{% assign maxRelatedCounter = maxRelatedCounter | plus: 1 %}
|
|
45
|
+
{% if maxRelatedCounter >= maxRelated %}
|
|
46
|
+
{% break %}
|
|
47
|
+
{% endif %}
|
|
48
|
+
{% endif %}
|
|
49
|
+
|
|
50
|
+
{% endfor %}
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
</div>
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
</div>
|
|
70
|
+
</section>
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<span class="icons is-pulled-right">
|
|
2
|
+
<span class="is-size-7">share </span>
|
|
3
|
+
<span class="icon">
|
|
4
|
+
{%- comment -%} <a href="http://twitter.com/home?
|
|
5
|
+
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"> {%- endcomment -%}
|
|
6
|
+
<a href="https://twitter.com/intent/tweet?url={{ page.url | prepend: site.url | uri_encode }}&text={{ page.summary | truncate: 130 | uri_escape }}&hashtags={{ page.tags | join: "," }}">
|
|
7
|
+
<i class="fab fa-twitter"></i>
|
|
8
|
+
</a>
|
|
9
|
+
</span>
|
|
10
|
+
<span class="icon">
|
|
11
|
+
<a href="https://www.facebook.com/sharer.php?u={{ page.url | prepend: site.url | uri_encode }}" title="Share with facebook">
|
|
12
|
+
<i class="fab fa-facebook"></i>
|
|
13
|
+
</a>
|
|
14
|
+
</span>
|
|
15
|
+
<span class="icon">
|
|
16
|
+
<a href="https://www.linkedin.com/shareArticle?url={{ page.url | prepend: site.url | uri_encode }}&mini=true&title={{ page.title | uri_escape }}&summary={{ page.summary | uri_escape }}&source={{ site.author | append: ' | ' | uri_escape }}{{ site.title | uri_escape }}" title="Share with facebook">
|
|
17
|
+
<i class="fab fa-linkedin"></i>
|
|
18
|
+
</a>
|
|
19
|
+
</span>
|
|
20
|
+
</span>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{% if page.author != null %}
|
|
2
|
+
{% assign author = site.authors | find: "name", page.author | first %}
|
|
3
|
+
{% comment %} page author is not null {% endcomment %}
|
|
4
|
+
{% else %}
|
|
5
|
+
{% assign author = site.authors | find: "name", site.author | first %}
|
|
6
|
+
{% comment %} page author is null revert to {{ site.author }} {% endcomment %}
|
|
7
|
+
{% endif %}
|
|
8
|
+
{% unless author.social.linkedin == null %}
|
|
9
|
+
<span class="icon">
|
|
10
|
+
<a href="https://www.linkedin.com/in/{{ author.social.linkedin }}">
|
|
11
|
+
<i class="fab fa-linkedin has-text-black"></i>
|
|
12
|
+
</a>
|
|
13
|
+
</span>
|
|
14
|
+
{% endunless %}
|
|
15
|
+
{% unless author.social.twitter == null %}
|
|
16
|
+
<span class="icon">
|
|
17
|
+
<a href="https://twitter.com/{{ author.social.twitter }}">
|
|
18
|
+
<i class="fab fa-twitter has-text-black"></i>
|
|
19
|
+
</a>
|
|
20
|
+
</span>
|
|
21
|
+
{% endunless %}
|
|
22
|
+
{% unless author.social.medium == null %}
|
|
23
|
+
<span class="icon">
|
|
24
|
+
<a href="https://medium.com/{{ author.social.medium }}">
|
|
25
|
+
<i class="fab fa-medium-m has-text-black"></i>
|
|
26
|
+
</a>
|
|
27
|
+
</span>
|
|
28
|
+
{% endunless %}
|
|
29
|
+
<span class="icon">
|
|
30
|
+
<a href="/feed.xml" class="RSS Feed">
|
|
31
|
+
<i class="fas fa-rss has-text-black"></i>
|
|
32
|
+
</a>
|
|
33
|
+
</span>
|
|
34
|
+
<span class="icon">
|
|
35
|
+
<a href="javascript:void(0)" class="bookmark-this">
|
|
36
|
+
<i class="far fa-bookmark has-text-black"></i>
|
|
37
|
+
</a>
|
|
38
|
+
</span>
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
|
|
2
|
+
<!-- Featured post -->
|
|
3
|
+
<div class="container">
|
|
4
|
+
{% assign iter = "first" %}
|
|
5
|
+
{% for post in paginator.posts %}
|
|
6
|
+
{% if iter == "first" %}
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
{% if paginator.page == 1 %}
|
|
10
|
+
{% assign first_page_first_post = true %}
|
|
11
|
+
<section class="section featured-post">
|
|
12
|
+
<a href="{{ post.url }}">
|
|
13
|
+
<div class="card is-shadowless">
|
|
14
|
+
<h2 class="title is-size-3 is-size-5-mobile padded-multiline">
|
|
15
|
+
<span>{{post.title}}
|
|
16
|
+
{% unless post.subtitle == null %} - {{ post.subtitle }}{% endunless %}
|
|
17
|
+
</span></h2>
|
|
18
|
+
<div class="card-image">
|
|
19
|
+
<figure class="image is-2by1 is-relative">
|
|
20
|
+
<a href="{{ post.url }}">
|
|
21
|
+
<img
|
|
22
|
+
data-src="{{ post.image.path | default: 'https://via.placeholder.com/910x455.png' | append: '?nf_resize=fit&w=910'}}"
|
|
23
|
+
data-lowsrc="{{ post.image.path | default: 'https://via.placeholder.com/910x455.png' | append: '?nf_resize=fit&w=100'}}"
|
|
24
|
+
alt="Image by {{page.image.author}} on {{page.image.source}}"
|
|
25
|
+
class="lazyload blur-up">
|
|
26
|
+
</a>
|
|
27
|
+
{% assign postcontent = post.content %}{% comment %}TODO: improve this as a include parameter{% endcomment %}
|
|
28
|
+
{% capture readingtime %}{% include themes/jmblog-theme/components/reading-time.html %}{% endcapture %}
|
|
29
|
+
{% if readingtime.size > 1 %}
|
|
30
|
+
<span class="tag is-white is-ontop-right">{{ readingtime | strip }}</span>
|
|
31
|
+
{% endif %}
|
|
32
|
+
</figure>
|
|
33
|
+
</div>
|
|
34
|
+
<div class="card-content">
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<div class="content">
|
|
39
|
+
<a href="{{ post.url }}" class="has-text-black">
|
|
40
|
+
{{ post.summary }}
|
|
41
|
+
</a>
|
|
42
|
+
</div>
|
|
43
|
+
<div class="tags">
|
|
44
|
+
{% for tag in post.tags %}
|
|
45
|
+
<span class="tag">#{{ tag }}</span>
|
|
46
|
+
{% endfor %}
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
</a>
|
|
51
|
+
</section>
|
|
52
|
+
|
|
53
|
+
<hr>
|
|
54
|
+
{% endif %}<!-- End page 1 -->
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
<!-- Main section -->
|
|
58
|
+
<section class="section">
|
|
59
|
+
<div class="columns">
|
|
60
|
+
<!-- Main area column -->
|
|
61
|
+
<div class="column is-two-thirds">
|
|
62
|
+
|
|
63
|
+
{% if paginator.page == 1 %}
|
|
64
|
+
<h2 class="title is-3 is-uppercase">Recent Articles</h2>
|
|
65
|
+
{% endif %}
|
|
66
|
+
|
|
67
|
+
<div class="article-list">
|
|
68
|
+
{% endif %}<!-- End first iteration-->
|
|
69
|
+
|
|
70
|
+
<!-- Articles -->
|
|
71
|
+
{% unless first_page_first_post %}
|
|
72
|
+
{% include themes/jmblog-theme/components/article_highlight.html post=post %}
|
|
73
|
+
{% endunless %}
|
|
74
|
+
|
|
75
|
+
{% assign iter = null %}
|
|
76
|
+
{% assign first_page_first_post = false %}
|
|
77
|
+
{% endfor %}
|
|
78
|
+
</div><!-- End articles list -->
|
|
79
|
+
|
|
80
|
+
{% include themes/jmblog-theme/components/pagination_links.html %}
|
|
81
|
+
|
|
82
|
+
</div><!-- end left column -->
|
|
83
|
+
|
|
84
|
+
<!-- Right side column -- Author details -->
|
|
85
|
+
<div class="column">
|
|
86
|
+
<h2 class="title is-3 is-uppercase">The Author</h2>
|
|
87
|
+
{% include themes/jmblog-theme/components/author.html sidebar=true %}
|
|
88
|
+
</div>
|
|
89
|
+
|
|
90
|
+
</div><!-- End columns container -->
|
|
91
|
+
|
|
92
|
+
</section>
|
|
93
|
+
|
|
94
|
+
</div>
|
|
@@ -1,19 +1,26 @@
|
|
|
1
|
-
<div class="debug debug-themes__jmblog-theme__page">
|
|
2
1
|
|
|
3
2
|
{%comment%}
|
|
4
3
|
Wrap user content, potentially include components that
|
|
5
4
|
render front matter as content
|
|
6
5
|
{%endcomment%}
|
|
6
|
+
<span class="is-block has-text-centered is-hidden-desktop">
|
|
7
|
+
<span class="icon">
|
|
8
|
+
<i class="fas fa-infinity"></i>
|
|
9
|
+
{%- comment -%} <i class="fas fa-paper-plane"></i> {%- endcomment -%}
|
|
10
|
+
{%- comment -%} <i class="fas fa-leaf"></i> {%- endcomment -%}
|
|
11
|
+
{%- comment -%} <i class="fas fa-grip-lines"></i> {%- endcomment -%}
|
|
12
|
+
{%- comment -%} <i class="fas fa-mug-hot"></i> {%- endcomment -%}
|
|
13
|
+
</span>
|
|
14
|
+
</span>
|
|
7
15
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
<div class="
|
|
12
|
-
|
|
13
|
-
|
|
16
|
+
<section class="section">
|
|
17
|
+
<div class="container">
|
|
18
|
+
<div class="columns">
|
|
19
|
+
<div class="column is-10 is-offset-1">
|
|
20
|
+
<div class="content">
|
|
21
|
+
{{ content }}
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
14
25
|
</div>
|
|
15
|
-
</
|
|
16
|
-
|
|
17
|
-
{% include themes/jmblog-theme/components/social_buttons_large.html %}
|
|
18
|
-
|
|
19
|
-
</div>
|
|
26
|
+
</section>
|
|
@@ -1,51 +1,77 @@
|
|
|
1
|
-
<
|
|
1
|
+
<span class="is-block has-text-centered is-hidden-desktop">
|
|
2
|
+
<span class="icon">
|
|
3
|
+
<i class="fas fa-infinity"></i>
|
|
4
|
+
{%- comment -%} <i class="fas fa-paper-plane"></i> {%- endcomment -%}
|
|
5
|
+
{%- comment -%} <i class="fas fa-leaf"></i> {%- endcomment -%}
|
|
6
|
+
{%- comment -%} <i class="fas fa-grip-lines"></i> {%- endcomment -%}
|
|
7
|
+
{%- comment -%} <i class="fas fa-mug-hot"></i> {%- endcomment -%}
|
|
8
|
+
</span>
|
|
9
|
+
</span>
|
|
10
|
+
{%- comment -%} <span class="is-size-3 is-block is-family-secondary has-text-centered"></span> {%- endcomment -%}
|
|
11
|
+
<section class="section" id="main_article">
|
|
12
|
+
<div class="container">
|
|
13
|
+
<div class="columns">
|
|
14
|
+
<div class="column is-10 is-offset-1">
|
|
2
15
|
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
<ul class="tag-box list-inline pull-right hidden-xs hidden-sm">
|
|
12
|
-
{% assign tags_list = page.tags %}
|
|
13
|
-
{% assign nobadges = true %}
|
|
14
|
-
{% include JB/tags_list %}
|
|
15
|
-
</ul>
|
|
16
|
-
{% endunless %}
|
|
17
|
-
{{ page.date | date_to_long_string }} - <small class="reading-time eta">calculating reading time...</small> -
|
|
16
|
+
<article
|
|
17
|
+
data-words="{{ content | number_of_words }}"
|
|
18
|
+
class="pb-4">
|
|
19
|
+
<h1 class="title is-2 is-family-secondary" id="article_heading">{{ page.title }}</h1>
|
|
20
|
+
{% unless page.subtitle == null %}
|
|
21
|
+
<h2 class="subtitle is-6 is-uppercase">{{ page.subtitle }}</h2>
|
|
22
|
+
{% endunless %}
|
|
23
|
+
<time class="is-size-7 has-text-black" datetime="{{ page.date | date_to_xmlschema }}"><em>{{ page.date | date: "%e %b" | append: " -" }}</em></time>
|
|
18
24
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
25
|
+
{% assign postcontent = content %}
|
|
26
|
+
{% capture readingtime %}{% include themes/jmblog-theme/components/reading-time.html %}{% endcapture %}
|
|
27
|
+
{% if readingtime.size > 1 %}
|
|
28
|
+
<span class="is-size-7 has-text-black">{{ readingtime | strip }}</span>
|
|
29
|
+
{% endif %}
|
|
24
30
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
31
|
+
{% include themes/jmblog-theme/components/share_buttons.html %}
|
|
32
|
+
{% include themes/jmblog-theme/components/img.html src=page.image.path alt=page.title %}
|
|
33
|
+
<span class="is-size-7 mb-5 is-block">Image by <a href="{{ page.image.url }}">{{ page.image.author }}</a> from <a href="{{ page.image.url }}">{{ page.image.source }}</a></span>
|
|
34
|
+
|
|
35
|
+
<div class="content is-double-spaced is-size-5 is-family-secondary pb-6">
|
|
36
|
+
{{content}}
|
|
37
|
+
</div>
|
|
38
|
+
|
|
39
|
+
<div class="columns is-mobile">
|
|
40
|
+
<div class="column">
|
|
41
|
+
<div class="tags">
|
|
42
|
+
{% if page.tags.size > 0 %}
|
|
43
|
+
{% for tag in page.tags %}
|
|
44
|
+
<span class="tag">#{{ tag }}</span>
|
|
45
|
+
{% endfor %}
|
|
46
|
+
{% endif %}
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
<div class="column">
|
|
50
|
+
{% include themes/jmblog-theme/components/share_buttons.html %}
|
|
51
|
+
</div>
|
|
52
|
+
</div>
|
|
53
|
+
{%- comment -%}
|
|
54
|
+
<div class="is-clearfix">
|
|
55
|
+
{% if page.tags.size > 0 %}
|
|
56
|
+
{% for tag in page.tags %}
|
|
57
|
+
<span class="tag">#{{ tag }}</span>
|
|
58
|
+
{% endfor %}
|
|
59
|
+
{% endif %}
|
|
60
|
+
{% include themes/jmblog-theme/components/share_buttons.html %}
|
|
61
|
+
</div> {%- endcomment -%}
|
|
62
|
+
|
|
63
|
+
<hr>
|
|
64
|
+
</article>
|
|
65
|
+
|
|
66
|
+
<h4 class="title is-6">The Author</h4>
|
|
67
|
+
{% include themes/jmblog-theme/components/author.html is_media_object=true %}
|
|
68
|
+
|
|
69
|
+
<hr>
|
|
70
|
+
|
|
71
|
+
{% include themes/jmblog-theme/components/comments.html %}
|
|
30
72
|
|
|
31
|
-
|
|
32
|
-
<div class="">
|
|
33
|
-
<ul class="pager">
|
|
34
|
-
{% if page.previous %}
|
|
35
|
-
<li class="previous"><a href="{{ BASE_PATH }}{{ page.previous.url }}" title="{{ page.previous.title }}" data-toggle="tooltip" data-placement="right">← Previous</a></li>
|
|
36
|
-
{% else %}
|
|
37
|
-
<li class="previous disabled"><a>← Previous</a></li>
|
|
38
|
-
{% endif %}
|
|
39
|
-
{% comment %}<li><a href="{{ BASE_PATH }}{{ site.JB.archive_path }}">Archive</a></li>{% endcomment %}
|
|
40
|
-
{% if page.next %}
|
|
41
|
-
<li class="next"><a href="{{ BASE_PATH }}{{ page.next.url }}" title="{{ page.next.title }}" data-toggle="tooltip" data-placement="left">Next →</a></li>
|
|
42
|
-
{% else %}
|
|
43
|
-
<li class="next disabled"><a>Next →</a>
|
|
44
|
-
{% endif %}
|
|
45
|
-
</ul>
|
|
73
|
+
</div>
|
|
46
74
|
</div>
|
|
47
|
-
<hr>
|
|
48
|
-
{% include JB/comments %}
|
|
49
75
|
</div>
|
|
50
76
|
</section>
|
|
51
|
-
|
|
77
|
+
{% include themes/jmblog-theme/components/related_articles.html %}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!doctype html><html><head>{% include themes/jmblog-theme/components/head.html %}</head><body id="jmoxon">{% include themes/jmblog-theme/components/analytics/googletagmanager_body.html %}<header><section class="section">{% comment %}<div class="hero-body">{% endcomment %}<div class="container has-text-centered"><h2 class="subtitle is-size-4 is-size-6-mobile is-spaced is-uppercase">{{ site.tagline | default: "Set a site level variable called 'tagline'" }}</h2><h1 class="title is-size-1 is-size-2-mobile has-text-black is-family-secondary"><a href="/" class="has-text-black">{{ site.title }}</a></h1></div>{% comment %}</div>{% endcomment %}</section></header>{% include themes/jmblog-theme/components/navigation.html %} {{ content }} {% include themes/jmblog-theme/components/footer.html %}<script src="/assets/js/default.bundle.js?49eab7ab08d1346380ca"></script><script src="/assets/js/vendor.bundle.js?49eab7ab08d1346380ca"></script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<div class="debug debug-themes__jmblog__theme__holding"><!doctype html><html><head>{% comment %} Base template - this file should allow front end development without compiling jekyll build Todo: in-line critical site elements to allow development of theme outside of jekyll workflow {% endcomment %} {% include themes/jmblog-theme/components/head.html %}</head><body id="jmoxon">{% include themes/jmblog-theme/components/analytics/googletagmanager_body.html %}<main><section class="hero is-fullheight is-bold"><div class="hero-body"><div class="has-text-centered container"><div class="is-horizontal-center is-flex"><figure class="image is-128x128"><a href="/"><img class="is-rounded" src="{{ page.peep-image | default: '/assets/img/head-shot-square.jpg' }}?nf_resize={{ page.peep_image_nfresize | default: 'fit' }}&w={{page.peep_image_nfresize_w | default: 128 }}&h={{page.peep_image_nfresize_h | default: 128}}" alt="John Moxon - BA"><div class="is-rounded rounded-image-has-inner-shadow"></div></a></figure></div><h1 class="title is-size-1 is-size-2-mobile has-text-black is-family-secondary is-spaced"><a href="/" class="has-text-black">{{ page.headline }}</a></h1>{% unless page.quote == null %}<h2 class="subtitle is-size-4 is-size-6-mobile">{{ page.quote }} {% unless page.quote-attribution == null %} - <span class="is-size-6">{{ page.quote-attribution }}</span> {% endunless %}</h2>{% endunless %} {{ content }}</div></div></section></main>{% include themes/jmblog-theme/components/footer.html %}<script src="/assets/js/maintenance.bundle.js?49eab7ab08d1346380ca"></script></body></html></div>
|
data/_layouts/bio.html
ADDED
data/_layouts/default.html
CHANGED
|
@@ -3,8 +3,9 @@ theme :
|
|
|
3
3
|
name : jmblog-theme
|
|
4
4
|
---
|
|
5
5
|
{%comment%}
|
|
6
|
-
|
|
6
|
+
Highest level template - No markup
|
|
7
7
|
* Specifies the base html template -> themes/jmblog-theme/theme/default.html
|
|
8
|
+
Cascades {{content}} tag down
|
|
8
9
|
{%endcomment%}
|
|
9
10
|
|
|
10
|
-
|
|
11
|
+
{% include themes/jmblog-theme/theme/default.html %}
|
data/_layouts/error.html
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
theme :
|
|
3
|
-
|
|
4
|
-
layout: default
|
|
3
|
+
name : jmblog-theme
|
|
5
4
|
---
|
|
5
|
+
{%comment%}
|
|
6
|
+
Top level template - No markup
|
|
7
|
+
* Specifies the base html template -> themes/jmblog-theme/theme/default.html
|
|
8
|
+
* Alternate to the `default` template
|
|
9
|
+
{%endcomment%}
|
|
6
10
|
|
|
7
|
-
|
|
11
|
+
{% include themes/jmblog-theme/theme/maintenance.html %}
|