kaschber 0.2.0 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cf18f059b40be51da4194926e98dc040a3875f70a76c95dbf262d609e25fa19a
4
- data.tar.gz: 7df8ec512c8cc4bc15eeb0c987e9b70677218518e7e3c5dc1709aedf4ec2341a
3
+ metadata.gz: 63b91b1a955fb374d4a7369078b4a0a870acbefbb9536b742971e5ded7776bd3
4
+ data.tar.gz: 9c63be8fefb9b4fd129e07a48a084578581c3c937701f2a6680ba3854863de49
5
5
  SHA512:
6
- metadata.gz: 4e7eea72545fff885d44aa0a55f99de965149bd59e6fdcfff06d6cdb26e25de41985b73f93909fae6b58a59539c044a6c93005e31522f2f02858f1101f46d38e
7
- data.tar.gz: e2edc698ec406a5c8d345fcd69ddfcaddec0dabf68382d0f59a6f09103e4795f4f218ea84ad29d42a95dc61ddca7801295368e5788c41253c18f698f669a32f0
6
+ metadata.gz: 7a549469e15f72cdb5ad340dbaa5c8dcec10c2e628d4fc1f239e8f7bbc0fb419d0ffe9bdaa56769ae200635c19e92fc5d8d4d912d4f43b4a8645da6d2bb7fa8d
7
+ data.tar.gz: 4d4640dc48a077c639ba380083d59f97b63a8fd722487a0d905c400c35d95bd009da7c02ee7cd75dd37044af24f0a05711f804380cfa0bdbdd091aee490ba6df
data/README.md CHANGED
@@ -60,6 +60,7 @@ You can specifiy these additional customisation options per post or in the defau
60
60
  |-------------------------|-------------------|-----------------------------------|
61
61
  | show_recent_posts_footer | True | True, False |
62
62
  | post_image_style | Wide | Wide, Full, Small, Hidden |
63
+ | custom_excerpt | "" | <Your custom excerpt shown on the page and the post card> |
63
64
 
64
65
  Kaschber also features several points to inject your custom code into the template. You can create
65
66
  - `_includes/custom-head.html` to include custom css or any other tags which get rendered in the head section
@@ -81,6 +82,24 @@ cover: False
81
82
  ---
82
83
  ```
83
84
 
85
+ Then include the following Jekyll config in your `_config.yml`
86
+ ```
87
+ collections:
88
+ authors:
89
+ output: true
90
+
91
+ defaults:
92
+ - scope:
93
+ path: ""
94
+ type: "authors"
95
+ values:
96
+ layout: author
97
+ current: author
98
+ cover: false
99
+ class: 'author-template'
100
+ label: Author
101
+ ```
102
+
84
103
  ## Tags
85
104
  To create tags specifically, create a folder `_tags` and insert your tags there as markdown or html file. E.g.
86
105
  ```
@@ -89,6 +108,24 @@ description: Some of the greatest words ever spoken.
89
108
  cover: assets/images/speeches.jpg
90
109
  ```
91
110
 
111
+ Then include the following Jekyll config in your `_config.yml`
112
+ ```
113
+ collections:
114
+ tags:
115
+ output: true
116
+
117
+ defaults:
118
+ - scope:
119
+ path: ""
120
+ type: "tags"
121
+ values:
122
+ layout: tag
123
+ current: tag
124
+ cover: false
125
+ class: 'tag-template'
126
+ label: Tag
127
+ ```
128
+
92
129
  # Contribute
93
130
  If you would like to contribute, please keep the files as closely as possible to the original Ghost handlebar files. This will make maintenance easier. This is also the reason why the files haven't been really broken down into smaller parts.
94
131
 
@@ -1,16 +1,16 @@
1
1
  <!-- dynamically fixing the title for tag/author pages -->
2
2
  {% if page.url %}
3
3
  {% if page.url contains "tags/" %}
4
- {% assign title = page.url | remove: 'tag' | remove: '/' | url_decode | replace: '-', ' ' %}
4
+ {% assign title = page.url | remove: 'tag' | remove: '/' | url_decode | replace: '-', ' ' %}
5
5
  {% elsif page.url contains "authors/" %}
6
- {% assign username = page.url | remove: 'author' | remove: '/' | replace: '-', ' ' | remove: ' ' %}
7
- {% for author in site.authors %}
8
- {% if author.username == username %}
9
- {% assign title = author.name %}
10
- {% endif %}
11
- {% endfor %}
6
+ {% assign username = page.url | remove: 'author' | remove: '/' | replace: '-', ' ' | remove: ' ' %}
7
+ {% for author in site.authors %}
8
+ {% if author.username == username %}
9
+ {% assign title = author.name %}
10
+ {% endif %}
11
+ {% endfor %}
12
12
  {% endif %}
13
13
  {% endif %}
14
14
  {% if title %}
15
15
  {% assign title = title | append: ' - ' | append: site.title %}
16
- {% endif %}
16
+ {% endif %}
data/_includes/head.html CHANGED
@@ -1,12 +1,14 @@
1
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
- {%- seo -%}
6
-
7
- {%- feed_meta -%}
8
-
9
-
10
- {%- include custom-head.html -%}
11
-
12
- </head>
2
+ <meta charset="utf-8">
3
+ {%- include dynamic_title.html -%}
4
+
5
+ {%- seo -%}
6
+
7
+ {%- feed_meta -%}
8
+
9
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/built/global.css" | relative_url }}">
10
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/built/screen.css" | relative_url }}">
11
+
12
+ {%- include custom-head.html -%}
13
+
14
+ </head>
@@ -1,58 +1,51 @@
1
1
  {% assign words_per_minute = site.words_per_minute | default: 200 %}
2
2
  {% assign post = include.post %}
3
3
 
4
- <article class="post-card {{post_class}}{% if site.feed_layout == "Classic" %} {% if page.current == "home" %}
5
- {% if site.posts.first == post %} post-card-large{% elsif site.posts[1] == post or site.posts[2] == post %} dynamic{% endif %}{% endif %}{% endif %}
6
- {% if site.feed_layout == "Grid" %} keep-ratio{% endif %}{% if site.feed_layout == "List" %}{% if post.current == "home, paged" %} post-card-large{% endif %}{% endif %}">
7
-
8
- {% if post.cover %}
9
- <a class="post-card-image-link" href="{{ site.baseurl }}{{ post.url | remove_first: '/' }}">
10
-
11
- <img class="post-card-image"
12
- src="{{ site.baseurl }}{{ post.cover }}"
13
- alt="{% if post.cover_alt %}{{post.cover_alt}}{% else %}{{post.title}}{% endif %}"
14
- loading="lazy"
15
- />
16
- </a>
17
- {% endif %}
18
-
19
- <div class="post-card-content">
20
-
21
- <a class="post-card-content-link" href="{{ site.baseurl }}{{ post.url | remove_first: '/' }}">
22
-
23
- <header class="post-card-header">
24
- <div class="post-card-tags">
25
- {% if post.tags.size > 0 %}
26
- <span class="post-card-primary-tag">{{ post.tags | first | capitalize }}</span>
27
- {% endif %}
28
- {% if post.featured %}
29
- <span class="post-card-featured">{% include icons/fire.html %} Featured</span>
30
- {% endif %}
31
- </div>
32
- <h2 class="post-card-title">
33
- {{post.title}}
34
- </h2>
35
- </header>
36
- {% if post.custom_excerpt %}
37
- <div class="post-card-excerpt">{{post.custom_excerpt}}</div>
38
- {% else %}
39
- <div class="post-card-excerpt">{{ post.excerpt | strip_html }}</div>
40
- {% endif %}
41
- </a>
42
-
43
- <footer class="post-card-meta">
44
- <time class="post-card-meta-date" datetime="{{ post.date | date:'%e %B %Y' }}">{{ post.date | date:'%e %B %Y' }}</time>
45
- {% if post.reading_time %}
46
- <span class="post-card-meta-length">{{post.reading_time}}</span>
47
- {% endif %}
48
- {% assign words = post.content | strip_html | number_of_words %}
49
- {% if words <= words_per_minute %}
50
- <span class="post-card-meta-length">1 min read</span>
51
- {% else %}
52
- <span class="post-card-meta-length">{{ words | divided_by:words_per_minute }} min read</span>
53
- {% endif %}
54
- </footer>
55
-
56
- </div>
57
-
58
- </article>
4
+ <article class="post-card {{post_class}}{% if site.feed_layout == 'Classic' %}{% if page.current == 'home' %}{% if site.posts.first == post %} post-card-large{% elsif site.posts[1] == post or site.posts[2] == post %} dynamic{% endif %}{% endif %}{% endif %}
5
+ {% if site.feed_layout == 'Grid' %} keep-ratio{% endif %}{% if site.feed_layout == 'List' %}{% if post.current == 'home, paged' %} post-card-large{% endif %}{% endif %}">{% if post.cover %}
6
+ <a class="post-card-image-link" href="{{ site.baseurl }}{{ post.url | remove_first: '/' }}">
7
+
8
+ <img class="post-card-image" src="{{ site.baseurl }}{{ post.cover }}" alt="{% if post.cover_alt %}{{post.cover_alt}}{% else %}{{post.title}}{% endif %}" loading="lazy">
9
+ </a>
10
+ {% endif %}
11
+
12
+ <div class="post-card-content">
13
+
14
+ <a class="post-card-content-link" href="{{ site.baseurl }}{{ post.url | remove_first: '/' }}">
15
+
16
+ <header class="post-card-header">
17
+ <div class="post-card-tags">
18
+ {% if post.tags.size > 0 %}
19
+ <span class="post-card-primary-tag">{{ post.tags | first | capitalize }}</span>
20
+ {% endif %}
21
+ {% if post.featured %}
22
+ <span class="post-card-featured">{% include icons/fire.html %} Featured</span>
23
+ {% endif %}
24
+ </div>
25
+ <h2 class="post-card-title">
26
+ {{post.title}}
27
+ </h2>
28
+ </header>
29
+ {% if post.custom_excerpt %}
30
+ <div class="post-card-excerpt">{{post.custom_excerpt}}</div>
31
+ {% else %}
32
+ <div class="post-card-excerpt">{{ post.excerpt | strip_html }}</div>
33
+ {% endif %}
34
+ </a>
35
+
36
+ <footer class="post-card-meta">
37
+ <time class="post-card-meta-date" datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date:'%e %B %Y' }}</time>
38
+ {% if post.reading_time %}
39
+ <span class="post-card-meta-length">{{post.reading_time}}</span>
40
+ {% endif %}
41
+ {% assign words = post.content | strip_html | number_of_words %}
42
+ {% if words <= words_per_minute %}
43
+ <span class="post-card-meta-length">1 min read</span>
44
+ {% else %}
45
+ <span class="post-card-meta-length">{{ words | divided_by:words_per_minute }} min read</span>
46
+ {% endif %}
47
+ </footer>
48
+
49
+ </div>
50
+
51
+ </article>
data/_layouts/author.html CHANGED
@@ -3,63 +3,62 @@ layout: default
3
3
  ---
4
4
 
5
5
  <main id="site-main" class="site-main outer">
6
- <div class="post-feed inner">
7
-
8
- <section class="post-card post-card-large">
9
- {%if page.feature_image %}
10
- <div class="post-card-image-link">
11
- <img class="post-card-image"
12
- src="{{ site.baseurl }}{{ page.feature_image }}" alt="{{ page.name }}"
13
- />
14
- </div>
15
- {% endif %}
6
+ <div class="post-feed inner">
16
7
 
17
- <div class="post-card-content">
18
- <div class="post-card-content-link">
8
+ <section class="post-card post-card-large">
9
+ {%if page.feature_image %}
10
+ <div class="post-card-image-link">
11
+ <img class="post-card-image" src="{{ site.baseurl }}{{ page.feature_image }}" alt="{{ page.name }}">
12
+ </div>
13
+ {% endif %}
19
14
 
20
- {%if page.picture %}
21
- <img class="author-profile-pic" src="{{ site.baseurl }}{{ page.picture }}" alt="{{page.name}}" />
22
- {% endif %}
15
+ <div class="post-card-content">
16
+ <div class="post-card-content-link">
23
17
 
24
- <header class="post-card-header">
25
- <h2 class="post-card-title">{{page.name}}</h2>
26
- </header>
18
+ {%if page.picture %}
19
+ <img class="author-profile-pic" src="{{ site.baseurl }}{{ page.picture }}" alt="{{page.name}}"/>
20
+ {% endif %}
27
21
 
28
- {%if page.bio %}
29
- <div class="post-card-excerpt">{{page.bio}}</div>
30
- {% endif %}
22
+ <header class="post-card-header">
23
+ <h2 class="post-card-title">{{page.name}}</h2>
24
+ </header>
31
25
 
32
- <footer class="author-profile-footer">
33
- {%if page.location %}
34
- <div class="author-profile-location">{{page.location}}</div>
35
- {% endif %}
36
- <div class="author-profile-meta">
37
- {%if page.website %}
38
- <a class="author-profile-social-link" href="{{page.website}}" target="_blank" rel="noopener">{{page.website}}</a>
39
- {% endif %}
40
- {%if page.twitter_url %}
41
- <a class="author-profile-social-link" href="{{page.twitter_url}}" target="_blank" rel="noopener">{% include icons/twitter.html %}</a>
42
- {% endif %}
43
- {%if page.facebook_url %}
44
- <a class="author-profile-social-link" href="{{page.facebook_url}}" target="_blank" rel="noopener">{% include icons/facebook.html %}</a>
45
- {% endif %}
26
+ {%if page.bio %}
27
+ <div class="post-card-excerpt">{{page.bio}}</div>
28
+ {% endif %}
46
29
 
47
- {% if page.location %}
48
- <div class="author-location">{{ page.location }} <span class="bull">&bull;</span></div>
49
- {% endif %}
50
- </div>
51
- </footer>
30
+ <footer class="author-profile-footer">
31
+ {%if page.location %}
32
+ <div class="author-profile-location">{{page.location}}</div>
33
+ {% endif %}
34
+ <div class="author-profile-meta">
35
+ {%if page.website %}
36
+ <a class="author-profile-social-link" href="{{page.website}}" target="_blank" rel="noopener">{{page.website}}</a>
37
+ {% endif %}
38
+ {%if page.twitter_url %}
39
+ <a class="author-profile-social-link" href="{{page.twitter_url}}" target="_blank" rel="noopener">{% include icons/twitter.html %}</a>
40
+ {% endif %}
41
+ {%if page.facebook_url %}
42
+ <a class="author-profile-social-link" href="{{page.facebook_url}}" target="_blank" rel="noopener">{% include icons/facebook.html %}</a>
43
+ {% endif %}
52
44
 
45
+ {% if page.location %}
46
+ <div class="author-location">{{ page.location }}
47
+ <span class="bull">&bull;</span>
48
+ </div>
49
+ {% endif %}
53
50
  </div>
54
- </div>
51
+ </footer>
52
+
53
+ </div>
54
+ </div>
55
+
56
+ </section>
55
57
 
56
- </section>
57
-
58
- {% assign filtered_posts = site.posts | where: 'author', page.username %}
59
- {% for post in filtered_posts %}
60
- {% include post-card.html post=post %}
61
- {% endfor %}
58
+ {% assign filtered_posts = site.posts | where: 'author', page.username %}
59
+ {% for post in filtered_posts %}
60
+ {% include post-card.html post=post %}
61
+ {% endfor %}
62
62
 
63
- </div>
64
- </main>
65
-
63
+ </div>
64
+ </main>
@@ -1,119 +1,122 @@
1
1
  <!DOCTYPE html>
2
- <html lang="{{ site.locale }}"{% if site.color_scheme == "Dark" %} class="dark-mode"{% elsif site.color_scheme == "Auto" %} class="auto-color"{% endif %}>
3
- <head>
2
+ <html lang="{{ page.lang | default: site.lang }}" {% if site.color_scheme == "Dark" %} class="dark-mode"{% elsif site.color_scheme == "Auto" %} class="auto-color"{% endif %}>
4
3
 
5
- {% include dynamic_title.html %}
6
- <title>{% if title %}{{ title }}{% elsif page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
4
+ {% include head.html %}
7
5
 
8
- <meta charset="utf-8" />
9
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
10
- <meta name="HandheldFriendly" content="True" />
11
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
12
-
13
- <link rel="stylesheet" type="text/css" href="{{ "/assets/built/global.css" | relative_url }}">
14
- <link rel="stylesheet" type="text/css" href="{{ "/assets/built/screen.css" | relative_url }}">
15
-
16
- {% include head.html %}
17
-
18
- </head>
19
- <body class="{% if paginator.page > 1 %}paged archive-template{% elsif page.class %}{{ page.class }}{% else %}home-template{% endif %}
20
- {% if site.title_font == "Elegant serif" %} has-serif-title{% endif %}{% if site.body_font == "Modern sans-serif" %} has-sans-body{% endif %}
21
- {% if site.cover or page.cover %} has-cover {% endif %}{% if page.current == "home" %}{% unless site.show_logo_in_navigation %} no-logo{% endunless %}{% endif %}">
22
- <div class="viewport">
23
- <header id="gh-head" class="gh-head outer">
6
+ <body class="{% if paginator.page > 1 %}paged archive-template{% elsif page.class %}{{ page.class }}{% else %}home-template{% endif %}
7
+ {% if site.title_font == 'Elegant serif' %} has-serif-title{% endif %}{% if site.body_font == 'Modern sans-serif' %} has-sans-body{% endif %}
8
+ {% if site.cover or page.cover %} has-cover {% endif %}{% if page.current == 'home' %}{% unless site.show_logo_in_navigation %} no-logo{% endunless %}{% endif %}">
9
+ <div class="viewport">
10
+ <header id="gh-head" class="gh-head outer">
24
11
  <nav class="gh-head-inner inner">
25
- <div class="gh-head-brand">
26
- <a class="gh-head-logo{% unless site.logo %} no-image{% endunless %}" href="{{ site.url }}{{ site.baseurl }}">
27
- {% if site.logo %}
28
- <img src="{{ site.baseurl }}{{ site.logo }}" alt="{{ site.title }}" />
29
- {% else %}
30
- {{ site.title }}
31
- {% endif %}
32
- </a>
33
- <div class="gh-head-brand-wrapper">
34
- <a class="gh-burger" role="button">
35
- <div class="gh-burger-box">
36
- <div class="gh-burger-inner"></div>
37
- </div>
38
- </a>
12
+ <div class="gh-head-brand">
13
+ <a class="gh-head-logo{% unless site.logo %} no-image{% endunless %}" href="{{ site.url }}{{ site.baseurl }}">
14
+ {% if site.logo %}
15
+ <img src="{{ site.baseurl }}{{ site.logo }}" alt="{{ site.title }}">
16
+ {% else %}
17
+ {{ site.title }}
18
+ {% endif %}
19
+ </a>
20
+ <div class="gh-head-brand-wrapper">
21
+ <a class="gh-burger" role="button">
22
+ <div class="gh-burger-box">
23
+ <div class="gh-burger-inner"></div>
39
24
  </div>
25
+ </a>
40
26
  </div>
41
- <div class="gh-head-menu">
42
- <ul class="nav" role="menu">
43
- <li class="nav-home" role="menuitem"><a href="{{site.baseurl}}">Home</a></li>
44
- <li class="nav-about" role="menuitem"><a href="{{site.baseurl}}about/">About</a></li>
45
- <li class="nav-try-ghost" role="menuitem"><a href="{{site.baseurl}}impressum/">Impressum/Datenschutz</a></li>
46
- </ul>
27
+ </div>
28
+ <div class="gh-head-menu">
29
+ <ul class="nav" role="menu">
30
+ <li class="nav-home" role="menuitem">
31
+ <a href="{{site.baseurl}}">Home</a>
32
+ </li>
33
+ <li class="nav-about" role="menuitem">
34
+ <a href="{{site.baseurl}}about/">About</a>
35
+ </li>
36
+ <li class="nav-try-ghost" role="menuitem">
37
+ <a href="{{site.baseurl}}impressum/">Impressum/Datenschutz</a>
38
+ </li>
39
+ </ul>
40
+ </div>
41
+ <div class="gh-head-actions">
42
+ <div class="gh-social">
43
+ {% if site.facebook %}
44
+ <a href="https://facebook.com/{{ site.facebook }}" target="_blank" rel="noopener" class="gh-social-link gh-social-facebook">Facebook</a>
45
+ {% endif %}
46
+ {% if site.twitter %}
47
+ <a href="https://twitter.com/{{ site.twitter }}" target="_blank" rel="noopener" class="gh-social-link gh-social-twitter">Twitter</a>
48
+ {% endif %}
49
+ {% if site.github %}
50
+ <a href="https://github.com/{{ site.github }}" target="_blank" rel="noopener" class="gh-social-link gh-social-github">{% include icons/github.html %}</a>
51
+ {% endif %}
52
+ {% if site.rss %}
53
+ <a href="{{ site.baseurl }}{% if site.feed.path %}{{site.feed.path}}{% else %}feed.xml{% endif %}" target="_blank" rel="noopener" class="gh-social-link gh-social-rss">{% include icons/rss.html %}</a>
54
+ {% endif %}
47
55
  </div>
48
- <div class="gh-head-actions">
49
- <div class="gh-social">
50
- {% if site.facebook %}<a href="https://facebook.com/{{ site.facebook }}" target="_blank" rel="noopener" class="gh-social-link gh-social-facebook">Facebook</a>{% endif %}
51
- {% if site.twitter %}<a href="https://twitter.com/{{ site.twitter }}" target="_blank" rel="noopener" class="gh-social-link gh-social-twitter">Twitter</a>{% endif %}
52
- {% if site.github %}<a href="https://github.com/{{ site.github }}" target="_blank" rel="noopener" class="gh-social-link gh-social-github">{% include icons/github.html %}</a>{% endif %}
53
- {% if site.rss %}<a href="{{ site.baseurl }}{% if site.feed.path %}{{site.feed.path}}{% else %}feed.xml{% endif %}" target="_blank" rel="noopener" class="gh-social-link gh-social-rss">{% include icons/rss.html %}</a>{% endif %}
56
+ <!-- The big email subscribe modal content -->
57
+ {% if site.subscribers %}
58
+ <div id="subscribe" class="subscribe-overlay">
59
+ <a class="subscribe-overlay-close gh-head-button" href="#"></a>
60
+ <div class="subscribe-overlay-content">
61
+ {% if site.logo %}
62
+ <img class="subscribe-overlay-logo" src="{{ site.baseurl }}{{ site.logo }}" alt="{{ site.title }}">
63
+ {% endif %}
64
+ <h1 class="subscribe-overlay-title">Subscribe to {{ site.title }}</h1>
65
+ <p class="subscribe-overlay-description">Stay up to date! Get all the latest &amp; greatest posts delivered straight to your inbox</p>
66
+ {% include subscribe-form.html placeholder="youremail@example.com" %}
54
67
  </div>
55
- <!-- The big email subscribe modal content -->
56
- {% if site.subscribers %}
57
- <div id="subscribe" class="subscribe-overlay">
58
- <a class="subscribe-overlay-close gh-head-button" href="#"></a>
59
- <div class="subscribe-overlay-content">
60
- {% if site.logo %}
61
- <img class="subscribe-overlay-logo" src="{{ site.baseurl }}{{ site.logo }}" alt="{{ site.title }}" />
62
- {% endif %}
63
- <h1 class="subscribe-overlay-title">Subscribe to {{ site.title }}</h1>
64
- <p class="subscribe-overlay-description">Stay up to date! Get all the latest &amp; greatest posts delivered straight to your inbox</p>
65
- {% include subscribe-form.html placeholder="youremail@example.com" %}
66
- </div>
67
- </div>
68
- {% endif %}
69
- </div>
68
+ </div>
69
+ {% endif %}
70
+ </div>
70
71
  </nav>
71
- </header>
72
+ </header>
72
73
 
73
74
 
74
- <div class="site-content">
75
- {{ content }}
76
- <!-- Previous/next page links - displayed on every page -->
75
+ <div class="site-content">
76
+ {{ content }}
77
+ <!-- Previous/next page links - displayed on every page -->
77
78
 
78
- </div>
79
+ </div>
79
80
 
80
81
 
81
- <footer class="site-footer outer">
82
- <div class="inner">
83
- <section class="copyright"><a href="{{ site.url }}">{{ site.title }}</a> &copy; {{ site.time | date: '%Y' }}</section>
84
- <nav class="site-footer-nav">
85
- {% include footer-nav.html %}
86
- </nav>
87
- <div>Powered by <a href="https://jekyllrb.com/" target="_blank" rel="noopener">Jekyll</a>
88
- & <a href="https://github.com/Agraphie/kaschber" target="_blank" rel="noopener">Kaschber</a></div>
89
- </div>
90
- </footer>
82
+ <footer class="site-footer outer">
83
+ <div class="inner">
84
+ <section class="copyright">
85
+ <a href="{{ site.url }}">{{ site.title }}</a>
86
+ &copy; {{ site.time | date: '%Y' }}</section>
87
+ <nav class="site-footer-nav">
88
+ {% include footer-nav.html %}
89
+ </nav>
90
+ <div>Powered by
91
+ <a href="https://jekyllrb.com/" target="_blank" rel="noopener">Jekyll</a>
92
+ &
93
+ <a href="https://github.com/Agraphie/kaschber" target="_blank" rel="noopener">Kaschber</a>
94
+ </div>
95
+ </div>
96
+ </footer>
91
97
  </div>
92
- </body>
93
98
 
94
99
 
95
100
 
96
- <script
97
- src="https://code.jquery.com/jquery-3.5.1.min.js"
98
- integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
99
- crossorigin="anonymous">
100
- </script>
101
+ <script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
102
+
103
+ <script src="{{ "assets/built/kaschber.js" | relative_url }}"></script>
104
+
101
105
 
102
- <script src="{{ "assets/built/kaschber.js" | relative_url }}"></script>
106
+ <script>
107
+ $(document).ready(function() {
103
108
 
109
+ // Mobile Menu Trigger
110
+ $('.gh-burger').click(function() {
111
+ $('body').toggleClass('gh-head-open');
112
+ });
104
113
 
105
- <script>
106
- $(document).ready(function () {
107
- // Mobile Menu Trigger
108
- $('.gh-burger').click(function () {
109
- $('body').toggleClass('gh-head-open');
110
- });
111
- // FitVids - Makes video embeds responsive
112
- $(".gh-content").fitVids();
113
- });
114
- </script>
114
+ // FitVids - Makes video embeds responsive
115
+ $(".gh-content").fitVids();
116
+ });
117
+ </script>
115
118
 
116
- {% include custom-js.html %}
119
+ {% include custom-js.html %}
117
120
 
118
- </body>
119
- </html>
121
+ </body>
122
+ </html>