jekyll-theme-onepage 0.1.0 → 0.2.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 +14 -4
- 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: 87f38f68fe3b668c3a432e9557c3fa3395973b8f
|
4
|
+
data.tar.gz: f634c3d79add960018c0c09d10a91b6b44edb8b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6baebc390d66f8ad44eb342abce4536950b393149af2cca3f2037b140d6a0e60fea9f80dd07c8d2d782e3915ec5b7cf8caa9c640de483ddd9ed446320493412c
|
7
|
+
data.tar.gz: fded55a57a9bbb1a59b81b1f53f315f1b175b664c9c14a45e94b98997ae9c6aecadebd9b47988a767151cb267615f49c46c777e4af7884617f3e5735c1117a3e
|
data/README.md
CHANGED
@@ -1,12 +1,10 @@
|
|
1
1
|
# jekyll-theme-onepage
|
2
2
|
|
3
|
-
Welcome to jekyll-theme-onepage. You'll find everything you need
|
3
|
+
Welcome to jekyll-theme-onepage. You'll find everything you need to built a one page website with a portfolio based on Jekyll. Every posts is a portfolio project instead of a blog post.
|
4
4
|
|
5
5
|
This template is based on bootstrap (ccs, javascript) and use jQuery (javascript).
|
6
6
|
This theme embed a fully functional website with a few files and code.
|
7
7
|
|
8
|
-
To experiment with this code, add some content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
9
|
-
|
10
8
|
Here is what it looks like:
|
11
9
|
|
12
10
|

|
@@ -27,11 +25,23 @@ theme: jekyll-theme-onepage
|
|
27
25
|
|
28
26
|
And then execute:
|
29
27
|
|
30
|
-
$ bundle
|
28
|
+
$ bundle install
|
31
29
|
|
32
30
|
Or install it yourself as:
|
33
31
|
|
34
32
|
$ gem install jekyll-theme-onepage
|
33
|
+
|
34
|
+
To correctly show a portfolio project, add into the YAML syntax of your post:
|
35
|
+
|
36
|
+
```yaml
|
37
|
+
subtitle: "Give me a subtitle"
|
38
|
+
poster: "image.jpg"
|
39
|
+
```
|
40
|
+
The `poster` attribute will be used to show a thumbnail of the project in the portfolio section. This attribute needs to be the name of a existing image placed in "*assets/img/*".
|
41
|
+
|
42
|
+
The `subtitle` is used to show a text below the title of the post.
|
43
|
+
|
44
|
+
Some examples can be found in this them in `_example-posts/` folder.
|
35
45
|
|
36
46
|
## Usage
|
37
47
|
|