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 +4 -4
- data/README.md +48 -7
- data/_includes/portfolio_nav.html +1 -1
- data/_sass/_footer.scss +2 -0
- data/_sass/_header.scss +3 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a037465bab8aff55d770188c14d921cd94272770
|
4
|
+
data.tar.gz: d87afa8d326e0c35d2e7fab72947d9f8fa09a076
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa191278646717a9f43c646fa2603b148067abf840be62144633623d08307dc183f4cf9eca95226c0496c3a67b737e737ed6bb22dbb4122136f4a6551b93e05a
|
7
|
+
data.tar.gz: 6824d3392fc6f2daa436039a3dd78334e5d23276b9d84fd93650e1f0f39a7cd60406e4d8a64eb033945550d8376c47bdda95167da6a7af102ed6dd4415abf4bb
|
data/README.md
CHANGED
@@ -1,10 +1,8 @@
|
|
1
1
|
# portfolio
|
2
2
|
|
3
|
-
|
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
|
-
|
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
|
-
|
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
|
|
data/_sass/_footer.scss
CHANGED
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 {
|