casjaysdev-jekyll-theme 0.1.7 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -1
  3. data/CNAME +1 -1
  4. data/Gemfile +25 -2
  5. data/Gemfile.lock +39 -20
  6. data/_config.yml +105 -67
  7. data/_includes/casjays-footer.html +61 -65
  8. data/_includes/casjays-header.html +2 -3
  9. data/_includes/casjaysdev/ads.html +24 -1
  10. data/_includes/casjaysdev/clock.html +16 -5
  11. data/_includes/casjaysdev/eucookie.html +36 -27
  12. data/_includes/casjaysdev/google.html +30 -16
  13. data/_includes/casjaysdev/legal.html +45 -25
  14. data/_includes/casjaysdev/piwik.html +22 -15
  15. data/_includes/casjaysdev/rocketchat.html +20 -10
  16. data/_includes/casjaysdev/sharethis.html +36 -17
  17. data/_includes/casjaysdev/socialfooter.html +79 -29
  18. data/_includes/casjaysdev/sociallinks.html +82 -39
  19. data/_includes/casjaysdev/statcounter.html +34 -19
  20. data/_includes/casjaysdev/theme.html +6 -3
  21. data/_includes/casjaysdev/widgetbot.html +1 -8
  22. data/_includes/disqus.html +16 -10
  23. data/_includes/github.html +7 -3
  24. data/_includes/image-gallery.html +27 -50
  25. data/_includes/nav/external.html +5 -3
  26. data/_includes/nav/internal.html +4 -6
  27. data/_includes/nav/sidebars/right.html +1 -2
  28. data/_includes/nav/top.html +13 -13
  29. data/_includes/read_time.html +3 -2
  30. data/_includes/themes/blank/layouts/default.html +2 -2
  31. data/_includes/themes/hacker/layouts/default.html +50 -55
  32. data/_includes/themes/hacker/meta.html +79 -28
  33. data/_layouts/default.html +3 -6
  34. data/_layouts/errors.html +1 -8
  35. data/_layouts/page.html +1 -4
  36. data/_layouts/post.html +29 -29
  37. data/_pages/about/index.html +14 -0
  38. data/_pages/blog/index.html +57 -0
  39. data/_pages/contact/index.html +173 -0
  40. data/_pages/gallery/index.html +15 -0
  41. data/_pages/index.html +12 -3
  42. data/_pages/rss/index.xml +35 -0
  43. data/_posts/2020-07-31-new-deploy.md +2 -0
  44. data/assets/css/base.css +123 -0
  45. data/assets/css/bootstrap/bootstrap-icons.css +2018 -0
  46. data/assets/css/bootstrap/darkly.css +10523 -0
  47. data/assets/css/bootstrap/font-awesome.css +9 -0
  48. data/assets/css/errorpages/errorpages.css +337 -0
  49. data/assets/css/gh/ribbon.css +124 -0
  50. data/assets/css/hacker.css +1 -4
  51. data/assets/css/other/forms-min.css +7 -0
  52. data/assets/js/errorpages/homepage.js +4 -0
  53. data/assets/js/errorpages/isup.js +4 -0
  54. data/assets/js/errorpages/loaddomain.js +4 -0
  55. data/assets/js/fetch-url.js +8 -5
  56. data/assets/js/gh-blog.js +20 -20
  57. data/assets/js/posts.js +24 -20
  58. data/assets/js/utils/bootstrap.bundle.min.js +7 -0
  59. data/assets/js/utils/fetch.min.js +1 -0
  60. data/assets/js/utils/popper.min.js +5 -0
  61. data/casjaysdev-jekyll-theme.gemspec +35 -35
  62. data/error/404.html +34 -22
  63. data/error/500.html +34 -21
  64. data/favicon.ico +0 -0
  65. data/images/gallery/126880.jpg +0 -0
  66. data/images/gallery/Octocat.png +0 -0
  67. data/templates/year-month-day-name.blank.md +5 -3
  68. data/templates/year-month-day-name.image.md +5 -3
  69. data/templates/year-month-day-name.link.md +5 -3
  70. data/templates/year-month-day-name.video.md +5 -3
  71. data/templates/year-month-day-name.yt.html +10 -4
  72. metadata +137 -111
  73. data/_pages/about.html +0 -8
  74. data/_pages/contact.html +0 -70
  75. data/_pages/gallery.html +0 -9
  76. data/_posts/2020-07-31-Updated-Theming-Engine.md +0 -12
  77. data/blog/index.html +0 -49
  78. data/version.txt +0 -1
  79. /data/{blog → _pages/blog}/catergories/catergories.html +0 -0
  80. /data/{blog → _pages/blog}/tags/tags.html +0 -0
  81. /data/images/{powered_by_jekyll.jpg → gallery/powered_by_jekyll.jpg} +0 -0
@@ -1,28 +1,37 @@
1
- <link rel="stylesheet" type="text/css"
2
- href="https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
3
- <script src="https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
4
- <script>
5
- window.addEventListener("load", function () {
6
- window.cookieconsent.initialise({
7
- "palette": {
8
- "popup": {
9
- "background": "#64386b",
10
- "text": "#ffcdfd"
1
+ {% if site.eucookie.enabled == true %}
2
+ <div class="eu">
3
+ <script
4
+ src="https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"
5
+ async
6
+ defer
7
+ ></script>
8
+ <script>
9
+ window.addEventListener("load", function () {
10
+ window.cookieconsent.initialise({
11
+ palette: {
12
+ popup: {
13
+ background: "#64386b",
14
+ text: "#ffcdfd",
15
+ },
16
+ button: {
17
+ background: "transparent",
18
+ text: "#f8a8ff",
19
+ border: "#f8a8ff",
20
+ },
11
21
  },
12
- "button": {
13
- "background": "transparent",
14
- "text": "#f8a8ff",
15
- "border": "#f8a8ff"
16
- }
17
- },
18
- "content": {
19
- "message": "In accordance with the EU GDPR law this message is being displayed. - ",
20
- "dismiss": "I Agree",
21
- "link": "CasjaysDev Policy",
22
- "href": "https://casjaysdev.com/policy/"
23
- },
24
- "type": "opt-out"
25
- })
26
- });
27
- </script>
28
- <br />
22
+ content: {
23
+ message:
24
+ "In accordance with the EU GDPR law this message is being displayed. - ",
25
+ dismiss: "I Agree",
26
+ link: "CasjaysDev Policy",
27
+ href: "https://casjaysdev.com/policy/",
28
+ },
29
+ type: "opt-out",
30
+ });
31
+ });
32
+ </script>
33
+ <br />
34
+ {% else %}
35
+ <!-- eu cookie is disabled -->
36
+ </div>
37
+ {% endif %}
@@ -1,18 +1,32 @@
1
1
  {% if site.google.analytics %}
2
- <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google.analytics }}"></script>
3
- <script>
4
- window.dataLayer = window.dataLayer || [];
5
- function gtag() { dataLayer.push(arguments); }
6
- gtag('js', new Date());
7
- gtag('config', '{{ site.google.analytics }}');
8
- </script>
9
- {% else %}
10
- <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google.analytics }}"></script>
11
- <script>
12
- window.dataLayer = window.dataLayer || [];
13
- function gtag() { dataLayer.push(arguments); }
14
- gtag('js', new Date());
15
- gtag('config', '{{ site.google.analytics }}');
16
- </script>
17
- <br />
2
+ <div class="analytics">
3
+ <script
4
+ async
5
+ src="https://www.googletagmanager.com/gtag/js?id={{ site.google.analytics }}"
6
+ ></script>
7
+ <script>
8
+ window.dataLayer = window.dataLayer || [];
9
+ function gtag() {
10
+ dataLayer.push(arguments);
11
+ }
12
+ gtag("js", new Date());
13
+ gtag("config", "{{ site.google.analytics }}");
14
+ </script>
15
+ {% else %}
16
+ <script
17
+ async
18
+ src="https://www.googletagmanager.com/gtag/js?id={{ site.google.analytics }}"
19
+ ></script>
20
+ <script>
21
+ window.dataLayer = window.dataLayer || [];
22
+ function gtag() {
23
+ dataLayer.push(arguments);
24
+ }
25
+ gtag("js", new Date());
26
+ gtag("config", "{{ site.google.analytics }}");
27
+ </script>
28
+ <br />
29
+ {% else %}
30
+ <!-- Analytics is disabled -->
31
+ </div>
18
32
  {% endif %}
@@ -1,25 +1,45 @@
1
- Copyright 1999 - {{ site.time | date: '%Y' }}
2
- <br />
3
- <a href="https://casjay.net" target="_blank">Casjays Developments</a> and <a href="https://jason.malaks.us"
4
- target="_blank">Jason M. Hempstead-Malak</a><br />
5
- Hosting by <a href="https://casjay.net/hosting" target="_blank">Casjays Developments: Hosting</a><br />
6
- and powered by <a href="https://casjaysdev.com" target="_blank">CasjaysDev.com</a>
7
- <br />
8
- <br />
9
- <a href="https://www.patreon.com/casjay" target="_blank"><img
10
- src="https://img.shields.io/badge/patreon-donate-orange.svg" border="0" alt="Casjays Patreon Page"></a>
11
- <a href="https://www.paypal.me/casjaysdev" target="_blank"><img
12
- src="https://img.shields.io/badge/Donate-PayPal-green.svg?casjay@yahoo.com" alt="Casjays Paypal Page"></a>
13
- <br />
14
- <br />
15
- <a href="https://help.casjay.net" target="_blank">CasjaysDev Support</a> |
16
- <a href="https://bugs.casjay.net" target="_blank">CasjaysDev Bugs</a> <br />
17
- <a href="https://status.casjay.net" target="_blank">System Status</a> |
18
- <a href="https://servers.casjay.net" target="_blank">Service Status</a> |
19
- <a href="https://status.casjaysdev.com" target="_blank">Complete Status</a> <br />
20
- <a href="https://casjaysdev.com/domains.html" target="_blank">Casjays Developments Domains</a>
21
- <br />
22
- <br />
23
- Casjays Developments privacy policy can be found at<br />
24
- <a href="https://casjaysdev.com/policy/" target="_blank">https://casjaysdev.com/policy</a>
25
- <br />
1
+ <div class="legal">
2
+ Copyright 1999 - {{ site.time | date: '%Y' }}
3
+ <br />
4
+ <a href="https://casjay.net" target="_blank">Casjays Developments</a> and
5
+ <a href="https://malaks-us.github.io/jason" target="_blank"
6
+ >Jason M. Hempstead-Malak</a
7
+ ><br />
8
+ Hosting by
9
+ <a href="https://casjay.net/hosting" target="_blank"
10
+ >Casjays Developments: Hosting</a
11
+ ><br />
12
+ and powered by
13
+ <a href="https://casjaysdev.com" target="_blank">CasjaysDev.com</a>
14
+ <br />
15
+ <br />
16
+ <a href="https://www.patreon.com/casjay" target="_blank"
17
+ ><img
18
+ src="https://img.shields.io/badge/patreon-donate-orange.svg"
19
+ border="0"
20
+ alt="Casjays Patreon Page"
21
+ /></a>
22
+ <a href="https://www.paypal.me/casjaysdev" target="_blank"
23
+ ><img
24
+ src="https://img.shields.io/badge/Donate-PayPal-green.svg?casjay@yahoo.com"
25
+ alt="Casjays Paypal Page"
26
+ /></a>
27
+ <br />
28
+ <br />
29
+ <a href="https://help.casjay.net" target="_blank">CasjaysDev Support</a> |
30
+ <a href="https://bugs.casjay.net" target="_blank">CasjaysDev Bugs</a> <br />
31
+ <a href="https://status.casjay.net" target="_blank">System Status</a> |
32
+ <a href="https://servers.casjay.net" target="_blank">Service Status</a> |
33
+ <a href="https://status.casjaysdev.com" target="_blank">Complete Status</a>
34
+ <br />
35
+ <a href="https://casjaysdev.com/domains.html" target="_blank"
36
+ >Casjays Developments Domains</a
37
+ >
38
+ <br />
39
+ <br />
40
+ Casjays Developments privacy policy can be found at<br />
41
+ <a href="https://casjaysdev.com/policy/" target="_blank"
42
+ >https://casjaysdev.com/policy</a
43
+ >
44
+ <br />
45
+ </div>
@@ -1,17 +1,24 @@
1
1
  {% if site.piwik.url %}
2
- <script type="text/javascript">
3
- var pkBaseURL = (("https:" == document.location.protocol) ? "{{ site.piwik.pre }}://{{ site.piwik.url }}/" :
4
- "{{ site.piwik.pre }}://{{ site.piwik.url }}/");
5
- document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
6
- </script>
7
- <script type="text/javascript">
8
- try {
9
- var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", {{ site.piwik.id }});
10
- piwikTracker.trackPageView();
11
- piwikTracker.enableLinkTracking();
12
- } catch (err) { }
13
- </script><noscript>
14
- <p><img src="{{ site.piwik.url }}?idsite={{ site.piwik.id }}" class="c1" alt=""></p>
15
- </noscript>
16
- <br />
2
+ <div class="piwik">
3
+ <script>
4
+ var _paq = (window._paq = window._paq || []);
5
+ /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
6
+ _paq.push(["trackPageView"]);
7
+ _paq.push(["enableLinkTracking"]);
8
+ (function () {
9
+ var u = "{{ site.piwik.prefix }}://{{ site.piwik.url }}/";
10
+ _paq.push(["setTrackerUrl", u + "matomo.php"]);
11
+ _paq.push(["setSiteId", "{{ site.piwik.site_id }}"]);
12
+ var d = document,
13
+ g = d.createElement("script"),
14
+ s = d.getElementsByTagName("script")[0];
15
+ g.async = true;
16
+ g.src = u + "matomo.js";
17
+ s.parentNode.insertBefore(g, s);
18
+ })();
19
+ </script>
20
+ <br />
21
+ {% else %}
22
+ <!-- pikik is disabled -->
23
+ </div>
17
24
  {% endif %}
@@ -1,12 +1,22 @@
1
1
  {% if site.rocketchat.url %}
2
- <script type="text/javascript">
3
- (function (w, d, s, u) {
4
- w.RocketChat = function (c) { w.RocketChat._.push(c) }; w.RocketChat._ = []; w.RocketChat.url = u;
5
- var h = d.getElementsByTagName(s)[0], j = d.createElement(s);
6
- j.async = true; j.src =
7
- '{{ site.rocketchat.url }}/packages/rocketchat_livechat/assets/rocketchat-livechat.min.js?_=201702160944';
8
- h.parentNode.insertBefore(j, h);
9
- })(window, document, 'script', '{{ site.rocketchat.url }}/livechat');
10
- </script>
11
- <br />
2
+ <div class="rocketchat">
3
+ <script type="text/javascript">
4
+ (function (w, d, s, u) {
5
+ w.RocketChat = function (c) {
6
+ w.RocketChat._.push(c);
7
+ };
8
+ w.RocketChat._ = [];
9
+ w.RocketChat.url = u;
10
+ var h = d.getElementsByTagName(s)[0],
11
+ j = d.createElement(s);
12
+ j.async = true;
13
+ j.src =
14
+ "{{ site.rocketchat.url }}/packages/rocketchat_livechat/assets/rocketchat-livechat.min.js?_=201702160944";
15
+ h.parentNode.insertBefore(j, h);
16
+ })(window, document, "script", "{{ site.rocketchat.url }}/livechat");
17
+ </script>
18
+ <br />
19
+ {% else %}
20
+ <!-- rocketchat is disabled -->
21
+ </div>
12
22
  {% endif %}
@@ -1,26 +1,45 @@
1
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
-
2
+ <div class="share-buttons">
3
+ {% if site.share-this.rss %}
4
+ <a href="{{ site.feed.path | prepend: site.baseurl }} ">
5
+ <img
6
+ alt="RSS Feed"
7
+ src="https://github.com/casjaysdev-sites/static.casjay.net/raw/main/default-icons/social/rss-48x48.png"
8
+ />
9
+ </a>
10
+ {% endif %} {% if site.share-this.repo %}
11
+ <a href="{{ site.share-this.repo }}" target="_blank" title="Github">
12
+ <img
13
+ alt="Tweet"
14
+ src="https://github.com/casjaysdev-sites/static.casjay.net/raw/main/default-icons/social/github-48x48.png"
15
+ />
16
+ </a>
17
+ {% endif %} {% if site.share-this.email %}
18
+ <a href="mailto:?subject=Thought you might like this site">
19
+ <img
20
+ alt="Send via email"
21
+ src="https://github.com/casjaysdev-sites/static.casjay.net/raw/main/default-icons/social/email-48x48.png"
22
+ />
23
+ </a>
24
+ {% endif %}
12
25
  <br />
13
26
  <br />
14
27
  {% 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">
28
+ <div
29
+ class="container-fluid"
30
+ style="width: 20%; margin: 0 auto; columns: auto; text-align: center"
31
+ align="center"
32
+ >
17
33
  <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>
34
+ <script
35
+ type="text/javascript"
36
+ src="https://platform-api.sharethis.com/js/sharethis.js#property={{ site.share-this.code }}&product=inline-share-buttons"
37
+ async="async"
38
+ ></script>
21
39
  </div>
22
40
  {% endif %}
23
- <!-- ShareThis END -->
41
+ <br />
42
+ {% else %}
43
+ <!-- Share-this is disabled -->
24
44
  </div>
25
- <br />
26
45
  {% endif %}
@@ -1,38 +1,88 @@
1
1
  <div class="share-buttons">
2
+ <a href="{{ site.feed.path | prepend: site.baseurl }}">
3
+ <img
4
+ alt="RSS Feed"
5
+ src="https://github.com/casjaysdev-sites/static.casjay.net/raw/main/default-icons/social/rss-48x48.png"
6
+ />
7
+ </a>
2
8
 
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>
9
+ <a href="{{ site.footer-links.github }}" target="_blank" title="Github">
10
+ <img
11
+ alt="Tweet"
12
+ src="https://github.com/casjaysdev-sites/static.casjay.net/raw/main/default-icons/social/github-48x48.png"
13
+ />
14
+ </a>
5
15
 
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>
16
+ <a
17
+ href="https://stackoverflow.com/users/2524088/casjay"
18
+ target="_blank"
19
+ title="StackOverflow"
20
+ >
21
+ <img
22
+ alt="Stackoverflow"
23
+ src="https://github.com/casjaysdev-sites/static.casjay.net/raw/main/default-icons/social/stackoverflow-48x48.png"
24
+ />
25
+ </a>
8
26
 
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>
27
+ <a
28
+ href="http://www.tumblr.com/share?v=3&u={{ page.url }}&quote=&s="
29
+ target="_blank"
30
+ title="Post to Tumblr"
31
+ onclick="window.open('http://www.tumblr.com/share?v=3&u=' + encodeURIComponent(document.URL) + '&quote=' + encodeURIComponent(document.title)); return false;"
32
+ >
33
+ <img
34
+ alt="Post to Tumblr"
35
+ src="https://github.com/casjaysdev-sites/static.casjay.net/raw/main/default-icons/social/tumblr-48x48.png"
36
+ />
37
+ </a>
11
38
 
12
- <a href="http://www.tumblr.com/share?v=3&u=https://static.casjay.net{{page.url}}&quote=&s=" target="_blank"
13
- title="Post to Tumblr"
14
- onclick="window.open('http://www.tumblr.com/share?v=3&u=' + encodeURIComponent(document.URL) + '&quote=' + encodeURIComponent(document.title)); return false;"><img
15
- alt="Post to Tumblr" src="https://static.casjay.net/default-icons/social/tumblr-48x48.png" /></a>
39
+ <a
40
+ href="http://pinterest.com/pin/create/button/?url={{ page.url }}&description="
41
+ target="_blank"
42
+ title="Pin it"
43
+ onclick="window.open('http://pinterest.com/pin/create/button/?url=' + encodeURIComponent(document.URL) + '&description=' + encodeURIComponent(document.title)); return false;"
44
+ >
45
+ <img
46
+ alt="Pin it"
47
+ src="https://github.com/casjaysdev-sites/static.casjay.net/raw/main/default-icons/social/pinterest-48x48.png"
48
+ />
49
+ </a>
50
+ <br />
16
51
 
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 />
52
+ <a
53
+ href="http://www.linkedin.com/shareArticle?mini=true&url={{ page.url }}&title=&summary=&source={{ page.url }}"
54
+ target="_blank"
55
+ title="Share on LinkedIn"
56
+ onclick="window.open('http://www.linkedin.com/shareArticle?mini=true&url=' + encodeURIComponent(document.URL) + '&title=' + encodeURIComponent(document.title)); return false;"
57
+ >
58
+ <img
59
+ alt="Share on LinkedIn"
60
+ src="https://github.com/casjaysdev-sites/static.casjay.net/raw/main/default-icons/social/linkedin-48x48.png"
61
+ />
62
+ </a>
21
63
 
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}}&quote=&s=" target="_blank"
28
- title="Publish on WordPress"
29
- onclick="window.open('http://wordpress.com/press-this.php?u=' + encodeURIComponent(document.URL) + '&quote=' + 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 />
64
+ <a
65
+ href="http://wordpress.com/press-this.php?u={{ page.url }}&quote=&s="
66
+ target="_blank"
67
+ title="Publish on WordPress"
68
+ onclick="window.open('http://wordpress.com/press-this.php?u=' + encodeURIComponent(document.URL) + '&quote=' + encodeURIComponent(document.title)); return false;"
69
+ >
70
+ <img
71
+ alt="Publish on WordPress"
72
+ src="https://github.com/casjaysdev-sites/static.casjay.net/raw/main/default-icons/social/wordpress-48x48.png"
73
+ />
74
+ </a>
37
75
 
76
+ <a
77
+ href="https://pinboard.in/popup_login/?url={{ page.url }}&title=&description={{ page.title }}"
78
+ target="_blank"
79
+ title="Save to Pinboard"
80
+ onclick="window.open('https://pinboard.in/popup_login/?url=' + encodeURIComponent(document.URL) + '&title=' + encodeURIComponent(document.title)); return false;"
81
+ >
82
+ <img
83
+ alt="Save to Pinboard"
84
+ src="https://github.com/casjaysdev-sites/static.casjay.net/raw/main/default-icons/social/pinboard-48x48.png"
85
+ />
86
+ </a>
87
+ <br />
38
88
  </div>
@@ -1,39 +1,82 @@
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>
1
+ <div class="social-links">
2
+ <p class="mx-auto" style="width: 200px">
3
+ Social Links: <br />
4
+ {% if site.social-links.rss %}
5
+ <a href="{{ site.feed.path | prepend: site.baseurl }}">
6
+ <i class="svg-icon rss"></i>
7
+ </a>
8
+ {% endif %} {% if site.social-links.github %}
9
+ <a href="https://github.com/{{ site.social-links.github }}" target="_blank">
10
+ <i class="svg-icon github"></i>
11
+ </a>
12
+ {% endif %} {% if site.social-links.dribbble %}
13
+ <a
14
+ href="https://dribbble.com/{{ site.social-links.dribbble }}"
15
+ target="_blank"
16
+ >
17
+ <i class="svg-icon dribbble"></i>
18
+ </a>
19
+ {% endif %} {% if site.social-links.facebook %}
20
+ <a
21
+ href="https://www.facebook.com/{{ site.social-links.facebook }}"
22
+ target="_blank"
23
+ >
24
+ <i class="svg-icon facebook"></i
25
+ ></a>
26
+ {% endif %} {% if site.social-links.flickr %}
27
+ <a
28
+ href="https://www.flickr.com/{{ site.social-links.flickr }}"
29
+ target="_blank"
30
+ >
31
+ <i class="svg-icon flickr"></i>
32
+ </a>
33
+ {% endif %} {% if site.social-links.instagram %}
34
+ <a
35
+ href="https://instagram.com/{{ site.social-links.instagram }}"
36
+ target="_blank"
37
+ >
38
+ <i class="svg-icon instagram"></i>
39
+ </a>
40
+ {% endif %} {% if site.social-links.linkedin %}
41
+ <a
42
+ href="https://www.linkedin.com/in/{{ site.social-links.linkedin }}"
43
+ target="_blank"
44
+ target="_blank"
45
+ >
46
+ <i class="svg-icon linkedin"></i>
47
+ </a>
48
+ {% endif %} {% if site.social-links.pinterest %}
49
+ <a
50
+ href="https://www.pinterest.com/{{ site.social-links.pinterest }}"
51
+ target="_blank"
52
+ >
53
+ <i class="svg-icon pinterest"></i>
54
+ </a>
55
+ {% endif %} {% if site.social-links.twitter %}
56
+ <a
57
+ href="https://www.twitter.com/{{ site.social-links.twitter }}"
58
+ target="_blank"
59
+ >
60
+ <i class="svg-icon twitter"></i>
61
+ </a>
62
+ {% endif %} {% if site.social-links.stackoverflow %}
63
+ <a
64
+ href="http://stackoverflow.com/{{ site.social-links.stackoverflow }}"
65
+ target="_blank"
66
+ >
67
+ <i class="svg-icon stackoverflow"></i></a
68
+ >{% endif %} {% if site.social-links.youtube %}
69
+ <a
70
+ href="https://youtube.com/{{ site.social-links.youtube }}"
71
+ target="_blank"
72
+ >
73
+ <i class="svg-icon youtube"></i>
74
+ </a>
75
+ {% endif %} {% if site.social-links.email %}
76
+ <a href="mailto:{{ site.social-links.email }}" target="_blank">
77
+ <i class="svg-icon email"></i>
78
+ </a>
79
+ {% endif %}
80
+ <br />
81
+ </p>
82
+ </div>
@@ -1,20 +1,35 @@
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 />
1
+ {% if site.statuscounter.id %}
2
+ <div class="statcounter">
3
+ <script type="text/javascript">
4
+ var sc_project = "{{ site.statuscounter.id }}";
5
+ var sc_invisible = 0;
6
+ var sc_security = "{{ site.statuscounter.code }}";
7
+ var scJsHost =
8
+ "https:" == document.location.protocol
9
+ ? "https://secure."
10
+ : "http://www.";
11
+ document.write(
12
+ "<sc" +
13
+ "ript type='text/javascript' src='" +
14
+ scJsHost +
15
+ "statcounter.com/counter/counter.js'></" +
16
+ "script>"
17
+ );
18
+ </script>
19
+ <noscript>
20
+ <div class="statcounter">
21
+ <a
22
+ title="web stats"
23
+ href="https://statcounter.com/p{{ site.statuscounter.id }}/summary/?guest=1"
24
+ target="_blank"
25
+ >
26
+ <img
27
+ class="statcounter"
28
+ src="//c.statcounter.com/{{ site.statuscounter.id }}/0/{{ site.statuscounter.code }}/0/"
29
+ alt="web stats"
30
+ /></a>
31
+ </div>
32
+ </noscript>
33
+ <br />
34
+ </div>
20
35
  {% endif %}