casjaysdev-jekyll-theme 0.1.4
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/.editorconfig +8 -0
- data/.gitignore +72 -0
- data/.travis.dnu +28 -0
- data/CNAME +1 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +175 -0
- data/LICENSE.md +675 -0
- data/README.md +7 -0
- data/_config.yml +247 -0
- data/_data/nav/external.yml +6 -0
- data/_data/nav/internal.yml +3 -0
- data/_drafts/.keep +0 -0
- data/_includes/casjays-footer.html +71 -0
- data/_includes/casjays-header.html +5 -0
- data/_includes/casjaysdev/ads.html +1 -0
- data/_includes/casjaysdev/eucookie.html +28 -0
- data/_includes/casjaysdev/google.html +18 -0
- data/_includes/casjaysdev/legal.html +25 -0
- data/_includes/casjaysdev/piwik.html +17 -0
- data/_includes/casjaysdev/rocketchat.html +12 -0
- data/_includes/casjaysdev/sharethis.html +26 -0
- data/_includes/casjaysdev/socialfooter.html +38 -0
- data/_includes/casjaysdev/sociallinks.html +39 -0
- data/_includes/casjaysdev/statcounter.html +20 -0
- data/_includes/casjaysdev/theme.html +13 -0
- data/_includes/casjaysdev/widgetbot.html +17 -0
- data/_includes/disqus.html +20 -0
- data/_includes/github.html +3 -0
- data/_includes/image-gallery.html +53 -0
- data/_includes/nav/external.html +9 -0
- data/_includes/nav/internal.html +12 -0
- data/_includes/nav/sidebars/blank.html +0 -0
- data/_includes/nav/sidebars/left.html +1 -0
- data/_includes/nav/sidebars/right.html +2 -0
- data/_includes/nav/top.html +21 -0
- data/_includes/paginator.liquid +14 -0
- data/_includes/read_time.html +3 -0
- data/_includes/themes/blank/layouts/default.html +22 -0
- data/_includes/themes/blank/meta.html +0 -0
- data/_includes/themes/blank/navigation.html +21 -0
- data/_includes/themes/hacker/layouts/default.html +73 -0
- data/_includes/themes/hacker/meta.html +50 -0
- data/_layouts/default.html +41 -0
- data/_layouts/errors.html +33 -0
- data/_layouts/page.html +13 -0
- data/_layouts/post.html +43 -0
- data/_pages/about.html +8 -0
- data/_pages/contact.html +32 -0
- data/_pages/gallery.html +9 -0
- data/_pages/index.html +10 -0
- data/_plugins/hook-add-last-modified-date.rb +9 -0
- data/_plugins/jekyll-remote-include.rb +24 -0
- data/_posts/2020-07-31-Updated-Theming-Engine.md +12 -0
- data/_posts/2020-07-31-new-deploy.md +12 -0
- data/assets/css/base.css +0 -0
- data/assets/css/hacker.css +978 -0
- data/assets/images/bkg.png +0 -0
- data/assets/images/blacktocat.png +0 -0
- data/assets/images/bullet.png +0 -0
- data/assets/images/loader.gif +0 -0
- data/assets/images/logo.png +0 -0
- data/assets/images/oops.gif +0 -0
- data/assets/js/fetch-url.js +7 -0
- data/assets/js/gh-blog.js +50 -0
- data/assets/js/posts.js +82 -0
- data/blog/catergories/catergories.html +13 -0
- data/blog/index.html +49 -0
- data/blog/tags/tags.html +13 -0
- data/casjaysdev-jekyll-theme.gemspec +43 -0
- data/error/404.html +32 -0
- data/error/500.html +31 -0
- data/feed.xml +37 -0
- data/images/.keep +1 -0
- data/images/powered_by_jekyll.jpg +0 -0
- data/sitemap.xml +27 -0
- data/templates/year-month-day-name.blank.md +12 -0
- data/templates/year-month-day-name.image.md +12 -0
- data/templates/year-month-day-name.link.md +12 -0
- data/templates/year-month-day-name.video.md +12 -0
- data/templates/year-month-day-name.yt.html +16 -0
- data/version.txt +1 -0
- metadata +453 -0
@@ -0,0 +1,26 @@
|
|
1
|
+
{% if site.share-this.enabled.footer == true %}
|
2
|
+
<div class="share-buttons" align="center">
|
3
|
+
{% if site.share-this.rss %}<a href="{{ site.feed.path | prepend: site.baseurl }} "><img alt="RSS Feed"
|
4
|
+
src="https://static.casjay.net/default-icons/social/rss-48x48.png" /></a>{% endif %}
|
5
|
+
|
6
|
+
{% if site.share-this.repo %}<a href="{{ site.share-this.repo }}" target="_blank" title="Github"><img alt="Tweet"
|
7
|
+
src="https://static.casjay.net/default-icons/social/github-48x48.png" /></a>{% endif %}
|
8
|
+
|
9
|
+
{% if site.share-this.email %}<a href="mailto:?subject=Thought you might like this site"><img alt="Send via email"
|
10
|
+
src="https://static.casjay.net/default-icons/social/email-48x48.png" /></a>{% endif %}
|
11
|
+
|
12
|
+
<br />
|
13
|
+
<br />
|
14
|
+
{% if site.share-this.enabled.script == true %}
|
15
|
+
<!-- ShareThis BEGIN -->
|
16
|
+
<div class="container" style="width: 20%; rows: 2; margin: 0 auto; columns: auto; text-align: center;" align="center">
|
17
|
+
<div class="sharethis-inline-share-buttons"></div>
|
18
|
+
<script type='text/javascript'
|
19
|
+
src='https://platform-api.sharethis.com/js/sharethis.js#property={{ site.share-this.code }}&product=inline-share-buttons'
|
20
|
+
async='async'></script>
|
21
|
+
</div>
|
22
|
+
{% endif %}
|
23
|
+
<!-- ShareThis END -->
|
24
|
+
</div>
|
25
|
+
<br />
|
26
|
+
{% endif %}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
<div class="share-buttons">
|
2
|
+
|
3
|
+
<a href="{{ site.feed.path | prepend: site.baseurl }}"><img alt="RSS Feed"
|
4
|
+
src="https://static.casjay.net/default-icons/social/rss-48x48.png" /></a>
|
5
|
+
|
6
|
+
<a href="{{ site.footer-links.github }}" target="_blank" title="Github"><img alt="Tweet"
|
7
|
+
src="https://static.casjay.net/default-icons/social/github-48x48.png" /></a>
|
8
|
+
|
9
|
+
<a href="https://stackoverflow.com/users/2524088/casjay"><a target="_blank" title="StackOverflow"><img
|
10
|
+
alt="Stackoverflow" src="https://static.casjay.net/default-icons/social/stackoverflow-48x48.png" /></a>
|
11
|
+
|
12
|
+
<a href="http://www.tumblr.com/share?v=3&u=https://static.casjay.net{{page.url}}"e=&s=" target="_blank"
|
13
|
+
title="Post to Tumblr"
|
14
|
+
onclick="window.open('http://www.tumblr.com/share?v=3&u=' + encodeURIComponent(document.URL) + '"e=' + encodeURIComponent(document.title)); return false;"><img
|
15
|
+
alt="Post to Tumblr" src="https://static.casjay.net/default-icons/social/tumblr-48x48.png" /></a>
|
16
|
+
|
17
|
+
<a href="http://pinterest.com/pin/create/button/?url=https://static.casjay.net{{page.url}}&description="
|
18
|
+
target="_blank" title="Pin it"
|
19
|
+
onclick="window.open('http://pinterest.com/pin/create/button/?url=' + encodeURIComponent(document.URL) + '&description=' + encodeURIComponent(document.title)); return false;"><img
|
20
|
+
alt="Pin it" src="https://static.casjay.net/default-icons/social/pinterest-48x48.png" /></a> <br />
|
21
|
+
|
22
|
+
<a href="http://www.linkedin.com/shareArticle?mini=true&url=https://static.casjay.net{{page.url}}&title=&summary=&source=https://static.casjay.net{{page.url}}"
|
23
|
+
target="_blank" title="Share on LinkedIn"
|
24
|
+
onclick="window.open('http://www.linkedin.com/shareArticle?mini=true&url=' + encodeURIComponent(document.URL) + '&title=' + encodeURIComponent(document.title)); return false;"><img
|
25
|
+
alt="Share on LinkedIn" src="https://static.casjay.net/default-icons/social/linkedin-48x48.png" /></a>
|
26
|
+
|
27
|
+
<a href="http://wordpress.com/press-this.php?u=https://static.casjay.net{{page.url}}"e=&s=" target="_blank"
|
28
|
+
title="Publish on WordPress"
|
29
|
+
onclick="window.open('http://wordpress.com/press-this.php?u=' + encodeURIComponent(document.URL) + '"e=' + encodeURIComponent(document.title)); return false;"><img
|
30
|
+
alt="Publish on WordPress" src="https://static.casjay.net/default-icons/social/wordpress-48x48.png" /></a>
|
31
|
+
|
32
|
+
<a href="https://pinboard.in/popup_login/?url=https://static.casjay.net{{page.url}}&title=&description="
|
33
|
+
target="_blank" title="Save to Pinboard"
|
34
|
+
onclick="window.open('https://pinboard.in/popup_login/?url=' + encodeURIComponent(document.URL) + '&title=' + encodeURIComponent(document.title)); return false;"><img
|
35
|
+
alt="Save to Pinboard" src="https://static.casjay.net/default-icons/social/pinboard-48x48.png" /></a>
|
36
|
+
<br />
|
37
|
+
|
38
|
+
</div>
|
@@ -0,0 +1,39 @@
|
|
1
|
+
<p class="mx-auto" style="width: 200px;">
|
2
|
+
Social Links: <br />
|
3
|
+
{% if site.social-links.rss %}<a href="{{ site.feed.path | prepend: site.baseurl }}"><i
|
4
|
+
class="svg-icon rss"></i></a>{% endif %}
|
5
|
+
|
6
|
+
{% if site.social-links.github %}<a href="https://github.com/{{ site.social-links.github }}" target="_blank"><i
|
7
|
+
class="svg-icon github"></i></a>{% endif %}
|
8
|
+
|
9
|
+
{% if site.social-links.dribbble %}<a href="https://dribbble.com/{{ site.social-links.dribbble }}" target="_blank"><i
|
10
|
+
class="svg-icon dribbble"></i></a>{% endif %}
|
11
|
+
|
12
|
+
{% if site.social-links.facebook %}<a href="https://www.facebook.com/{{ site.social-links.facebook }}"
|
13
|
+
target="_blank"><i class="svg-icon facebook"></i></a>{% endif %}
|
14
|
+
|
15
|
+
{% if site.social-links.flickr %}<a href="https://www.flickr.com/{{ site.social-links.flickr }}" target="_blank"><i
|
16
|
+
class="svg-icon flickr"></i></a>{% endif %}
|
17
|
+
|
18
|
+
{% if site.social-links.instagram %}<a href="https://instagram.com/{{ site.social-links.instagram }}"
|
19
|
+
target="_blank"><i class="svg-icon instagram"></i></a>{% endif %}
|
20
|
+
|
21
|
+
{% if site.social-links.linkedin %}<a href="https://www.linkedin.com/in/{{ site.social-links.linkedin }}"
|
22
|
+
target="_blank" target="_blank"><i class="svg-icon linkedin"></i></a>{% endif %}
|
23
|
+
|
24
|
+
{% if site.social-links.pinterest %}<a href="https://www.pinterest.com/{{ site.social-links.pinterest }}"
|
25
|
+
target="_blank"><i class="svg-icon pinterest"></i></a>{% endif %}
|
26
|
+
|
27
|
+
{% if site.social-links.twitter %}<a href="https://www.twitter.com/{{ site.social-links.twitter }}" target="_blank"><i
|
28
|
+
class="svg-icon twitter"></i></a>{% endif %}
|
29
|
+
|
30
|
+
{% if site.social-links.stackoverflow %}<a href="http://stackoverflow.com/{{ site.social-links.stackoverflow }}"
|
31
|
+
target="_blank"><i class="svg-icon stackoverflow"></i></a>{% endif %}
|
32
|
+
|
33
|
+
{% if site.social-links.youtube %}<a href="https://youtube.com/{{ site.social-links.youtube }}" target="_blank"><i
|
34
|
+
class="svg-icon youtube"></i></a>{% endif %}
|
35
|
+
|
36
|
+
{% if site.social-links.email %}<a href="mailto:{{ site.social-links.email }}" target="_blank"><i
|
37
|
+
class="svg-icon email"></i></a>{% endif %}
|
38
|
+
<br />
|
39
|
+
</p>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
{% if site.piwik.url %}
|
2
|
+
<script type="text/javascript">
|
3
|
+
var sc_project = {{ site.statuscounter.id }};
|
4
|
+
var sc_invisible = 0;
|
5
|
+
var sc_security = "{{ site.statuscounter.code }}";
|
6
|
+
var scJsHost = (("https:" == document.location.protocol) ?
|
7
|
+
"https://secure." : "http://www.");
|
8
|
+
document.write("<sc" + "ript type='text/javascript' src='" +
|
9
|
+
scJsHost +
|
10
|
+
"statcounter.com/counter/counter.js'></" + "script>");
|
11
|
+
</script>
|
12
|
+
<noscript>
|
13
|
+
<div class="statcounter"><a title="web stats"
|
14
|
+
href="https://statcounter.com/p{{ site.statuscounter.id }}/summary/?guest=1" target="_blank">
|
15
|
+
<img class="statcounter" src="//c.statcounter.com/{{ site.statuscounter.id }}/0/{{ site.statuscounter.code }}/0/"
|
16
|
+
alt="web stats"></a>
|
17
|
+
</div>
|
18
|
+
</noscript>
|
19
|
+
<br />
|
20
|
+
{% endif %}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<!-- Theme powered -->
|
2
|
+
{% if site.options.engine == true %}
|
3
|
+
<div class="text-center" style="color: royalblue;">
|
4
|
+
<br />
|
5
|
+
Made with 💜💜💜💜💜💜 by <br />
|
6
|
+
<a href="http://github.com/casjay" target="_blank" rel="noopener">
|
7
|
+
Jason M. Hempstead (Casjay)</a><br />
|
8
|
+
This site is powered by an
|
9
|
+
<a href="https://github.com/casjay-templates/jekyll-site" target="_blank"> open source </a>theme
|
10
|
+
</div>
|
11
|
+
<br />
|
12
|
+
{% endif %}
|
13
|
+
<!-- End Theme powered -->
|
@@ -0,0 +1,17 @@
|
|
1
|
+
{% if site.discord.enable == true %}
|
2
|
+
<!-- discord widget -->
|
3
|
+
<script src="https://cdn.jsdelivr.net/npm/@widgetbot/crate@3" async defer>
|
4
|
+
|
5
|
+
new Crate({
|
6
|
+
server: '{{ site.discord.server }}',
|
7
|
+
channel: '{{ site.discord.channel }}',
|
8
|
+
location: ['{{ site.discord.horizontal }}', '{{ site.discord.vertical }}'],
|
9
|
+
|
10
|
+
})
|
11
|
+
|
12
|
+
crate.notify(
|
13
|
+
|
14
|
+
)
|
15
|
+
</script>
|
16
|
+
<!-- end discord widget -->
|
17
|
+
{% endif %}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
{% if site.disqus %}
|
2
|
+
<hr style="width:75%" />
|
3
|
+
<div class="comments">
|
4
|
+
<div id="disqus_thread"></div>
|
5
|
+
<script type="text/javascript">
|
6
|
+
var disqus_shortname = '{{ site.disqus }}';
|
7
|
+
|
8
|
+
(function () {
|
9
|
+
var dsq = document.createElement('script');
|
10
|
+
dsq.type = 'text/javascript';
|
11
|
+
dsq.async = true;
|
12
|
+
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
13
|
+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
14
|
+
})();
|
15
|
+
|
16
|
+
</script>
|
17
|
+
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by
|
18
|
+
Disqus.</a></noscript>
|
19
|
+
</div>
|
20
|
+
{% endif %}
|
@@ -0,0 +1,53 @@
|
|
1
|
+
<style>
|
2
|
+
.image-gallery {
|
3
|
+
overflow: auto;
|
4
|
+
margin-left: -1% !important;
|
5
|
+
}
|
6
|
+
|
7
|
+
.image-gallery a {
|
8
|
+
float: left;
|
9
|
+
display: block;
|
10
|
+
margin: 0 0 1% 1%;
|
11
|
+
width: 19%;
|
12
|
+
text-align: center;
|
13
|
+
text-decoration: none !important;
|
14
|
+
}
|
15
|
+
|
16
|
+
.image-gallery a span {
|
17
|
+
display: block;
|
18
|
+
text-overflow: ellipsis;
|
19
|
+
overflow: hidden;
|
20
|
+
white-space: nowrap;
|
21
|
+
padding: 3px 0;
|
22
|
+
}
|
23
|
+
|
24
|
+
.image-gallery a img {
|
25
|
+
width: 100%;
|
26
|
+
display: block;
|
27
|
+
}
|
28
|
+
|
29
|
+
</style>
|
30
|
+
|
31
|
+
<div class="row justify-content-md-center">
|
32
|
+
{% for file in site.static_files %}
|
33
|
+
{% if file.path contains include.folder %}
|
34
|
+
{% if file.extname == '.jpg' or file.extname == '.jpeg' or file.extname == '.JPG' or file.extname == '.JPEG' %}
|
35
|
+
{% assign filenameparts = file.path | split: "/" %}
|
36
|
+
{% assign filename = filenameparts | last | replace: file.extname,"" %}
|
37
|
+
|
38
|
+
<div class="col-md-4">
|
39
|
+
<div class="thumbnail">
|
40
|
+
<a href="{{ file.path | prepend: site.baseurl }}" title="{{ filename }}">
|
41
|
+
<img src="{{ file.path | prepend: site.baseurl }}" alt="{{ filename }}" title="{{ filename }}" alt="Lights"
|
42
|
+
style="width:100%">
|
43
|
+
<div class="caption">
|
44
|
+
<p>{{ filename }}</p>
|
45
|
+
</div>
|
46
|
+
</a>
|
47
|
+
</div>
|
48
|
+
</div>
|
49
|
+
|
50
|
+
{% endif %}
|
51
|
+
{% endif %}
|
52
|
+
{% endfor %}
|
53
|
+
</div>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
Site Links:<br />
|
2
|
+
{% assign navigation_pages = site.html_pages | sort: 'weight' %}
|
3
|
+
{% for p in navigation_pages | uniq %}
|
4
|
+
{% if p.weight %}
|
5
|
+
<ul>
|
6
|
+
<li>
|
7
|
+
<a href="{{ p.url | prepend: site.baseurl }}">{{ p.title }}</a>
|
8
|
+
</li>
|
9
|
+
</ul>
|
10
|
+
{% endif %}
|
11
|
+
{% endfor %}
|
12
|
+
<br>
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
{% include casjaysdev/sociallinks.html %}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<nav class="main-nav">
|
2
|
+
|
3
|
+
{% assign navigation_pages = site.html_pages | sort: 'weight' %}
|
4
|
+
{% for p in navigation_pages | uniq %}
|
5
|
+
{% if p.weight %}
|
6
|
+
{% if p.url == page.url %}
|
7
|
+
|
8
|
+
<a type="button" href="" class="sidebar-nav-item btn btn-outline-success disabled">{{ p.title }}
|
9
|
+
</a>
|
10
|
+
|
11
|
+
{% else %}
|
12
|
+
<a type="button" href="{{ p.url | prepend: site.baseurl }}"
|
13
|
+
class="sidebar-nav-item btn btn-primary active">{{ p.title }}
|
14
|
+
|
15
|
+
</a>
|
16
|
+
|
17
|
+
{% endif %}
|
18
|
+
{% endif %}
|
19
|
+
{% endfor %}
|
20
|
+
|
21
|
+
</nav>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
{% if paginator.total_pages > 1 %}
|
2
|
+
<ul class="pager">
|
3
|
+
{% if paginator.previous_page %}
|
4
|
+
<li class="previous">
|
5
|
+
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Newer Posts</a>
|
6
|
+
</li>
|
7
|
+
{% endif %}
|
8
|
+
{% if paginator.next_page %}
|
9
|
+
<li class="next">
|
10
|
+
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older Posts →</a>
|
11
|
+
</li>
|
12
|
+
{% endif %}
|
13
|
+
</ul>
|
14
|
+
{% endif %}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<div>
|
2
|
+
{{ content }}
|
3
|
+
</div>
|
4
|
+
|
5
|
+
{% elsif site.custom_theme.columns == "2" %}
|
6
|
+
<div>
|
7
|
+
{{ content }}
|
8
|
+
</div>
|
9
|
+
|
10
|
+
{% elsif site.custom_theme.columns == "3" %}
|
11
|
+
<div>
|
12
|
+
{{ content }}
|
13
|
+
</div>
|
14
|
+
|
15
|
+
{% else %}
|
16
|
+
<h1>
|
17
|
+
custom_theme/columns not set in _config.yml <br>
|
18
|
+
Your theme settings in _config.yml are incorrect <br>
|
19
|
+
Current columns: {{ site.custom_theme.columns }}
|
20
|
+
</h1>
|
21
|
+
{% endif %}
|
22
|
+
</div>
|
File without changes
|
@@ -0,0 +1,21 @@
|
|
1
|
+
{% if site.options.navigation.nonweighted == true %}
|
2
|
+
{% assign pages_list = site.pages %}
|
3
|
+
{% for node in pages_list %}
|
4
|
+
{% if node.title != null %}
|
5
|
+
{% if node.layout == "page" %}
|
6
|
+
<a href="{{ site.baseurl }}{{ node.url }}">{{ node.title }}</a>
|
7
|
+
{% endif %}
|
8
|
+
{% endif %}
|
9
|
+
{% endfor %}
|
10
|
+
|
11
|
+
{% elsif site.options.navigation.weighted == true %}
|
12
|
+
<nav>
|
13
|
+
{% assign navigation_pages = site.html_pages | sort: 'weight' %}
|
14
|
+
{% for p in navigation_pages %}
|
15
|
+
{% if p.weight %}
|
16
|
+
<a href="{{ site.baseurl }}{{ p.url }}" {% if p.url == page.url %} {% endif %}>{{ p.title }}</a>
|
17
|
+
{% endif %}
|
18
|
+
{% endfor %}
|
19
|
+
</nav>
|
20
|
+
|
21
|
+
{% endif %}
|
@@ -0,0 +1,73 @@
|
|
1
|
+
<div class="container-fluid align-items-center text-center align-middle">
|
2
|
+
<div class="row custom-body">
|
3
|
+
<div class="col-lg-3 float-none">
|
4
|
+
<a href="{{ site.baseurl }}"><img src="{{ site.avatar }}" border="2" /></a>
|
5
|
+
</div>
|
6
|
+
<div class="col-lg-6">
|
7
|
+
<span>
|
8
|
+
<h1>.// {{ site.name }}</h1>
|
9
|
+
<h2>{{ site.description }}</h2>
|
10
|
+
<h5>{{ site.tagline }}</h5>
|
11
|
+
</span>
|
12
|
+
|
13
|
+
{% if site.custom_theme.nav.bar == true %}
|
14
|
+
<nav>
|
15
|
+
<br />
|
16
|
+
<h4>
|
17
|
+
{% include {{ site.custom_theme.nav.top }} %}
|
18
|
+
</h4>
|
19
|
+
</nav>
|
20
|
+
{% endif %}
|
21
|
+
</div>
|
22
|
+
{% if site.github.show %}
|
23
|
+
<div class="col-lg-3 float-none">
|
24
|
+
{% include github.html %}
|
25
|
+
</div>
|
26
|
+
{% endif %}
|
27
|
+
<hr style="width:50%" />
|
28
|
+
</div>
|
29
|
+
|
30
|
+
<br />
|
31
|
+
{% if site.custom_theme.columns == "1" %}
|
32
|
+
<div class="container-fluid">
|
33
|
+
<div class="row float-none align-items-center text-center align-middle">
|
34
|
+
<div class="col">{{ content }}</div>
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
|
38
|
+
{% elsif site.custom_theme.columns == "2" %}
|
39
|
+
<div class="container-fluid">
|
40
|
+
<div class="row">
|
41
|
+
<div class="col-lg-3 float-none">
|
42
|
+
</div>
|
43
|
+
<div class="col-lg-6">{{ content }}</div>
|
44
|
+
<div class="col-lg-3 float-none">
|
45
|
+
{% include {{ site.custom_theme.nav.right }} %}
|
46
|
+
</div>
|
47
|
+
</div>
|
48
|
+
|
49
|
+
{% elsif site.custom_theme.columns == "3" %}
|
50
|
+
<div class="container-fluid">
|
51
|
+
<div class="row">
|
52
|
+
<div class="col-lg-3 float-none">
|
53
|
+
{% include {{ site.custom_theme.nav.left }} %}
|
54
|
+
</div>
|
55
|
+
<div class="col-lg-6">
|
56
|
+
{{ content }}
|
57
|
+
</div>
|
58
|
+
<div class="col-lg-3 float-none">
|
59
|
+
{% include {{ site.custom_theme.nav.right }} %}</div>
|
60
|
+
</div>
|
61
|
+
</div>
|
62
|
+
|
63
|
+
|
64
|
+
{% else %}
|
65
|
+
<div class="container-fluid text-center align-middle col-md-6">
|
66
|
+
<h1 class="row">
|
67
|
+
custom_theme/columns not set in _config.yml <br>
|
68
|
+
Your theme settings in _config.yml are incorrect <br>
|
69
|
+
Current columns: {{ site.custom_theme.columns }}
|
70
|
+
</h1>
|
71
|
+
</div>
|
72
|
+
{% endif %}
|
73
|
+
</div>
|
@@ -0,0 +1,50 @@
|
|
1
|
+
<!-- Begin Theme header -->
|
2
|
+
|
3
|
+
<meta charset="utf-8">
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
5
|
+
|
6
|
+
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
|
7
|
+
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
8
|
+
<meta name="generator" content="CasjaysDev">
|
9
|
+
|
10
|
+
{% if page.excerpt %}
|
11
|
+
<meta name="description" content="{{ page.excerpt| strip_html }}" />
|
12
|
+
<meta property="og:description" content="{{ page.excerpt| strip_html }}" />
|
13
|
+
{% else %}
|
14
|
+
<meta name="description" content="{{ site.description }}">
|
15
|
+
<meta property="og:description" content="{{ site.description }}" />
|
16
|
+
{% endif %}
|
17
|
+
<meta name="author" content="{{ site.author.name }}" />
|
18
|
+
|
19
|
+
<link rel="canonical" href="{{ page.url | replace:'index.html','' }}">
|
20
|
+
<link rel="alternate" type="application/rss+xml" title="{{ site.name }}"
|
21
|
+
href="{{ site.feed.path | prepend: site.baseurl | prepend: site.url }}" />
|
22
|
+
|
23
|
+
{% if page.title %}
|
24
|
+
<meta property="og:title" content="{{ page.title }}" />
|
25
|
+
<meta property="twitter:title" content="{{ page.title }}" />
|
26
|
+
{% endif %}
|
27
|
+
|
28
|
+
<link href="https://fonts.googleapis.com/css2?Roboto&family=Roboto+Mono&display=swap" rel="stylesheet">
|
29
|
+
|
30
|
+
<link rel="shortcut icon" href="{{ site.avatar }}" />
|
31
|
+
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/base.css" />
|
32
|
+
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.3/build/forms-min.css" />
|
33
|
+
<link rel="stylesheet" href="https://static.casjay.net/default-css/github-ribbon.css" />
|
34
|
+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
|
35
|
+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootswatch/4.5.0/darkly/bootstrap.min.css">
|
36
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" />
|
37
|
+
|
38
|
+
<link rel="stylesheet" href="https://casjaysdev-sites.github.io/static.casjay.net/assets/css/hacker.css">
|
39
|
+
|
40
|
+
<script src="https://cdn.jsdelivr.net/npm/@widgetbot/crate@3" async defer></script>
|
41
|
+
<script src="htps://static.casjay.net/default-js/errorpages/isup.js"></script>
|
42
|
+
<script src="https://static.casjay.net/default-js/errorpages/homepage.js"></script>
|
43
|
+
<script src="https://static.casjay.net/default-js/errorpages/loaddomain.js"></script>
|
44
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/fetch/2.0.1/fetch.min.js"></script>
|
45
|
+
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script>
|
46
|
+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js"></script>
|
47
|
+
|
48
|
+
{% seo %}
|
49
|
+
|
50
|
+
<!-- End Theme header -->
|