vibefolio 0.1.2 → 0.1.3
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 +1 -1
- data/_includes/projects.html +1 -1
- data/assets/css/style.css +23 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6b31f6e451767a3735b9d275d95e18faf6f508af1daf7eb95b7bbdd999249da7
|
|
4
|
+
data.tar.gz: bd8074fe6971b8f3c04d115484ee1c11602cc7daef8fa0d830df582092bf63ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: deb08a0834d72a48f1fbdd7b085ef816d590b84c319e7197132a8cdc9ba1d2675cae9a7111dccf5f944cca1eb3f007694df9a11a66125a5e9f15d6e37da0c790
|
|
7
|
+
data.tar.gz: 6e77f883627a1491edc1d9a0726ed11b5cb7b7f9e663f443404119707aa788869a264db09287fa33e25575e1d33d7833f125c1c8d3c786bbf42b79eaa3ace72a
|
data/README.md
CHANGED
|
@@ -18,4 +18,4 @@ Vibefolio is a minimalist [Jekyll](https://jekyllrb.com) theme made for text-foc
|
|
|
18
18
|
You can add the Javascript into the `home.html` [layout](https://jekyllrb.com/docs/layouts/) right above the `</body>` tag.
|
|
19
19
|
|
|
20
20
|
## Future Updates
|
|
21
|
-
Vibefolio is currently in v0.1.
|
|
21
|
+
Vibefolio is currently in v0.1.3. I initially created this theme for my [personal website](https://dheerkt.com), 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 or timeline as of now.
|
data/_includes/projects.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
{% for proj in projs %}
|
|
6
6
|
<li>
|
|
7
7
|
<a {% if proj.link %} href="{{ proj.link }}" {% else %} href="{{ proj.url }}" {% endif %}>
|
|
8
|
-
<span class="desc">{{ proj.title }} — {{ proj.brief }}</span>
|
|
8
|
+
<span class="desc">{{ proj.title }}<span class="desc-brief"> — {{ proj.brief }}</span></span>
|
|
9
9
|
<span class="year">{{ proj.yyyymm | slice: 0, 4 }}</span>
|
|
10
10
|
</a>
|
|
11
11
|
</li>
|
data/assets/css/style.css
CHANGED
|
@@ -83,4 +83,27 @@ ul.projects li a span.desc {
|
|
|
83
83
|
ul.projects li a span.year {
|
|
84
84
|
float: right;
|
|
85
85
|
font-size: 0.9em;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/* Handle mobile styling below */
|
|
89
|
+
@media only screen and (max-width: 600px) {
|
|
90
|
+
.main-nav ul {
|
|
91
|
+
list-style-type: none;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.main-nav ul li {
|
|
95
|
+
display: block;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
ul.projects li a span.desc {
|
|
99
|
+
display: block;
|
|
100
|
+
max-width: 85%;
|
|
101
|
+
margin-bottom: 1em;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
@media only screen and (max-width: 360px) {
|
|
106
|
+
ul.projects li a span.desc span.desc-brief {
|
|
107
|
+
display: none;
|
|
108
|
+
}
|
|
86
109
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vibefolio
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dheer Toprani
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-01-
|
|
11
|
+
date: 2022-01-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|