academic-cv-jekyll 0.1.1 → 0.1.2

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
  SHA256:
3
- metadata.gz: 8526f494a3b82d981b4b2583b79ac2629b6b7a1efd3466bf5c63de8ef2950879
4
- data.tar.gz: 5d8acd138be3c83183a852a708bc7880766f3cf9e0e5e42bf9f666a699d8bbc2
3
+ metadata.gz: e7462a7908c4dbe2d6f27ade6e7092fdf2017b47ffcef6589aada59857c8e942
4
+ data.tar.gz: acbfa9ec9db1dc7f13015e5efafb8ea1ecd8e3627832f53c74f40ef0f7f5500f
5
5
  SHA512:
6
- metadata.gz: bb60c135cfea5a0b381e5a953b271c8b80c7be1e410cd63671a8acc000665a3155d1561553c39d9b00e2bbeecb78bacfb0014285da41dcdd08ef58c7b5a82348
7
- data.tar.gz: 24955c8138c0424905a78b98564cbeaf15077fd995a592714c8e60a2fa9da0378ba9fa79fc2209bb58be897bfd08c491d72beed33a394f530608a19db6c812a7
6
+ metadata.gz: cf018bedec1a720b6bd92e4e103e60edc1a08f2a0544ea4a472dde0a0f35c61f390f0817e56eb05072dde14e0a2657a72e1fff5ff435142ae1346b74b331d3df
7
+ data.tar.gz: 4ce4cce0c123a639e149f83d776e613b66f8b731486287361cc8f31f7be3f173af013fd5c633180e6f9ded89089d037592d61f723c06cf0a27aa02dfbee6880d
data/README.md CHANGED
@@ -1,23 +1,29 @@
1
- # academic-cv-jekyll
1
+ # Academic CV Jekyll
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
+ A simple academic cv template inspired by latex documents made for jekyll. Also github pages compatible!
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!
5
+ ![Theme preview](screenshot.png)
6
6
 
7
- TODO: Delete this and the text above, and describe your gem
7
+ ## Installation
8
8
 
9
+ Start with a valina jekyll project
9
10
 
10
- ## Installation
11
+ ```bash
12
+ mkdir cv && cd cv
13
+ bundle init
14
+ ```
11
15
 
12
16
  Add this line to your Jekyll site's `Gemfile`:
13
17
 
14
18
  ```ruby
19
+ gem "jekyll"
15
20
  gem "academic-cv-jekyll"
16
21
  ```
17
22
 
18
23
  And add this line to your Jekyll site's `_config.yml`:
19
24
 
20
25
  ```yaml
26
+ title: Your site's title
21
27
  theme: academic-cv-jekyll
22
28
  ```
23
29
 
@@ -31,20 +37,16 @@ Or install it yourself as:
31
37
 
32
38
  ## Usage
33
39
 
34
- TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
35
-
36
- ## Contributing
40
+ 1. Create an index page and add just the default layout to it.
37
41
 
38
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
39
-
40
- ## Development
41
-
42
- To set up your environment to develop this theme, run `bundle install`.
42
+ ```yaml
43
+ ---
44
+ layout: default
45
+ ---
46
+ ```
43
47
 
44
- Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
48
+ 2. Create a `_data` folder with a file named `cv.yml` or copy the one that is in the repository and modify it as you like.
45
49
 
46
- When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
47
- To add a custom directory to your theme-gem, please edit the regexp in `academic-cv-jekyll.gemspec` accordingly.
48
50
 
49
51
  ## License
50
52
 
data/_config.yml ADDED
@@ -0,0 +1 @@
1
+ title: Dimitris Pramateftakis // CV
@@ -10,7 +10,16 @@
10
10
  </head>
11
11
  <body>
12
12
  <div class="page">
13
- {{ content }}
13
+ {% include table.html yml="details" %}
14
+ {% include single.html title="Summary" yml="summary"%}
15
+ {% include array.html title="Education" yml="education" %}
16
+ {% include array.html title="Experience" yml="experience" %}
17
+ {% include array.html title="Extracurricular<br>Activities" yml="extracurricular" %}
18
+ {% include array.html title="Seminars" yml="seminars" %}
19
+ {% include list.html title="Personal Projects" yml="projects"%}
20
+ {% include array.html title="Skills" yml="skills" %}
21
+ {% include single.html title="Languages" yml="languages"%}
22
+ {% include list.html title="Hobbies" yml="hobbies"%}
14
23
  </div>
15
24
  </body>
16
25
  </html>
data/index.html CHANGED
@@ -1,13 +1,3 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
- {% include table.html yml="details" %}
5
- {% include single.html title="Summary" yml="summary"%}
6
- {% include array.html title="Education" yml="education" %}
7
- {% include array.html title="Experience" yml="experience" %}
8
- {% include array.html title="Extracurricular<br>Activities" yml="extracurricular" %}
9
- {% include array.html title="Seminars" yml="seminars" %}
10
- {% include list.html title="Personal Projects" yml="projects"%}
11
- {% include array.html title="Skills" yml="skills" %}
12
- {% include single.html title="Languages" yml="languages"%}
13
- {% include list.html title="Hobbies" yml="hobbies"%}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: academic-cv-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - dimprama
@@ -33,6 +33,7 @@ extra_rdoc_files: []
33
33
  files:
34
34
  - LICENSE.txt
35
35
  - README.md
36
+ - _config.yml
36
37
  - _data/cv.yml
37
38
  - _includes/array.html
38
39
  - _includes/list.html