vibefolio 0.1.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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +20 -0
- data/_config.yml +14 -0
- data/_includes/head.html +5 -0
- data/_includes/header.html +8 -0
- data/_includes/navigation.html +29 -0
- data/_includes/projects.html +14 -0
- data/_layouts/home.html +16 -0
- data/_layouts/page.html +14 -0
- data/_projects/lorem.md +7 -0
- data/_projects/vibefolio.md +7 -0
- data/css/style.css +81 -0
- metadata +69 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0e6ce2e12c3b974738437930ff06fc5e251df6ab87795419610c67b301aa4ba9
|
4
|
+
data.tar.gz: f4d9a6d7233f2e6f488cbfe078e6cb3fa98af20ca6fcc8c969df39831373d420
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6851bb036f4e5a3b92ac01890d2087e804e401fa5bc2df73bfaff919209ce251404010063cfce40a46ca9046da382cf76dcfbbeb0548287ce24d99f14b0535db
|
7
|
+
data.tar.gz: aff3e2f976f7bb794da79d30298d654ddab45785740c52c629df3aa0975069e65d01a752cc7a5b139dfa1a005c26019d95664a3e5950e31b0b970b19f4c5868a
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2021 Dheer Toprani
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# Vibefolio
|
2
|
+
|
3
|
+
## What is this?
|
4
|
+
Vibefolio is a minimalist [Jekyll](https://jekyllrb.com) theme made for text-focused online portfolios. The out-of-the-box template supports:
|
5
|
+
|
6
|
+
1. A homepage that displays a brief introduction and the most recent portfolio projects in chronological order.
|
7
|
+
2. Links to sample projects
|
8
|
+
|
9
|
+
## How to set up
|
10
|
+
|
11
|
+
1. Clone the repository.
|
12
|
+
2. Edit `_config.yml`. Replace the sample text in the first section as denoted by the code comments.
|
13
|
+
3. Replace the sample text in the `index.md` file.
|
14
|
+
3. Add future **projects** as Markdown `(.md)` files to the `_projects` folder.
|
15
|
+
|
16
|
+
## Google Analytics
|
17
|
+
You can add the Javascript into the `default.html` [layout](https://jekyllrb.com/docs/layouts/) right above the `</body>` tag.
|
18
|
+
|
19
|
+
## Future Updates
|
20
|
+
Vibefolio is currently in v0.1.0. I initially created this theme for my personal website, where I didn't need to build additional pages like blog posts, contact page, about page, etc. As I eventually update my personal website to add these features, I will update this repository as well. No concrete plans as of now.
|
data/_config.yml
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
# Replace the following text
|
2
|
+
## Content
|
3
|
+
title: "Dheer Toprani"
|
4
|
+
|
5
|
+
## Links
|
6
|
+
github_link: "http://github.com/dheerkt"
|
7
|
+
email_address: "dheerktoprani@gmail.com"
|
8
|
+
linkedin_link: "http://linkedin.com/in/dheerkt"
|
9
|
+
|
10
|
+
# Do not replace the text below
|
11
|
+
collections:
|
12
|
+
projects:
|
13
|
+
output: true
|
14
|
+
permalink: /projects/:path/
|
data/_includes/head.html
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
<div class="main-nav">
|
2
|
+
<ul>
|
3
|
+
{% assign navigation_pages = site.html_pages | sort: 'navigation_weight' %}
|
4
|
+
{% for p in navigation_pages %}
|
5
|
+
{% if p.navigation_weight %}
|
6
|
+
<li>
|
7
|
+
<a href="{{ p.url }}" {% if p.title == page.title %}class="active"{% endif %}>
|
8
|
+
{{ p.title }}
|
9
|
+
</a>
|
10
|
+
</li>
|
11
|
+
{% endif %}
|
12
|
+
{% endfor %}
|
13
|
+
<li>
|
14
|
+
<a href="{{ site.github_link }}">
|
15
|
+
GitHub
|
16
|
+
</a>
|
17
|
+
</li>
|
18
|
+
<li>
|
19
|
+
<a href="mailto:{{ site.email_address }}">
|
20
|
+
Email
|
21
|
+
</a>
|
22
|
+
</li>
|
23
|
+
<li>
|
24
|
+
<a href="{{ site.linkedin_link }}">
|
25
|
+
LinkedIn
|
26
|
+
</a>
|
27
|
+
</li>
|
28
|
+
</ul>
|
29
|
+
</div>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<h3>Projects</h3>
|
2
|
+
|
3
|
+
<ul class="projects">
|
4
|
+
{% assign projs = site.projects | sort: 'yyyymm' | reverse %}
|
5
|
+
{% for proj in projs %}
|
6
|
+
<li>
|
7
|
+
<a {% if proj.link %} href="{{ proj.link }}" {% else %} href="{{ proj.url }}" {% endif %}>
|
8
|
+
<span class="desc">{{ proj.title }} — {{ proj.brief }}</span>
|
9
|
+
<span class="year">{{ proj.yyyymm | slice: 0, 4 }}</span>
|
10
|
+
</a>
|
11
|
+
</li>
|
12
|
+
<br><br>
|
13
|
+
{% endfor %}
|
14
|
+
</ul>
|
data/_layouts/home.html
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
{% include head.html %}
|
5
|
+
<title>{{ site.title }} - {{ page.title }}</title>
|
6
|
+
</head>
|
7
|
+
<body>
|
8
|
+
<div class="container">
|
9
|
+
{% include header.html %}
|
10
|
+
<div class="wrapper">
|
11
|
+
{{ content }}
|
12
|
+
</div>
|
13
|
+
{% include projects.html %}
|
14
|
+
</div>
|
15
|
+
</body>
|
16
|
+
</html>
|
data/_layouts/page.html
ADDED
data/_projects/lorem.md
ADDED
data/css/style.css
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');
|
2
|
+
|
3
|
+
body {
|
4
|
+
font-family: 'Merriweather', serif;
|
5
|
+
}
|
6
|
+
|
7
|
+
.container {
|
8
|
+
margin: 0 auto;
|
9
|
+
width: 560px;
|
10
|
+
}
|
11
|
+
|
12
|
+
a {
|
13
|
+
text-decoration: none;
|
14
|
+
color: #F92C85;
|
15
|
+
}
|
16
|
+
|
17
|
+
header {
|
18
|
+
margin-bottom: 10%;
|
19
|
+
padding-top: 5%;
|
20
|
+
display: flex;
|
21
|
+
}
|
22
|
+
|
23
|
+
header table {
|
24
|
+
width: 100%;
|
25
|
+
}
|
26
|
+
|
27
|
+
.logo {
|
28
|
+
font-weight: 800;
|
29
|
+
padding-left: 0;
|
30
|
+
flex: 1;
|
31
|
+
}
|
32
|
+
|
33
|
+
.logo a {
|
34
|
+
color: #000;
|
35
|
+
}
|
36
|
+
|
37
|
+
.main-nav ul {
|
38
|
+
list-style-type: none;
|
39
|
+
text-align: right;
|
40
|
+
}
|
41
|
+
|
42
|
+
.main-nav ul li {
|
43
|
+
display: inline;
|
44
|
+
padding-left: 1em;
|
45
|
+
}
|
46
|
+
|
47
|
+
.main-nav ul li a {
|
48
|
+
text-align: center
|
49
|
+
}
|
50
|
+
|
51
|
+
.main-nav ul li a:hover {
|
52
|
+
border-bottom: 1px solid #F92C85;
|
53
|
+
}
|
54
|
+
|
55
|
+
.main-nav ul li a.active {
|
56
|
+
border-bottom: 1px solid #F92C85;
|
57
|
+
}
|
58
|
+
|
59
|
+
.wrapper {
|
60
|
+
margin-bottom: 10%;
|
61
|
+
}
|
62
|
+
|
63
|
+
p {
|
64
|
+
line-height: 2em;
|
65
|
+
}
|
66
|
+
|
67
|
+
ul.projects {
|
68
|
+
width: 100%;
|
69
|
+
padding: 0;
|
70
|
+
list-style-type: none;
|
71
|
+
}
|
72
|
+
|
73
|
+
ul.projects li a span.desc {
|
74
|
+
float:left;
|
75
|
+
border-bottom: 1px solid #F92C85;
|
76
|
+
}
|
77
|
+
|
78
|
+
ul.projects li a span.year {
|
79
|
+
float: right;
|
80
|
+
font-size: 0.9em;
|
81
|
+
}
|
metadata
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: vibefolio
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Dheer Toprani
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-12-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.2'
|
27
|
+
description:
|
28
|
+
email:
|
29
|
+
- dheerktoprani@gmail.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- LICENSE.txt
|
35
|
+
- README.md
|
36
|
+
- _config.yml
|
37
|
+
- _includes/head.html
|
38
|
+
- _includes/header.html
|
39
|
+
- _includes/navigation.html
|
40
|
+
- _includes/projects.html
|
41
|
+
- _layouts/home.html
|
42
|
+
- _layouts/page.html
|
43
|
+
- _projects/lorem.md
|
44
|
+
- _projects/vibefolio.md
|
45
|
+
- css/style.css
|
46
|
+
homepage: http://github.com/dheerkt/vibefolio
|
47
|
+
licenses:
|
48
|
+
- MIT
|
49
|
+
metadata: {}
|
50
|
+
post_install_message:
|
51
|
+
rdoc_options: []
|
52
|
+
require_paths:
|
53
|
+
- lib
|
54
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: '0'
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0'
|
64
|
+
requirements: []
|
65
|
+
rubygems_version: 3.2.32
|
66
|
+
signing_key:
|
67
|
+
specification_version: 4
|
68
|
+
summary: A minimal personal portfolio Jekyll-theme.
|
69
|
+
test_files: []
|