cblog-theme 0.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.
Files changed (39) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +45 -0
  4. data/_includes/footer.html +36 -0
  5. data/_includes/header.html +25 -0
  6. data/_includes/navigation.html +29 -0
  7. data/_layouts/default.html +12 -0
  8. data/_layouts/page.html +26 -0
  9. data/_layouts/post.html +47 -0
  10. data/assets/css/bootstrap.css +6760 -0
  11. data/assets/css/bootstrap.min.css +6 -0
  12. data/assets/css/clean-blog.min.css +7 -0
  13. data/assets/css/custom.css +403 -0
  14. data/assets/css/syntax.css +84 -0
  15. data/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  16. data/assets/fonts/glyphicons-halflings-regular.svg +288 -0
  17. data/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  18. data/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  19. data/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
  20. data/assets/img/about-bg.jpg +0 -0
  21. data/assets/img/contact-bg.jpg +0 -0
  22. data/assets/img/home-bg.jpg +0 -0
  23. data/assets/img/post-bg-01.jpg +0 -0
  24. data/assets/img/post-bg-02.jpg +0 -0
  25. data/assets/img/post-bg-03.jpg +0 -0
  26. data/assets/img/post-bg-04.jpg +0 -0
  27. data/assets/img/post-bg-05.jpg +0 -0
  28. data/assets/img/post-bg-06.jpg +0 -0
  29. data/assets/img/post-sample-image.jpg +0 -0
  30. data/assets/js/bootstrap.js +2363 -0
  31. data/assets/js/bootstrap.min.js +7 -0
  32. data/assets/js/clean-blog.js +1058 -0
  33. data/assets/js/clean-blog.min.js +7 -0
  34. data/assets/js/jquery.js +9205 -0
  35. data/assets/js/jquery.min.js +4 -0
  36. data/assets/less/clean-blog.less +463 -0
  37. data/assets/less/mixins.less +22 -0
  38. data/assets/less/variables.less +7 -0
  39. metadata +123 -0
@@ -0,0 +1,22 @@
1
+ // Mixins
2
+
3
+ .transition-all() {
4
+ -webkit-transition: all 0.5s;
5
+ -moz-transition: all 0.5s;
6
+ transition: all 0.5s;
7
+ }
8
+
9
+ .background-cover() {
10
+ -webkit-background-size: cover;
11
+ -moz-background-size: cover;
12
+ background-size: cover;
13
+ -o-background-size: cover;
14
+ }
15
+
16
+ .serif() {
17
+ font-family: 'Lora', 'Times New Roman', serif;
18
+ }
19
+
20
+ .sans-serif () {
21
+ font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
22
+ }
@@ -0,0 +1,7 @@
1
+ // Variables
2
+
3
+ @brand-primary: #0085A1;
4
+ @gray-dark: lighten(black, 25%);
5
+ @gray: lighten(black, 50%);
6
+ @white-faded: fade(white, 80%);
7
+ @gray-light: #eee;
metadata ADDED
@@ -0,0 +1,123 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cblog-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Flaviano Honorato
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-03-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.4'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.4'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.12'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.12'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description: A Blog theme with bootstrap
56
+ email:
57
+ - flaviano.honorato@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.txt
63
+ - README.md
64
+ - _includes/footer.html
65
+ - _includes/header.html
66
+ - _includes/navigation.html
67
+ - _layouts/default.html
68
+ - _layouts/page.html
69
+ - _layouts/post.html
70
+ - assets/css/bootstrap.css
71
+ - assets/css/bootstrap.min.css
72
+ - assets/css/clean-blog.min.css
73
+ - assets/css/custom.css
74
+ - assets/css/syntax.css
75
+ - assets/fonts/glyphicons-halflings-regular.eot
76
+ - assets/fonts/glyphicons-halflings-regular.svg
77
+ - assets/fonts/glyphicons-halflings-regular.ttf
78
+ - assets/fonts/glyphicons-halflings-regular.woff
79
+ - assets/fonts/glyphicons-halflings-regular.woff2
80
+ - assets/img/about-bg.jpg
81
+ - assets/img/contact-bg.jpg
82
+ - assets/img/home-bg.jpg
83
+ - assets/img/post-bg-01.jpg
84
+ - assets/img/post-bg-02.jpg
85
+ - assets/img/post-bg-03.jpg
86
+ - assets/img/post-bg-04.jpg
87
+ - assets/img/post-bg-05.jpg
88
+ - assets/img/post-bg-06.jpg
89
+ - assets/img/post-sample-image.jpg
90
+ - assets/js/bootstrap.js
91
+ - assets/js/bootstrap.min.js
92
+ - assets/js/clean-blog.js
93
+ - assets/js/clean-blog.min.js
94
+ - assets/js/jquery.js
95
+ - assets/js/jquery.min.js
96
+ - assets/less/clean-blog.less
97
+ - assets/less/mixins.less
98
+ - assets/less/variables.less
99
+ homepage: http://cakephpbrasil.com.br
100
+ licenses:
101
+ - MIT
102
+ metadata: {}
103
+ post_install_message:
104
+ rdoc_options: []
105
+ require_paths:
106
+ - lib
107
+ required_ruby_version: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
112
+ required_rubygems_version: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ requirements: []
118
+ rubyforge_project:
119
+ rubygems_version: 2.5.2
120
+ signing_key:
121
+ specification_version: 4
122
+ summary: Blog Theme
123
+ test_files: []