jekyll-professional-resume 1.0.0 → 1.0.1

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: d1b95ba7765bcd20f22068d14498c27a4d4e1848d50a37d6dcabc0e0cd7d9446
4
- data.tar.gz: 588313e0dd62b659161d236453a78bda515fae0b7ac1e4f4ccdfd6b9e92eec9d
3
+ metadata.gz: 798730ff507b3fb0045a44bd85503d5099c9fe108d5f7dd4c32d79bf5c6ff7d7
4
+ data.tar.gz: 88bb0705037f1d859aca046f9a1856334a240f8c77961dc342fdd6a5f3a900ec
5
5
  SHA512:
6
- metadata.gz: 4820c77c85de8873cdc7d25e0f11baf1b98049e97c816cf39a5953a4d13bdf9f82ca3b37f5bf2103a41c44988e800f21f2e48e8e66ee88b183cc94b60b8b7db4
7
- data.tar.gz: 80922b5925a0df7b7cd838e0a6bcc87d8cda8764c5c04e0eb6381fab4890eb764d554f26768c8bf8c9cc5e07a856d26bab5416747a6cab30da4570c82cb127cf
6
+ metadata.gz: f89b71bcb64f3337906bcfe54f035dcd722f37449f8b8abe645a9f07bb0a44e0fd47fe18345becd228d3546f94195d3e626bf3450b25a23f088ed3b2cbbb804c
7
+ data.tar.gz: 046640ce0232027cddc2ae8539be0227e4ece5cf2f497a7858af083f34413d8385c713cc879cbed1e69c6d84790501d2d64f0bcb52ea30ebbbee85901ea155df
data/_layouts/home.html CHANGED
@@ -13,9 +13,9 @@
13
13
  <title>{{ site.title }}</title>
14
14
  {% seo %}
15
15
 
16
- <link rel="icon" type="image/png" href="{{ site.icon_img }}">
17
- <link rel="shortcut icon" type="image/png" href="{{ site.icon_img }}">
18
- <link rel="stylesheet" href="{{ '/assets/css/style.css' }}">
16
+ <link rel="icon" type="image/png" href="{{ site.icon_img | prepend: site.baseurl }}">
17
+ <link rel="shortcut icon" type="image/png" href="{{ site.icon_img | prepend: site.baseurl }}">
18
+ <link rel="stylesheet" href="{{ '/assets/css/style.css' | prepend: site.baseurl }}">
19
19
  <link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
20
20
  </head>
21
21
 
@@ -25,65 +25,65 @@
25
25
  </div>
26
26
  <div id="about">
27
27
  <div class="profile-zone">
28
- <img class="profile-img" src="{{ site.profile_img }}" alt="My Photo">
28
+ <img class="profile-img" src="{{ site.profile_img | prepend: site.baseurl }}" alt="My Photo">
29
29
  <ul class="personal-info">
30
30
  {% if site.phone_number %}
31
31
  <li><a aria-label="My Phone">
32
- <img src="{{ '/assets/img/phone.svg' }}" alt="My Phone Number">
32
+ <img src="{{ '/assets/img/phone.svg' | prepend: site.baseurl }}" alt="My Phone Number">
33
33
  <div><span>{{ site.phone_number }}</span></div>
34
34
  </a></li>
35
35
  {% endif %}
36
36
  {% if site.address %}
37
37
  <li><a aria-label="My Address" href="https://www.google.com/maps/search/{{ site.address }}">
38
- <img src="{{ '/assets/img/location-dot.svg' }}" alt="My Address">
38
+ <img src="{{ '/assets/img/location-dot.svg' | prepend: site.baseurl }}" alt="My Address">
39
39
  <div><span>{{ site.address }}</span></div>
40
40
  </a></li>
41
41
  {% endif %}
42
42
  {% if site.email %}
43
- <li><a aria-label="My Email" href="{{ site.email }}">
44
- <img src="{{ '/assets/img/envelope.svg' }}" alt="My Email">
43
+ <li><a aria-label="My Email" href="mailto:{{ site.email }}">
44
+ <img src="{{ '/assets/img/envelope.svg' | prepend: site.baseurl }}" alt="My Email">
45
45
  <div><span>{{ site.email }}</span></div>
46
46
  </a></li>
47
47
  {% endif %}
48
48
  {% if site.linkedin_username %}
49
49
  <li><a aria-label="My LinkedIn" href="https://www.linkedin.com/in/{{ site.linkedin_username }}">
50
- <img src="{{ '/assets/img/linkedin.svg' }}" alt="My LinkedIn">
50
+ <img src="{{ '/assets/img/linkedin.svg' | prepend: site.baseurl }}" alt="My LinkedIn">
51
51
  <div><span>@{{ site.linkedin_username }}</span></div>
52
52
  </a></li>
53
53
  {% endif %}
54
54
  {% if site.github_username %}
55
55
  <li><a aria-label="My Github" href="https://github.com/{{ site.github_username }}">
56
- <img src="{{ '/assets/img/github.svg' }}" alt="My Github">
56
+ <img src="{{ '/assets/img/github.svg' | prepend: site.baseurl }}" alt="My Github">
57
57
  <div><span>@{{ site.github_username }}</span></div>
58
58
  </a></li>
59
59
  {% endif %}
60
60
  {% if site.twitter_username %}
61
61
  <li><a aria-label="My Twitter" href="https://twitter.com/{{ site.twitter_username }}">
62
- <img src="{{ '/assets/img/twitter.svg' }}" alt="My Twitter">
62
+ <img src="{{ '/assets/img/twitter.svg' | prepend: site.baseurl }}" alt="My Twitter">
63
63
  <div><span>@{{ site.twitter_username }}</span></div>
64
64
  </a></li>
65
65
  {% endif %}
66
66
  {% if site.instagram_username %}
67
67
  <li><a aria-label="My Instagram" href="https://www.instagram.com/{{ site.instagram_username }}">
68
- <img src="{{ '/assets/img/instagram.svg' }}" alt="My Instagram">
68
+ <img src="{{ '/assets/img/instagram.svg' | prepend: site.baseurl }}" alt="My Instagram">
69
69
  <div><span>@{{ site.instagram_username }}</span></div>
70
70
  </a></li>
71
71
  {% endif %}
72
72
  {% if site.facebook_username %}
73
73
  <li><a aria-label="My Facebook" href="https://www.facebook.com/{{ site.facebook_username }}">
74
- <img src="{{ '/assets/img/facebook.svg' }}" alt="My Facebook">
74
+ <img src="{{ '/assets/img/facebook.svg' | prepend: site.baseurl }}" alt="My Facebook">
75
75
  <div><span>@{{ site.facebook_username }}</span></div>
76
76
  </a></li>
77
77
  {% endif %}
78
78
  {% if site.youtube_username %}
79
79
  <li><a aria-label="My Youtube" href="https://www.youtube.com/{{ site.youtube_username }}">
80
- <img src="{{ '/assets/img/youtube.svg' }}" alt="My Youtube">
80
+ <img src="{{ '/assets/img/youtube.svg' | prepend: site.baseurl }}" alt="My Youtube">
81
81
  <div><span>@{{ site.youtube_username }}</span></div>
82
82
  </a></li>
83
83
  {% endif %}
84
84
  {% if site.blog_url %}
85
85
  <li><a aria-label="My Blog" href="{{ site.blog_url }}">
86
- <img src="{{ '/assets/img/house.svg' }}" alt="My Blog">
86
+ <img src="{{ '/assets/img/house.svg' | prepend: site.baseurl }}" alt="My Blog">
87
87
  <div><span>{{ site.blog_url }}</span></div>
88
88
  </a></li>
89
89
  {% endif %}
@@ -100,7 +100,7 @@
100
100
  <li class="subject" id="{{ subject.subject }}">
101
101
  <h2 class="subject-name">
102
102
  <div>
103
- <img class="subject-icon" src="{{ subject.icon }}" alt="{{ subject.subject }}">
103
+ <img class="subject-icon" src="{{ subject.icon | prepend: site.baseurl }}" alt="{{ subject.subject | prepend: site.baseurl }}">
104
104
  </div>
105
105
  {{ subject.subject }}
106
106
  </h2>
@@ -111,7 +111,7 @@
111
111
  {{ member.title | markdownify }}
112
112
  {% if member.date %}
113
113
  <span class="content-date">
114
- <img src="{{ '/assets/img/calendar.webp' }}" alt="date">
114
+ <img src="{{ '/assets/img/calendar.webp' | prepend: site.baseurl}}" alt="date">
115
115
  {{ member.date }}
116
116
  </span>
117
117
  {% endif %}
@@ -144,5 +144,5 @@
144
144
  </span>
145
145
  </div>
146
146
  </body>
147
- <script src="{{ '/assets/js/main.js' }}"></script>
147
+ <script src="{{ '/assets/js/main.js' | prepend: site.baseurl }}"></script>
148
148
  </html>
@@ -236,6 +236,7 @@ a { text-decoration:none; }
236
236
  &:before{
237
237
  content:"";
238
238
  position: absolute;
239
+ visibility: hidden;
239
240
  top: 6px;
240
241
  left: -56px;
241
242
  width: 16px;
@@ -397,8 +398,12 @@ a { text-decoration:none; }
397
398
 
398
399
  .content-date { font-size: 16px; }
399
400
  .content-date img { width: 24px; }
401
+
402
+ .content-header {
403
+ p { font-size: 18px; }
400
404
 
401
- .content-header p { font-size: 18px; }
405
+ &:before{ visibility: visible !important; }
406
+ }
402
407
 
403
408
  .content-header p,
404
409
  .content-date {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-professional-resume
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yankos
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-01 00:00:00.000000000 Z
11
+ date: 2024-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll