slenderresumetheme 0.0.2 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: aa177a4d78f85b9aab8dc7a74e248cc82f3b7fb2
4
- data.tar.gz: 56d243264c17475974a5b84119e310ac1cae002c
3
+ metadata.gz: 750abe7f019982b652dd12f93e8de6fb08c78ee5
4
+ data.tar.gz: dbef68aff55941fd04f216c388f07820f12f21ed
5
5
  SHA512:
6
- metadata.gz: fb92624196fd673ec4eb6af94ba4e48988c89548d041ff3c8af9439a1b2187ddcfde940bc1f8767ea273040d1315672f2457cc9a26ad01849ebf9f704cc540da
7
- data.tar.gz: 6077eb7ff284776ba04dedad2cf5ccd791af0a98ed2876ca975d1d382e327b100c53d796888cc896823bda7d2afc1cb2ed970d258f97e5321e4a88dfc3e851c2
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
- Run `jekyll serve`
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
+ ![alt text](https://raw.githubusercontent.com/aml2732/slenderResumeTheme/master/_docs/v0_0_2.png)
@@ -3,9 +3,7 @@
3
3
  <link rel="stylesheet" href="/assets/main.css">
4
4
  </head>
5
5
  <body>
6
- <div class="navigation">
7
- TODO: Add navigation
8
- </div>
6
+
9
7
  <div class="pageContent">
10
8
  <div class="ResumeHead">
11
9
  <p class="fullname">{{page.fullname}}</p>
@@ -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-left: 10%;
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.2
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-26 00:00:00.000000000 Z
11
+ date: 2017-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll