kh-portfolio 0.1.3
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/LICENSE.txt +21 -0
- data/README.md +81 -0
- data/_includes/nav.html +25 -0
- data/_includes/powered-by.html +5 -0
- data/_includes/social-media-connection-bar.html +27 -0
- data/_layouts/archive.html +35 -0
- data/_layouts/default.html +44 -0
- data/_layouts/page.html +14 -0
- data/_layouts/portfolio.html +29 -0
- data/_layouts/post.html +74 -0
- data/_layouts/project.html +51 -0
- data/_sass/_global.scss +32 -0
- data/_sass/_gruppo.scss +5 -0
- data/_sass/_post.scss +73 -0
- data/_sass/_project.scss +71 -0
- data/_sass/_variables.scss +8 -0
- data/_sass/materialize/LICENSE +21 -0
- data/_sass/materialize/README.md +48 -0
- data/_sass/materialize/all.scss +40 -0
- data/_sass/materialize/components/_buttons.scss +281 -0
- data/_sass/materialize/components/_cards.scss +187 -0
- data/_sass/materialize/components/_carousel.scss +85 -0
- data/_sass/materialize/components/_chips.scss +83 -0
- data/_sass/materialize/components/_collapsible.scss +90 -0
- data/_sass/materialize/components/_color.scss +412 -0
- data/_sass/materialize/components/_dropdown.scss +65 -0
- data/_sass/materialize/components/_global.scss +800 -0
- data/_sass/materialize/components/_grid.scss +147 -0
- data/_sass/materialize/components/_icons-material-design.scss +5 -0
- data/_sass/materialize/components/_materialbox.scss +42 -0
- data/_sass/materialize/components/_mixins.scss +5 -0
- data/_sass/materialize/components/_modal.scss +90 -0
- data/_sass/materialize/components/_navbar.scss +190 -0
- data/_sass/materialize/components/_normalize.scss +424 -0
- data/_sass/materialize/components/_prefixer.scss +384 -0
- data/_sass/materialize/components/_preloader.scss +334 -0
- data/_sass/materialize/components/_roboto.scss +28 -0
- data/_sass/materialize/components/_sideNav.scss +208 -0
- data/_sass/materialize/components/_slider.scss +92 -0
- data/_sass/materialize/components/_table_of_contents.scss +33 -0
- data/_sass/materialize/components/_tabs.scss +99 -0
- data/_sass/materialize/components/_toast.scss +65 -0
- data/_sass/materialize/components/_tooltip.scss +32 -0
- data/_sass/materialize/components/_typography.scss +61 -0
- data/_sass/materialize/components/_variables.scss +313 -0
- data/_sass/materialize/components/_waves.scss +177 -0
- data/_sass/materialize/components/date_picker/_default.date.scss +435 -0
- data/_sass/materialize/components/date_picker/_default.scss +201 -0
- data/_sass/materialize/components/date_picker/_default.time.scss +125 -0
- data/_sass/materialize/components/forms/_checkboxes.scss +220 -0
- data/_sass/materialize/components/forms/_file-input.scss +38 -0
- data/_sass/materialize/components/forms/_forms.scss +22 -0
- data/_sass/materialize/components/forms/_input-fields.scss +286 -0
- data/_sass/materialize/components/forms/_radio-buttons.scss +117 -0
- data/_sass/materialize/components/forms/_range.scss +159 -0
- data/_sass/materialize/components/forms/_select.scss +121 -0
- data/_sass/materialize/components/forms/_switches.scss +78 -0
- data/assets/fonts/gruppo/Gruppo-Regular.ttf +0 -0
- data/assets/fonts/gruppo/OFL.txt +93 -0
- data/assets/fonts/roboto/LICENSE.txt +202 -0
- data/assets/fonts/roboto/Roboto-Black.ttf +0 -0
- data/assets/fonts/roboto/Roboto-BlackItalic.ttf +0 -0
- data/assets/fonts/roboto/Roboto-Bold.ttf +0 -0
- data/assets/fonts/roboto/Roboto-BoldItalic.ttf +0 -0
- data/assets/fonts/roboto/Roboto-Italic.ttf +0 -0
- data/assets/fonts/roboto/Roboto-Light.ttf +0 -0
- data/assets/fonts/roboto/Roboto-LightItalic.ttf +0 -0
- data/assets/fonts/roboto/Roboto-Medium.ttf +0 -0
- data/assets/fonts/roboto/Roboto-MediumItalic.ttf +0 -0
- data/assets/fonts/roboto/Roboto-Regular.ttf +0 -0
- data/assets/fonts/roboto/Roboto-Thin.ttf +0 -0
- data/assets/fonts/roboto/Roboto-ThinItalic.ttf +0 -0
- data/assets/js/theme.js +8 -0
- data/assets/styles.scss +14 -0
- data/assets/syntax.scss +332 -0
- metadata +161 -0
metadata
ADDED
@@ -0,0 +1,161 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: kh-portfolio
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Kersing Huang
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-12-31 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.3'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.3'
|
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:
|
56
|
+
email:
|
57
|
+
- kersingh@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- LICENSE.txt
|
63
|
+
- README.md
|
64
|
+
- _includes/nav.html
|
65
|
+
- _includes/powered-by.html
|
66
|
+
- _includes/social-media-connection-bar.html
|
67
|
+
- _layouts/archive.html
|
68
|
+
- _layouts/default.html
|
69
|
+
- _layouts/page.html
|
70
|
+
- _layouts/portfolio.html
|
71
|
+
- _layouts/post.html
|
72
|
+
- _layouts/project.html
|
73
|
+
- _sass/_global.scss
|
74
|
+
- _sass/_gruppo.scss
|
75
|
+
- _sass/_post.scss
|
76
|
+
- _sass/_project.scss
|
77
|
+
- _sass/_variables.scss
|
78
|
+
- _sass/materialize/LICENSE
|
79
|
+
- _sass/materialize/README.md
|
80
|
+
- _sass/materialize/all.scss
|
81
|
+
- _sass/materialize/components/_buttons.scss
|
82
|
+
- _sass/materialize/components/_cards.scss
|
83
|
+
- _sass/materialize/components/_carousel.scss
|
84
|
+
- _sass/materialize/components/_chips.scss
|
85
|
+
- _sass/materialize/components/_collapsible.scss
|
86
|
+
- _sass/materialize/components/_color.scss
|
87
|
+
- _sass/materialize/components/_dropdown.scss
|
88
|
+
- _sass/materialize/components/_global.scss
|
89
|
+
- _sass/materialize/components/_grid.scss
|
90
|
+
- _sass/materialize/components/_icons-material-design.scss
|
91
|
+
- _sass/materialize/components/_materialbox.scss
|
92
|
+
- _sass/materialize/components/_mixins.scss
|
93
|
+
- _sass/materialize/components/_modal.scss
|
94
|
+
- _sass/materialize/components/_navbar.scss
|
95
|
+
- _sass/materialize/components/_normalize.scss
|
96
|
+
- _sass/materialize/components/_prefixer.scss
|
97
|
+
- _sass/materialize/components/_preloader.scss
|
98
|
+
- _sass/materialize/components/_roboto.scss
|
99
|
+
- _sass/materialize/components/_sideNav.scss
|
100
|
+
- _sass/materialize/components/_slider.scss
|
101
|
+
- _sass/materialize/components/_table_of_contents.scss
|
102
|
+
- _sass/materialize/components/_tabs.scss
|
103
|
+
- _sass/materialize/components/_toast.scss
|
104
|
+
- _sass/materialize/components/_tooltip.scss
|
105
|
+
- _sass/materialize/components/_typography.scss
|
106
|
+
- _sass/materialize/components/_variables.scss
|
107
|
+
- _sass/materialize/components/_waves.scss
|
108
|
+
- _sass/materialize/components/date_picker/_default.date.scss
|
109
|
+
- _sass/materialize/components/date_picker/_default.scss
|
110
|
+
- _sass/materialize/components/date_picker/_default.time.scss
|
111
|
+
- _sass/materialize/components/forms/_checkboxes.scss
|
112
|
+
- _sass/materialize/components/forms/_file-input.scss
|
113
|
+
- _sass/materialize/components/forms/_forms.scss
|
114
|
+
- _sass/materialize/components/forms/_input-fields.scss
|
115
|
+
- _sass/materialize/components/forms/_radio-buttons.scss
|
116
|
+
- _sass/materialize/components/forms/_range.scss
|
117
|
+
- _sass/materialize/components/forms/_select.scss
|
118
|
+
- _sass/materialize/components/forms/_switches.scss
|
119
|
+
- assets/fonts/gruppo/Gruppo-Regular.ttf
|
120
|
+
- assets/fonts/gruppo/OFL.txt
|
121
|
+
- assets/fonts/roboto/LICENSE.txt
|
122
|
+
- assets/fonts/roboto/Roboto-Black.ttf
|
123
|
+
- assets/fonts/roboto/Roboto-BlackItalic.ttf
|
124
|
+
- assets/fonts/roboto/Roboto-Bold.ttf
|
125
|
+
- assets/fonts/roboto/Roboto-BoldItalic.ttf
|
126
|
+
- assets/fonts/roboto/Roboto-Italic.ttf
|
127
|
+
- assets/fonts/roboto/Roboto-Light.ttf
|
128
|
+
- assets/fonts/roboto/Roboto-LightItalic.ttf
|
129
|
+
- assets/fonts/roboto/Roboto-Medium.ttf
|
130
|
+
- assets/fonts/roboto/Roboto-MediumItalic.ttf
|
131
|
+
- assets/fonts/roboto/Roboto-Regular.ttf
|
132
|
+
- assets/fonts/roboto/Roboto-Thin.ttf
|
133
|
+
- assets/fonts/roboto/Roboto-ThinItalic.ttf
|
134
|
+
- assets/js/theme.js
|
135
|
+
- assets/styles.scss
|
136
|
+
- assets/syntax.scss
|
137
|
+
homepage: https://github.com/phyiction/kh-portfolio
|
138
|
+
licenses:
|
139
|
+
- MIT
|
140
|
+
metadata: {}
|
141
|
+
post_install_message:
|
142
|
+
rdoc_options: []
|
143
|
+
require_paths:
|
144
|
+
- lib
|
145
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
146
|
+
requirements:
|
147
|
+
- - ">="
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: '0'
|
150
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
151
|
+
requirements:
|
152
|
+
- - ">="
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
version: '0'
|
155
|
+
requirements: []
|
156
|
+
rubyforge_project:
|
157
|
+
rubygems_version: 2.6.8
|
158
|
+
signing_key:
|
159
|
+
specification_version: 4
|
160
|
+
summary: A Jekyll theme for portfolios.
|
161
|
+
test_files: []
|