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 +4 -4
- data/README.md +18 -16
- data/_config.yml +1 -0
- data/_layouts/default.html +10 -1
- data/index.html +0 -10
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7462a7908c4dbe2d6f27ade6e7092fdf2017b47ffcef6589aada59857c8e942
|
4
|
+
data.tar.gz: acbfa9ec9db1dc7f13015e5efafb8ea1ecd8e3627832f53c74f40ef0f7f5500f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf018bedec1a720b6bd92e4e103e60edc1a08f2a0544ea4a472dde0a0f35c61f390f0817e56eb05072dde14e0a2657a72e1fff5ff435142ae1346b74b331d3df
|
7
|
+
data.tar.gz: 4ce4cce0c123a639e149f83d776e613b66f8b731486287361cc8f31f7be3f173af013fd5c633180e6f9ded89089d037592d61f723c06cf0a27aa02dfbee6880d
|
data/README.md
CHANGED
@@ -1,23 +1,29 @@
|
|
1
|
-
#
|
1
|
+
# Academic CV Jekyll
|
2
2
|
|
3
|
-
|
3
|
+
A simple academic cv template inspired by latex documents made for jekyll. Also github pages compatible!
|
4
4
|
|
5
|
-
|
5
|
+
![Theme preview](screenshot.png)
|
6
6
|
|
7
|
-
|
7
|
+
## Installation
|
8
8
|
|
9
|
+
Start with a valina jekyll project
|
9
10
|
|
10
|
-
|
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
|
-
|
35
|
-
|
36
|
-
## Contributing
|
40
|
+
1. Create an index page and add just the default layout to it.
|
37
41
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
42
|
+
```yaml
|
43
|
+
---
|
44
|
+
layout: default
|
45
|
+
---
|
46
|
+
```
|
43
47
|
|
44
|
-
|
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
|
data/_layouts/default.html
CHANGED
@@ -10,7 +10,16 @@
|
|
10
10
|
</head>
|
11
11
|
<body>
|
12
12
|
<div class="page">
|
13
|
-
|
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.
|
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
|