slenderresumetheme 0.0.2 → 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.
- checksums.yaml +4 -4
- data/README.md +26 -20
- data/_layouts/default.html +1 -3
- data/_sass/default.scss +3 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 750abe7f019982b652dd12f93e8de6fb08c78ee5
|
|
4
|
+
data.tar.gz: dbef68aff55941fd04f216c388f07820f12f21ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b90d810cdd9cd43620447d94045a07f82a507d72d4dced7ee458235fb48717dd00f7f77a9e255c8e3faaf0fb56cfb51e429c45b909f690caae153b98d5cb95fd
|
|
7
|
+
data.tar.gz: 7f986f5be4eaa98c3b33f464fa85dea0ff150f13090f45b67ed8bc4c6660095a0a8fbc101fa8f699789ed8f62c202d4c4606ffe6a49d7d5aef3c85aecaeb290d
|
data/README.md
CHANGED
|
@@ -1,4 +1,26 @@
|
|
|
1
1
|
|
|
2
|
+
## Usage instructions
|
|
3
|
+
* `gem install bundler`
|
|
4
|
+
* `jekyll new resume`
|
|
5
|
+
* `cd resume`
|
|
6
|
+
* replace the line `gem 'minima',`.. with `gem 'slenderresumetheme', '~> 0.0.2'`
|
|
7
|
+
* `bundle install` to install ^ dependency
|
|
8
|
+
* if ubuntu user may need to supply passwork or use sudo.
|
|
9
|
+
* from `_config.yml` remove the following
|
|
10
|
+
```
|
|
11
|
+
theme: minima
|
|
12
|
+
plugins:
|
|
13
|
+
- jekyll-feed
|
|
14
|
+
```
|
|
15
|
+
and replace it with `theme: slenderresumetheme`
|
|
16
|
+
* remove some of the default generated files using the script: `rm -rf _posts && rm about.md 404.html`
|
|
17
|
+
* Open index.md and edit: `layout: home` to `layout: default`
|
|
18
|
+
* replace the contents of index.md with your modified version of the sample below.
|
|
19
|
+
* `jekyll serve`
|
|
20
|
+
* access the site on : `http://localhost:4000`
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
2
24
|
## Sample index.md:
|
|
3
25
|
```
|
|
4
26
|
---
|
|
@@ -57,24 +79,8 @@ other:
|
|
|
57
79
|
"Text Text Text Text Text Text Text Text"]
|
|
58
80
|
---
|
|
59
81
|
```
|
|
82
|
+
## Packaging this gem
|
|
83
|
+
* `gem build slender-resume-theme.gemspec`
|
|
84
|
+
* `gem push <generatedGem>.gem`
|
|
60
85
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
## Usage instructions
|
|
64
|
-
* `gem install bundler`
|
|
65
|
-
* `jekyll new resume`
|
|
66
|
-
* `cd resume`
|
|
67
|
-
* replace the line `gem 'minima',`.. with `gem 'slenderresumetheme', '~> 0.0.1'`
|
|
68
|
-
* `bundle install` to install ^ dependency
|
|
69
|
-
* if ubuntu user may need to supply passwork or use sudo.
|
|
70
|
-
* from `_config.yml` remove the following
|
|
71
|
-
```
|
|
72
|
-
theme: minima
|
|
73
|
-
plugins:
|
|
74
|
-
- jekyll-feed
|
|
75
|
-
```
|
|
76
|
-
and replace it with `theme: slenderresumetheme`
|
|
77
|
-
* remove some of the default generated files using the script: `rm -rf _posts && rm about.md 404.html`
|
|
78
|
-
* Open index.md and edit: `layout: home` to `layout: default`
|
|
79
|
-
* `jekyll serve`
|
|
80
|
-
* access the site on : `http://localhost:4000`
|
|
86
|
+

|
data/_layouts/default.html
CHANGED
data/_sass/default.scss
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
$PRIMARY_COLOR : #021E29;
|
|
2
|
+
$SECONDARY_COLOR: #A3ADB1;
|
|
2
3
|
|
|
3
4
|
body{
|
|
5
|
+
background-image: linear-gradient(to bottom right, $PRIMARY_COLOR, $SECONDARY_COLOR);
|
|
4
6
|
background-color: $PRIMARY_COLOR;
|
|
5
7
|
}
|
|
6
8
|
|
|
7
9
|
.pageContent{
|
|
8
10
|
background-color: white;
|
|
9
11
|
opacity: 0.7;
|
|
10
|
-
margin
|
|
11
|
-
margin-right: 10%;
|
|
12
|
+
margin: 20px 10%;
|
|
12
13
|
padding: 10px 20px;
|
|
13
14
|
|
|
14
15
|
label{
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: slenderresumetheme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Angela Lloyd
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-07-
|
|
11
|
+
date: 2017-07-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|