classic-jekyll-theme 0.1.0 → 0.2.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.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +23 -0
  3. data/README.md +99 -0
  4. data/_includes/disqus_comments.html +25 -0
  5. data/_includes/footer.html +5 -0
  6. data/_includes/google-analytics.html +11 -0
  7. data/_includes/head.html +26 -0
  8. data/_includes/navbanner.html +149 -0
  9. data/_includes/secondary-column.html +12 -0
  10. data/_includes/tertiary-column.html +4 -0
  11. data/_includes/widgets/browser-info.html +13 -0
  12. data/_includes/widgets/cookie-consent.html +7 -0
  13. data/_includes/widgets/recent-posts.html +8 -0
  14. data/_includes/widgets/social-media-res/icon-github.html +1 -0
  15. data/_includes/widgets/social-media-res/icon-github.svg +1 -0
  16. data/_includes/widgets/social-media-res/icon-twitter.html +1 -0
  17. data/_includes/widgets/social-media-res/icon-twitter.svg +1 -0
  18. data/_includes/widgets/social-media.html +9 -0
  19. data/_includes/widgets/subscribe.html +4 -0
  20. data/_layouts/category-page.html +55 -0
  21. data/_layouts/default.html +60 -0
  22. data/_layouts/home.html +21 -0
  23. data/_layouts/page.html +18 -0
  24. data/_layouts/post.html +18 -0
  25. data/_sass/classic-jekyll-theme.scss +115 -0
  26. data/_sass/classic/_base.scss +176 -0
  27. data/_sass/classic/_formatting.scss +189 -0
  28. data/_sass/classic/_layout.scss +306 -0
  29. data/_sass/classic/_page.scss +12 -0
  30. data/_sass/classic/_post.scss +10 -0
  31. data/_sass/classic/_syntax-highlighting.scss +71 -0
  32. data/assets/img/medium-left.png +0 -0
  33. data/assets/img/medium-right.png +0 -0
  34. data/assets/img/narrow.png +0 -0
  35. data/assets/img/screenshot-half.png +0 -0
  36. data/assets/img/wide.png +0 -0
  37. data/assets/js/cookieconsent.min.js +1 -0
  38. data/assets/main.scss +9 -0
  39. metadata +39 -2
@@ -0,0 +1,12 @@
1
+ // SCCS for the page design.
2
+
3
+ .page-meta {
4
+ color: $grey-color;
5
+ font-size: $small-font-size;
6
+ }
7
+
8
+ .page-title {
9
+ text-align: center;
10
+ margin-top: 2 * $vspacing-unit;
11
+ margin-bottom: 2 * $vspacing-unit;
12
+ }
@@ -0,0 +1,10 @@
1
+ // SCCS for the post design.
2
+
3
+ .post-meta {
4
+ color: $grey-color;
5
+ font-size: $small-font-size;
6
+ }
7
+
8
+ .post-title {
9
+ text-align: center;
10
+ }
@@ -0,0 +1,71 @@
1
+ /**
2
+ * Syntax highlighting styles
3
+ */
4
+ .highlight {
5
+ background: #fff;
6
+ @extend %vertical-rhythm;
7
+
8
+ .highlighter-rouge & {
9
+ background: #eef;
10
+ }
11
+
12
+ .c { color: #998; font-style: italic } // Comment
13
+ .err { color: #a61717; background-color: #e3d2d2 } // Error
14
+ .k { font-weight: bold } // Keyword
15
+ .o { font-weight: bold } // Operator
16
+ .cm { color: #998; font-style: italic } // Comment.Multiline
17
+ .cp { color: #999; font-weight: bold } // Comment.Preproc
18
+ .c1 { color: #998; font-style: italic } // Comment.Single
19
+ .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
20
+ .gd { color: #000; background-color: #fdd } // Generic.Deleted
21
+ .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
22
+ .ge { font-style: italic } // Generic.Emph
23
+ .gr { color: #a00 } // Generic.Error
24
+ .gh { color: #999 } // Generic.Heading
25
+ .gi { color: #000; background-color: #dfd } // Generic.Inserted
26
+ .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
27
+ .go { color: #888 } // Generic.Output
28
+ .gp { color: #555 } // Generic.Prompt
29
+ .gs { font-weight: bold } // Generic.Strong
30
+ .gu { color: #aaa } // Generic.Subheading
31
+ .gt { color: #a00 } // Generic.Traceback
32
+ .kc { font-weight: bold } // Keyword.Constant
33
+ .kd { font-weight: bold } // Keyword.Declaration
34
+ .kp { font-weight: bold } // Keyword.Pseudo
35
+ .kr { font-weight: bold } // Keyword.Reserved
36
+ .kt { color: #458; font-weight: bold } // Keyword.Type
37
+ .m { color: #099 } // Literal.Number
38
+ .s { color: #d14 } // Literal.String
39
+ .na { color: #008080 } // Name.Attribute
40
+ .nb { color: #0086B3 } // Name.Builtin
41
+ .nc { color: #458; font-weight: bold } // Name.Class
42
+ .no { color: #008080 } // Name.Constant
43
+ .ni { color: #800080 } // Name.Entity
44
+ .ne { color: #900; font-weight: bold } // Name.Exception
45
+ .nf { color: #900; font-weight: bold } // Name.Function
46
+ .nn { color: #555 } // Name.Namespace
47
+ .nt { color: #000080 } // Name.Tag
48
+ .nv { color: #008080 } // Name.Variable
49
+ .ow { font-weight: bold } // Operator.Word
50
+ .w { color: #bbb } // Text.Whitespace
51
+ .mf { color: #099 } // Literal.Number.Float
52
+ .mh { color: #099 } // Literal.Number.Hex
53
+ .mi { color: #099 } // Literal.Number.Integer
54
+ .mo { color: #099 } // Literal.Number.Oct
55
+ .sb { color: #d14 } // Literal.String.Backtick
56
+ .sc { color: #d14 } // Literal.String.Char
57
+ .sd { color: #d14 } // Literal.String.Doc
58
+ .s2 { color: #d14 } // Literal.String.Double
59
+ .se { color: #d14 } // Literal.String.Escape
60
+ .sh { color: #d14 } // Literal.String.Heredoc
61
+ .si { color: #d14 } // Literal.String.Interpol
62
+ .sx { color: #d14 } // Literal.String.Other
63
+ .sr { color: #009926 } // Literal.String.Regex
64
+ .s1 { color: #d14 } // Literal.String.Single
65
+ .ss { color: #990073 } // Literal.String.Symbol
66
+ .bp { color: #999 } // Name.Builtin.Pseudo
67
+ .vc { color: #008080 } // Name.Variable.Class
68
+ .vg { color: #008080 } // Name.Variable.Global
69
+ .vi { color: #008080 } // Name.Variable.Instance
70
+ .il { color: #099 } // Literal.Number.Integer.Long
71
+ }
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1 @@
1
+ !function(){if(!window.hasCookieConsent){window.hasCookieConsent=!0;var e="cookieconsent_options",t="update_cookieconsent_options",n="cookieconsent_dismissed",i="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/1.0.9/";if(!(document.cookie.indexOf(n)>-1)){"function"!=typeof String.prototype.trim&&(String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")});var o,s={isArray:function(e){var t=Object.prototype.toString.call(e);return"[object Array]"==t},isObject:function(e){return"[object Object]"==Object.prototype.toString.call(e)},each:function(e,t,n,i){if(s.isObject(e)&&!i)for(var o in e)e.hasOwnProperty(o)&&t.call(n,e[o],o,e);else for(var r=0,c=e.length;c>r;r++)t.call(n,e[r],r,e)},merge:function(e,t){e&&s.each(t,function(t,n){s.isObject(t)&&s.isObject(e[n])?s.merge(e[n],t):e[n]=t})},bind:function(e,t){return function(){return e.apply(t,arguments)}},queryObject:function(e,t){var n,i=0,o=e;for(t=t.split(".");(n=t[i++])&&o.hasOwnProperty(n)&&(o=o[n]);)if(i===t.length)return o;return null},setCookie:function(e,t,n,i,o){n=n||365;var s=new Date;s.setDate(s.getDate()+n);var r=[e+"="+t,"expires="+s.toUTCString(),"path="+o||"/"];i&&r.push("domain="+i),document.cookie=r.join(";")},addEventListener:function(e,t,n){e.addEventListener?e.addEventListener(t,n):e.attachEvent("on"+t,n)}},r=function(){var e="data-cc-event",t="data-cc-if",n=function(e,t,i){return s.isArray(t)?s.each(t,function(t){n(e,t,i)}):void(e.addEventListener?e.addEventListener(t,i):e.attachEvent("on"+t,i))},i=function(e,t){return e.replace(/\{\{(.*?)\}\}/g,function(e,n){for(var i,o,r=n.split("||");o=r.shift();){if(o=o.trim(),'"'===o[0])return o.slice(1,o.length-1);if(i=s.queryObject(t,o))return i}return""})},o=function(e){var t=document.createElement("div");return t.innerHTML=e,t.children[0]},r=function(e,t,n){var i=e.parentNode.querySelectorAll("["+t+"]");s.each(i,function(e){var i=e.getAttribute(t);n(e,i)},window,!0)},c=function(t,i){r(t,e,function(e,t){var o=t.split(":"),r=s.queryObject(i,o[1]);n(e,o[0],s.bind(r,i))})},a=function(e,n){r(e,t,function(e,t){var i=s.queryObject(n,t);i||e.parentNode.removeChild(e)})};return{build:function(e,t){s.isArray(e)&&(e=e.join("")),e=i(e,t);var n=o(e);return c(n,t),a(n,t),n}}}(),c={options:{message:"This website uses cookies to ensure you get the best experience on our website. ",dismiss:"Got it!",learnMore:"More info",link:null,target:"_self",container:null,theme:"light-floating",domain:null,path:"/",expiryDays:365,markup:['<div class="cc_banner-wrapper {{containerClasses}}">','<div class="cc_banner cc_container cc_container--open">','<a href="#null" data-cc-event="click:dismiss" target="_blank" class="cc_btn cc_btn_accept_all">{{options.dismiss}}</a>','<p class="cc_message">{{options.message}} <a data-cc-if="options.link" target="{{ options.target }}" class="cc_more_info" href="{{options.link || "#null"}}">{{options.learnMore}}</a></p>','<a class="cc_logo" target="_blank" href="http://silktide.com/cookieconsent">Cookie Consent plugin for the EU cookie law</a>',"</div>","</div>"]},init:function(){var t=window[e];t&&this.setOptions(t),this.setContainer(),this.options.theme?this.loadTheme(this.render):this.render()},setOptionsOnTheFly:function(e){this.setOptions(e),this.render()},setOptions:function(e){s.merge(this.options,e)},setContainer:function(){this.options.container?this.container=document.querySelector(this.options.container):this.container=document.body,this.containerClasses="",navigator.appVersion.indexOf("MSIE 8")>-1&&(this.containerClasses+=" cc_ie8")},loadTheme:function(e){var t=this.options.theme;-1===t.indexOf(".css")&&(t=i+t+".css");var n=document.createElement("link");n.rel="stylesheet",n.type="text/css",n.href=t;var o=!1;n.onload=s.bind(function(){!o&&e&&(e.call(this),o=!0)},this),document.getElementsByTagName("head")[0].appendChild(n)},render:function(){this.element&&this.element.parentNode&&(this.element.parentNode.removeChild(this.element),delete this.element),this.element=r.build(this.options.markup,this),this.container.firstChild?this.container.insertBefore(this.element,this.container.firstChild):this.container.appendChild(this.element)},dismiss:function(e){e.preventDefault&&e.preventDefault(),e.returnValue=!1,this.setDismissedCookie(),this.container.removeChild(this.element)},setDismissedCookie:function(){s.setCookie(n,"yes",this.options.expiryDays,this.options.domain,this.options.path)}},a=!1;(o=function(){a||"complete"!=document.readyState||(c.init(),a=!0,window[t]=s.bind(c.setOptionsOnTheFly,c))})(),s.addEventListener(document,"readystatechange",o)}}}();
data/assets/main.scss ADDED
@@ -0,0 +1,9 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+ @charset "utf-8";
5
+
6
+ // Note: This content has been removed in favour of the definitions in Classic-Jekyll-Theme.scss.
7
+
8
+ // Import partials from the theme.
9
+ @import "classic-jekyll-theme";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: classic-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rien
@@ -78,7 +78,44 @@ email:
78
78
  executables: []
79
79
  extensions: []
80
80
  extra_rdoc_files: []
81
- files: []
81
+ files:
82
+ - LICENSE.txt
83
+ - README.md
84
+ - _includes/disqus_comments.html
85
+ - _includes/footer.html
86
+ - _includes/google-analytics.html
87
+ - _includes/head.html
88
+ - _includes/navbanner.html
89
+ - _includes/secondary-column.html
90
+ - _includes/tertiary-column.html
91
+ - _includes/widgets/browser-info.html
92
+ - _includes/widgets/cookie-consent.html
93
+ - _includes/widgets/recent-posts.html
94
+ - _includes/widgets/social-media-res/icon-github.html
95
+ - _includes/widgets/social-media-res/icon-github.svg
96
+ - _includes/widgets/social-media-res/icon-twitter.html
97
+ - _includes/widgets/social-media-res/icon-twitter.svg
98
+ - _includes/widgets/social-media.html
99
+ - _includes/widgets/subscribe.html
100
+ - _layouts/category-page.html
101
+ - _layouts/default.html
102
+ - _layouts/home.html
103
+ - _layouts/page.html
104
+ - _layouts/post.html
105
+ - _sass/classic-jekyll-theme.scss
106
+ - _sass/classic/_base.scss
107
+ - _sass/classic/_formatting.scss
108
+ - _sass/classic/_layout.scss
109
+ - _sass/classic/_page.scss
110
+ - _sass/classic/_post.scss
111
+ - _sass/classic/_syntax-highlighting.scss
112
+ - assets/img/medium-left.png
113
+ - assets/img/medium-right.png
114
+ - assets/img/narrow.png
115
+ - assets/img/screenshot-half.png
116
+ - assets/img/wide.png
117
+ - assets/js/cookieconsent.min.js
118
+ - assets/main.scss
82
119
  homepage: https://rubygems.org/gems/classic-jekyll-theme
83
120
  licenses:
84
121
  - MIT