vv5-portfolio 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 158f92b6ab0aeb36cb55ec907bde11b54ac09afe
4
- data.tar.gz: eaec3ab1081d047d115c6da2ecb05b83fee60fd1
3
+ metadata.gz: a037465bab8aff55d770188c14d921cd94272770
4
+ data.tar.gz: d87afa8d326e0c35d2e7fab72947d9f8fa09a076
5
5
  SHA512:
6
- metadata.gz: a43a16e713dde1352adc1b16d773c6b8850ec1381a733bf52e29e06d58e8786cd53829c0f2e56607937960c70434deceb4b28e5f8aad1a41b13bde82c3b656f7
7
- data.tar.gz: 940b37d7e6a426604855072013bd19635582f6c145d94a32eab4d3f81f27394e5d142d151a0a98fe5e1d2395799b00569f0d857a7ecc7200a7f9c0e5e3de58ca
6
+ metadata.gz: aa191278646717a9f43c646fa2603b148067abf840be62144633623d08307dc183f4cf9eca95226c0496c3a67b737e737ed6bb22dbb4122136f4a6551b93e05a
7
+ data.tar.gz: 6824d3392fc6f2daa436039a3dd78334e5d23276b9d84fd93650e1f0f39a7cd60406e4d8a64eb033945550d8376c47bdda95167da6a7af102ed6dd4415abf4bb
data/README.md CHANGED
@@ -1,10 +1,8 @@
1
1
  # portfolio
2
2
 
3
- Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
3
+ This Jekyll theme was originally designed for http://itzelschiaffini.github.io it contains a simple about section, a section divider, and a portfolio by categories.
4
4
 
5
- To experiment with this code, add some sample content and run `bundle exec jekyll serve` this directory is setup just like a Jekyll site!
6
-
7
- TODO: Delete this and the text above, and describe your gem
5
+ You'll be able to change most settings either in `_config.yml`, `assets` or in your own `about.md`
8
6
 
9
7
 
10
8
  ## Installation
@@ -12,13 +10,13 @@ TODO: Delete this and the text above, and describe your gem
12
10
  Add this line to your Jekyll site's `Gemfile`:
13
11
 
14
12
  ```ruby
15
- gem "portfolio"
13
+ gem "vv5-portfolio"
16
14
  ```
17
15
 
18
16
  And add this line to your Jekyll site's `_config.yml`:
19
17
 
20
18
  ```yaml
21
- theme: portfolio
19
+ theme: vv5-portfolio
22
20
  ```
23
21
 
24
22
  And then execute:
@@ -31,7 +29,50 @@ Or install it yourself as:
31
29
 
32
30
  ## Usage
33
31
 
34
- TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
32
+ You should create an `about.md` a `_config.yml` and an `index.md` they should include:
33
+
34
+ ### about.md
35
+
36
+ In your frontmatter make sure you include these tags
37
+
38
+ ```yml
39
+ ---
40
+ layout: page
41
+ title: About
42
+ welcome: Hi! my name is
43
+ firstname: Jane
44
+ lastname: Doe
45
+ taglines:
46
+ - tagline1
47
+ - tagline2
48
+ - tagline3
49
+ ---
50
+ ```
51
+
52
+ and in your content include an abstract of yourself
53
+
54
+ ### config.yml
55
+
56
+ ```
57
+ title: Tincidunt non
58
+ catchphrase: Proin aliquam, eros eget vulputate
59
+ job: Duis suscipit varius null
60
+ jobtitle: Duis suscipit
61
+ copyright: Copyright © 2017 - Tincidunt Non. All Rights Reserved.
62
+ thanks: Proin aliquam, eros eget vulputate!
63
+ picture: /assets/brand/profile.jpg
64
+
65
+ social:
66
+ instagram: youruser
67
+ email: youruser@gmail.com
68
+ tumblr: youruser
69
+ facebook: youruser
70
+ pinterest: youruser
71
+ ```
72
+
73
+ ### index.md
74
+ Finally make sure your `index.md` layout is `home`
75
+
35
76
 
36
77
  ## Contributing
37
78
 
@@ -1,4 +1,4 @@
1
- <ul class="nav nav-pills mb-3" id="pills-tab" role="tablist">
1
+ <ul class="nav flex-column nav-pills mb-3" id="pills-tab" role="tablist">
2
2
 
3
3
  {% for category in site.categories %}
4
4
  <li class="nav-item">
data/_sass/_footer.scss CHANGED
@@ -21,7 +21,9 @@ body {
21
21
  }
22
22
 
23
23
  h5 {
24
+ font-family: "Pacifico", "Helvetica Neue", Helvetica, Arial, sans-serif;
24
25
  color: darken(theme-color(secondary), 5%);
26
+ font-size: xx-large;
25
27
  }
26
28
 
27
29
  a {
data/_sass/_header.scss CHANGED
@@ -11,15 +11,18 @@ header {
11
11
 
12
12
  .intro-welcome {
13
13
  font-size: $spacer*2;
14
+ font-family: "Pacifico", "Helvetica Neue", Helvetica, Arial, sans-serif;
14
15
  }
15
16
 
16
17
  .brand-heading {
17
18
  font-size: $spacer*9;
18
19
  line-height: $spacer*9;
20
+ font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
19
21
  }
20
22
 
21
23
  .tagline {
22
24
  font-size: $spacer*2;
25
+ font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
23
26
  }
24
27
 
25
28
  .page-scroll {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vv5-portfolio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Reyes