jekyll-professional-resume 0.0.1
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 +21 -0
- data/README.md +161 -0
- data/_layouts/home.html +147 -0
- data/assets/css/style.scss +453 -0
- data/assets/img/briefcase.svg +1 -0
- data/assets/img/calendar.webp +0 -0
- data/assets/img/clipboard-list.svg +1 -0
- data/assets/img/envelope.svg +1 -0
- data/assets/img/facebook.svg +1 -0
- data/assets/img/flask.svg +1 -0
- data/assets/img/github.svg +1 -0
- data/assets/img/globe.svg +1 -0
- data/assets/img/graduation-cap.svg +1 -0
- data/assets/img/house.svg +1 -0
- data/assets/img/icon.webp +0 -0
- data/assets/img/instagram.svg +1 -0
- data/assets/img/linkedin.svg +1 -0
- data/assets/img/location-dot.svg +1 -0
- data/assets/img/phone.svg +1 -0
- data/assets/img/profile.webp +0 -0
- data/assets/img/screwdriver-wrench.svg +1 -0
- data/assets/img/trophy.svg +1 -0
- data/assets/img/twitter.svg +1 -0
- data/assets/img/youtube.svg +1 -0
- data/assets/js/main.js +57 -0
- metadata +130 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: cf9e8398d46b6e6748548713c6f3802e54153263245aab4bc1f256d644372fef
|
4
|
+
data.tar.gz: 247b58a1fb9ec7f3b30c871cdb367b01d0198294fa8d4c59ad4e9df02be62576
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 118435687934048b08822661f1c79ef97a55eee40a3072db10f07615593bb6f1ff26066a86f08d5501b67a811e15227329aa0a247b0c49971d65eff7f3ea1c78
|
7
|
+
data.tar.gz: 99b2ac5ba50d8409d3104e51cb5bb20d9ecfece76bcc620705ad4d264763f6ee47c957997f1c3d692ced5612a6c172ed0f042df432cdc0ff07703c6a8d3efa6b
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 Yankos
|
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 all
|
13
|
+
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 THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,161 @@
|
|
1
|
+
[](ci)
|
2
|
+
[](https://opensource.org/licenses/MIT)
|
3
|
+
[](https://jekyllrb.com/)
|
4
|
+
[](gem)
|
5
|
+
|
6
|
+
# 🎓 - Jekyll Professional Resume
|
7
|
+
|
8
|
+
A simple and modern resume template, best fit for either **Academic CV (Curriculum Vitae)** or **Engineer Portfolio**.
|
9
|
+
|
10
|
+
Live demo is available [here](https://cvlian.github.io/).
|
11
|
+
|
12
|
+

|
13
|
+
|
14
|
+
## Setup
|
15
|
+
Fork [this repository](https://github.com/byanko55/jekyll-professional-resume) or download the [source](https://github.com/byanko55/jekyll-professional-resume/releases) as a zip.
|
16
|
+
|
17
|
+
If you use as destination a repository named USERNAME.github.io, then your URL will be https://USERNAME.github.io/.
|
18
|
+
|
19
|
+
### Update Profile
|
20
|
+
In `_config.yml`, you can modify personal info such as your *photo, phone number, email*, and other social accounts.
|
21
|
+
|
22
|
+
```yml
|
23
|
+
profile_img: assets/img/profile.webp
|
24
|
+
icon_img: assets/img/icon.webp
|
25
|
+
|
26
|
+
phone_number: 012-345-6789
|
27
|
+
address: City, Country
|
28
|
+
email: email@example.com
|
29
|
+
linkedin_username: linkedin
|
30
|
+
github_username: github
|
31
|
+
...
|
32
|
+
|
33
|
+
```
|
34
|
+
|
35
|
+
### Create a Topic
|
36
|
+
|
37
|
+
All resume information should be placed in a directory named '`_data`'. You may need to manage personal data in separate groups, making a *Yaml* (`.yml`) file for each subject.
|
38
|
+
|
39
|
+
```
|
40
|
+
._data
|
41
|
+
├── SUBJECT1.yml
|
42
|
+
├── SUBJECT2.yml
|
43
|
+
├── SUBJECT3.yml
|
44
|
+
...
|
45
|
+
|
46
|
+
```
|
47
|
+
|
48
|
+
For instance,
|
49
|
+
|
50
|
+
```
|
51
|
+
._data
|
52
|
+
├── Awards.yml
|
53
|
+
├── Education.yml
|
54
|
+
├── Experience.yml
|
55
|
+
├── Languages.yml
|
56
|
+
├── Projects.yml
|
57
|
+
├── Publications.yml
|
58
|
+
├── Skills.yml
|
59
|
+
```
|
60
|
+
|
61
|
+
### Fill your infomation
|
62
|
+
|
63
|
+
Open the *Yaml* file which you created right before. Add the following materials inside of the file.
|
64
|
+
|
65
|
+
* **subject**: title of a subject
|
66
|
+
* **listing-order**: determines the display order (from top to bottom)
|
67
|
+
* **icon**: representative icon to be displayed (pick out from `resources/svgs`)
|
68
|
+
* **contents**: The details of each item, listed in `KEY`-`VALUE` pairs
|
69
|
+
|
70
|
+
```yml
|
71
|
+
subject:
|
72
|
+
listing-order:
|
73
|
+
icon:
|
74
|
+
contents:
|
75
|
+
- title: ITEM 1
|
76
|
+
KEY: VALUE
|
77
|
+
KEY: VALUE
|
78
|
+
...
|
79
|
+
- title: ITEM 2
|
80
|
+
KEY: VALUE
|
81
|
+
...
|
82
|
+
```
|
83
|
+
|
84
|
+
For a better understanding, see the example below.
|
85
|
+
|
86
|
+
```yml
|
87
|
+
subject: Education
|
88
|
+
listing-order: 1
|
89
|
+
icon: "/assets/img/graduation-cap.svg"
|
90
|
+
contents:
|
91
|
+
- title: Stanfort University, MA in Computer Science
|
92
|
+
description:
|
93
|
+
- Development of algorithms for tracking the facial expressions
|
94
|
+
- Optimizing parameter efficient fine tuning for fairness
|
95
|
+
grade: "**GPA**: `4.1/4.3`"
|
96
|
+
date: Mar. 2014 - Feb. 2016
|
97
|
+
...
|
98
|
+
|
99
|
+
```
|
100
|
+
|
101
|
+
The rendered output looks like this:
|
102
|
+
|
103
|
+

|
104
|
+
|
105
|
+
See also the advanced example.
|
106
|
+
|
107
|
+
> **Important**: You can use markdown syntax to **apply text bold, italic, and underlined** effects or **create HTML elements** (including image, links, span, etc.)!
|
108
|
+
|
109
|
+
```
|
110
|
+
subject: Projects
|
111
|
+
listing-order: 3
|
112
|
+
icon: "/assets/img/clipboard-list.svg"
|
113
|
+
contents:
|
114
|
+
- title: "ChatPPT ([https://chat.opena1.com/](https://chat.openai.com/))"
|
115
|
+
description:
|
116
|
+
- Chatbot developed based on a large language model
|
117
|
+
- Designed Generative algorithm to generate novel human-like content
|
118
|
+
- "Technology Used: Rust, Typescript, Python, Ruby"
|
119
|
+
image: ""
|
120
|
+
...
|
121
|
+
|
122
|
+
```
|
123
|
+
|
124
|
+

|
125
|
+
|
126
|
+
### Run site locally
|
127
|
+
|
128
|
+
To test locally, run the following:
|
129
|
+
|
130
|
+
```
|
131
|
+
bundle install
|
132
|
+
bundle exec jekyll serve
|
133
|
+
```
|
134
|
+
|
135
|
+
Now open [http://localhost:4000](http://localhost:4000) in your browser.
|
136
|
+
<br></br>
|
137
|
+
|
138
|
+
|
139
|
+
## Customizing
|
140
|
+
|
141
|
+
### Change Color Palette
|
142
|
+
Wanna pick another color? You can edit the base theme palette in `assets/css/style.scss`.
|
143
|
+
```css
|
144
|
+
:root {
|
145
|
+
--color-background: #fffdfb;
|
146
|
+
--theme1-light: #F6D8CB;
|
147
|
+
--theme1-medium: #D0A694;
|
148
|
+
--theme1-dim: #B07D67;
|
149
|
+
--theme1-dark: #8A5843;
|
150
|
+
--theme2-light: #B1B1C2;
|
151
|
+
...
|
152
|
+
|
153
|
+
}
|
154
|
+
```
|
155
|
+
|
156
|
+
## Contribution
|
157
|
+
If you would like to report a bug or request a new feature, please open [an issue](https://github.com/byanko55/jekyll-professional-resume/issues) We are open to any kind of feedback or collaboration.
|
158
|
+
<br></br>
|
159
|
+
|
160
|
+
## License
|
161
|
+
© 2024 *Yankos*. This theme is available as open source under the terms of the [MIT License](https://opensource.org/license/mit/).
|
data/_layouts/home.html
ADDED
@@ -0,0 +1,147 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
{% assign meta = "" | split, "" %}
|
4
|
+
{% for yml_file in site.data %}
|
5
|
+
{% assign meta = meta | push:yml_file[1] %}
|
6
|
+
{% endfor %}
|
7
|
+
{% assign meta = meta | sort: 'listing-order' %}
|
8
|
+
|
9
|
+
<head>
|
10
|
+
<meta charset="utf-8">
|
11
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
12
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
13
|
+
<title>{{ site.title }}</title>
|
14
|
+
{% seo %}
|
15
|
+
|
16
|
+
<link rel="shortcut icon" type="image/png" href="{{ site.logo_img }}">
|
17
|
+
<link rel="stylesheet" href="{{ '/assets/css/style.css' }}">
|
18
|
+
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
|
19
|
+
</head>
|
20
|
+
|
21
|
+
<body>
|
22
|
+
<div id="sidebar">
|
23
|
+
<ul class="toc-box"></ul>
|
24
|
+
</div>
|
25
|
+
<div id="about">
|
26
|
+
<div class="profile-zone">
|
27
|
+
<img class="profile-img" src="{{ '/assets/img/profile.webp' }}" alt="My Photo">
|
28
|
+
<ul class="personal-info">
|
29
|
+
{% if site.phone_number %}
|
30
|
+
<li><a aria-label="My Phone">
|
31
|
+
<img src="{{ '/assets/img/phone.svg' }}" alt="My Phone Number">
|
32
|
+
<div><span>{{ site.phone_number }}</span></div>
|
33
|
+
</a></li>
|
34
|
+
{% endif %}
|
35
|
+
{% if site.address %}
|
36
|
+
<li><a aria-label="My Address" href="https://www.google.com/maps/search/{{ site.address }}">
|
37
|
+
<img src="{{ '/assets/img/location-dot.svg' }}" alt="My Address">
|
38
|
+
<div><span>{{ site.address }}</span></div>
|
39
|
+
</a></li>
|
40
|
+
{% endif %}
|
41
|
+
{% if site.email %}
|
42
|
+
<li><a aria-label="My Email" href="{{ site.email }}">
|
43
|
+
<img src="{{ '/assets/img/envelope.svg' }}" alt="My Email">
|
44
|
+
<div><span>{{ site.email }}</span></div>
|
45
|
+
</a></li>
|
46
|
+
{% endif %}
|
47
|
+
{% if site.linkedin_username %}
|
48
|
+
<li><a aria-label="My LinkedIn" href="https://www.linkedin.com/in/{{ site.linkedin_username }}">
|
49
|
+
<img src="{{ '/assets/img/linkedin.svg' }}" alt="My LinkedIn">
|
50
|
+
<div><span>@{{ site.linkedin_username }}</span></div>
|
51
|
+
</a></li>
|
52
|
+
{% endif %}
|
53
|
+
{% if site.github_username %}
|
54
|
+
<li><a aria-label="My Github" href="https://github.com/{{ site.github_username }}">
|
55
|
+
<img src="{{ '/assets/img/github.svg' }}" alt="My Github">
|
56
|
+
<div><span>@{{ site.github_username }}</span></div>
|
57
|
+
</a></li>
|
58
|
+
{% endif %}
|
59
|
+
{% if site.twitter_username %}
|
60
|
+
<li><a aria-label="My Twitter" href="https://twitter.com/{{ site.twitter_username }}">
|
61
|
+
<img src="{{ '/assets/img/twitter.svg' }}" alt="My Twitter">
|
62
|
+
<div><span>@{{ site.twitter_username }}</span></div>
|
63
|
+
</a></li>
|
64
|
+
{% endif %}
|
65
|
+
{% if site.instagram_username %}
|
66
|
+
<li><a aria-label="My Instagram" href="https://www.instagram.com/{{ site.instagram_username }}">
|
67
|
+
<img src="{{ '/assets/img/instagram.svg' }}" alt="My Instagram">
|
68
|
+
<div><span>@{{ site.instagram_username }}</span></div>
|
69
|
+
</a></li>
|
70
|
+
{% endif %}
|
71
|
+
{% if site.facebook_username %}
|
72
|
+
<li><a aria-label="My Facebook" href="https://www.facebook.com/{{ site.facebook_username }}">
|
73
|
+
<img src="{{ '/assets/img/facebook.svg' }}" alt="My Facebook">
|
74
|
+
<div><span>@{{ site.facebook_username }}</span></div>
|
75
|
+
</a></li>
|
76
|
+
{% endif %}
|
77
|
+
{% if site.youtube_username %}
|
78
|
+
<li><a aria-label="My Youtube" href="https://www.youtube.com/{{ site.youtube_username }}">
|
79
|
+
<img src="{{ '/assets/img/youtube.svg' }}" alt="My Youtube">
|
80
|
+
<div><span>@{{ site.youtube_username }}</span></div>
|
81
|
+
</a></li>
|
82
|
+
{% endif %}
|
83
|
+
{% if site.blog_url %}
|
84
|
+
<li><a aria-label="My Blog" href="{{ site.blog_url }}">
|
85
|
+
<img src="{{ '/assets/img/house.svg' }}" alt="My Blog">
|
86
|
+
<div><span>{{ site.blog_url }}</span></div>
|
87
|
+
</a></li>
|
88
|
+
{% endif %}
|
89
|
+
</ul>
|
90
|
+
</div>
|
91
|
+
<div class="name-zone">
|
92
|
+
<h1>Your Name Here</h1>
|
93
|
+
<h2>〈Your Job Here〉</h2>
|
94
|
+
</div>
|
95
|
+
</div>
|
96
|
+
<div id="contents">
|
97
|
+
<ul>
|
98
|
+
{% for subject in meta %}
|
99
|
+
<li class="subject" id="{{ subject.subject }}">
|
100
|
+
<h2 class="subject-name">
|
101
|
+
<div>
|
102
|
+
<img class="subject-icon" src="{{ subject.icon }}" alt="{{ subject.subject }}">
|
103
|
+
</div>
|
104
|
+
{{ subject.subject }}
|
105
|
+
</h2>
|
106
|
+
<ul>
|
107
|
+
{% for member in subject.contents %}
|
108
|
+
<li class="item">
|
109
|
+
<div class="content-header">
|
110
|
+
{{ member.title | markdownify }}
|
111
|
+
{% if member.date %}
|
112
|
+
<span class="content-date">
|
113
|
+
<img src="{{ '/assets/img/calendar.webp' }}" alt="date">
|
114
|
+
{{ member.date }}
|
115
|
+
</span>
|
116
|
+
{% endif %}
|
117
|
+
</div>
|
118
|
+
{% for item in member %}
|
119
|
+
{% if item[0] != "title" and item[0] != "date" %}
|
120
|
+
{% if item[1].first %}
|
121
|
+
<ul>
|
122
|
+
{% for subitem in item[1] %}
|
123
|
+
<li class="subitem">
|
124
|
+
{{ subitem | markdownify }}
|
125
|
+
</li>
|
126
|
+
{% endfor %}
|
127
|
+
</ul>
|
128
|
+
{% else %}
|
129
|
+
{{ item[1] | markdownify }}
|
130
|
+
{% endif %}
|
131
|
+
{% endif %}
|
132
|
+
{% endfor %}
|
133
|
+
</li>
|
134
|
+
{% endfor %}
|
135
|
+
</ul>
|
136
|
+
</li>
|
137
|
+
{% endfor %}
|
138
|
+
</ul>
|
139
|
+
</div>
|
140
|
+
<div id="footer">
|
141
|
+
<span>
|
142
|
+
Copyright © 2024 | <a href="https://github.com/byanko55">Yankos</a>
|
143
|
+
</span>
|
144
|
+
</div>
|
145
|
+
</body>
|
146
|
+
<script src="{{ '/assets/js/main.js' }}"></script>
|
147
|
+
</html>
|
@@ -0,0 +1,453 @@
|
|
1
|
+
---
|
2
|
+
---
|
3
|
+
|
4
|
+
:root {
|
5
|
+
--color-background: #fffdfb;
|
6
|
+
--theme1-light: #F6D8CB;
|
7
|
+
--theme1-medium: #D0A694;
|
8
|
+
--theme1-dim: #B07D67;
|
9
|
+
--theme1-dark: #8A5843;
|
10
|
+
--theme2-light: #B1B1C2;
|
11
|
+
--theme2-medium: #8888A4;
|
12
|
+
--theme2-dim: #66658C;
|
13
|
+
--theme2-dark: #484776;
|
14
|
+
--theme3-light: #FFF8E4;
|
15
|
+
--theme3-medium: #EBDFBB;
|
16
|
+
--theme3-dim: #C8B887;
|
17
|
+
--theme3-dark: #A8955A;
|
18
|
+
--theme4-light: #AABEB6;
|
19
|
+
--theme4-medium: #7FA093;
|
20
|
+
--theme4-dim: #5C8876;
|
21
|
+
--theme4-dark: #3D725D;
|
22
|
+
--font-dark: #202424;
|
23
|
+
}
|
24
|
+
|
25
|
+
html, body {
|
26
|
+
margin:0;
|
27
|
+
padding:0;
|
28
|
+
}
|
29
|
+
|
30
|
+
body {
|
31
|
+
margin:0 auto;
|
32
|
+
font-family: 'Poppins', sans-serif;
|
33
|
+
background: var(--color-background);
|
34
|
+
|
35
|
+
&:before{ display: none; }
|
36
|
+
}
|
37
|
+
|
38
|
+
ul, li {
|
39
|
+
list-style:none;
|
40
|
+
padding:0;
|
41
|
+
}
|
42
|
+
|
43
|
+
a { text-decoration:none; }
|
44
|
+
|
45
|
+
#sidebar{ display: none; }
|
46
|
+
|
47
|
+
#about, #contents, #footer { text-align:center; }
|
48
|
+
|
49
|
+
#about{
|
50
|
+
width: 100%;
|
51
|
+
z-index: 2;
|
52
|
+
|
53
|
+
.profile-zone{
|
54
|
+
width: 100%;
|
55
|
+
position: relative;
|
56
|
+
margin: 3rem auto;
|
57
|
+
background-color: var(--theme4-medium);
|
58
|
+
|
59
|
+
&:before {
|
60
|
+
content:"";
|
61
|
+
position: absolute;
|
62
|
+
width: 100%;
|
63
|
+
height: 4rem;
|
64
|
+
top: -4rem;
|
65
|
+
left: 0;
|
66
|
+
background: var(--color-background);
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
.profile-zone .profile-img {
|
71
|
+
width:192px;
|
72
|
+
aspect-ratio:1.0;
|
73
|
+
position: absolute;
|
74
|
+
top:50%;
|
75
|
+
left:50%;
|
76
|
+
transform: translate(-50%, -50%);
|
77
|
+
border-radius:50%;
|
78
|
+
border: 4px solid var(--theme3-dark);
|
79
|
+
}
|
80
|
+
|
81
|
+
.profile-zone .personal-info {
|
82
|
+
width: 100%;
|
83
|
+
height: 200px;
|
84
|
+
margin: auto;
|
85
|
+
columns: 2;
|
86
|
+
line-height: 250%;
|
87
|
+
padding: 1rem 0;
|
88
|
+
display: grid;
|
89
|
+
grid-template-rows: repeat(5, 40px);
|
90
|
+
grid-template-columns: repeat(2, 50%);
|
91
|
+
grid-auto-flow: column;
|
92
|
+
}
|
93
|
+
|
94
|
+
.profile-zone .personal-info span {
|
95
|
+
color: white;
|
96
|
+
display: inline-flex;
|
97
|
+
font-size: 0;
|
98
|
+
vertical-align: middle;
|
99
|
+
clip-path: inset(0 100% 0 0);
|
100
|
+
transition: font-size .6s ease-in-out, clip-path .4s;
|
101
|
+
transition-delay: 0s, .45s;
|
102
|
+
transition-property: font-size, clip-path;
|
103
|
+
}
|
104
|
+
|
105
|
+
.profile-zone .personal-info img {
|
106
|
+
width:20px;
|
107
|
+
aspect-ratio:1.0;
|
108
|
+
cursor: pointer;
|
109
|
+
vertical-align: middle;
|
110
|
+
transition: all .75s;
|
111
|
+
filter: invert(10%) sepia(4%) saturate(5321%) hue-rotate(201deg) brightness(99%) contrast(90%);
|
112
|
+
}
|
113
|
+
|
114
|
+
.profile-zone .personal-info {
|
115
|
+
a {
|
116
|
+
display: inline-flex;
|
117
|
+
cursor: pointer;
|
118
|
+
|
119
|
+
&:hover {
|
120
|
+
img {
|
121
|
+
width: 28px;
|
122
|
+
filter: brightness(0) saturate(100%) invert(77%) sepia(47%) saturate(1006%) hue-rotate(358deg) brightness(104%) contrast(105%);
|
123
|
+
}
|
124
|
+
}
|
125
|
+
}
|
126
|
+
|
127
|
+
li { height: 40px; }
|
128
|
+
|
129
|
+
li:nth-child(n+1):nth-child(-n+5) {
|
130
|
+
text-align: right;
|
131
|
+
|
132
|
+
img {
|
133
|
+
order: 1;
|
134
|
+
margin-right: 0.5rem;
|
135
|
+
}
|
136
|
+
|
137
|
+
div { order: 2; }
|
138
|
+
}
|
139
|
+
|
140
|
+
li:nth-child(n+6):nth-child(-n+10) {
|
141
|
+
text-align: left;
|
142
|
+
|
143
|
+
img {
|
144
|
+
order: 2;
|
145
|
+
margin-left: 0.5rem;
|
146
|
+
}
|
147
|
+
|
148
|
+
div { order: 1; }
|
149
|
+
}
|
150
|
+
|
151
|
+
li:nth-child(1) { margin-right: 5.25rem; }
|
152
|
+
li:nth-child(2) { margin-right: 6.25rem; }
|
153
|
+
li:nth-child(3) { margin-right: 6.75rem; }
|
154
|
+
li:nth-child(4) { margin-right: 6.25rem; }
|
155
|
+
li:nth-child(5) { margin-right: 5.25rem; }
|
156
|
+
li:nth-child(6) { margin-left: 5.25rem; }
|
157
|
+
li:nth-child(7) { margin-left: 6.25rem; }
|
158
|
+
li:nth-child(8) { margin-left: 6.75rem; }
|
159
|
+
li:nth-child(9) { margin-left: 6.25rem; }
|
160
|
+
li:nth-child(10) { margin-left: 5.25rem; }
|
161
|
+
}
|
162
|
+
|
163
|
+
.name-zone { margin-top: -2rem; }
|
164
|
+
|
165
|
+
.name-zone h1,
|
166
|
+
.name-zone h2 {
|
167
|
+
margin: 0;
|
168
|
+
}
|
169
|
+
|
170
|
+
.name-zone h1 { color: var(--theme3-dark); }
|
171
|
+
.name-zone h2 { color: var(--theme4-dark); }
|
172
|
+
}
|
173
|
+
|
174
|
+
#contents{
|
175
|
+
width: 85%;
|
176
|
+
margin-left: 7.5%;
|
177
|
+
text-align: left;
|
178
|
+
|
179
|
+
ul { margin-bottom: 3rem; }
|
180
|
+
|
181
|
+
li {
|
182
|
+
margin-top: 2rem;
|
183
|
+
line-height: 100%;
|
184
|
+
}
|
185
|
+
|
186
|
+
.subject-name {
|
187
|
+
margin: 3rem auto;
|
188
|
+
color: var(--font-dark);
|
189
|
+
position: relative;
|
190
|
+
margin-left: -16px;
|
191
|
+
margin-bottom: 0;
|
192
|
+
padding-bottom: 12px;
|
193
|
+
border-bottom: 1px solid;
|
194
|
+
|
195
|
+
div {
|
196
|
+
width: 32px;
|
197
|
+
aspect-ratio: 1.0;
|
198
|
+
margin-right: 8px;
|
199
|
+
margin-left: 0;
|
200
|
+
transform: translateY(6px);
|
201
|
+
display: inline-flex;
|
202
|
+
}
|
203
|
+
}
|
204
|
+
|
205
|
+
.subject-icon {
|
206
|
+
width:32px;
|
207
|
+
aspect-ratio:1.0;
|
208
|
+
vertical-align: sub;
|
209
|
+
filter: invert(27%) sepia(2%) saturate(3297%) hue-rotate(8deg) brightness(92%) contrast(82%);
|
210
|
+
}
|
211
|
+
|
212
|
+
.item { position: relative; }
|
213
|
+
|
214
|
+
.item:nth-child(1) { margin-top: -0.5rem; }
|
215
|
+
|
216
|
+
.content-header + ul { margin-top: -1rem; }
|
217
|
+
|
218
|
+
.subject, .item {
|
219
|
+
opacity: 0;
|
220
|
+
transition: all 0.8s;
|
221
|
+
transform: translateY(40px);
|
222
|
+
}
|
223
|
+
|
224
|
+
.appear {
|
225
|
+
opacity: 1;
|
226
|
+
transform: none;
|
227
|
+
transition-delay: 0.3s;
|
228
|
+
}
|
229
|
+
|
230
|
+
.content-header {
|
231
|
+
display: table;
|
232
|
+
width: 100%;
|
233
|
+
position: relative;
|
234
|
+
margin: 1rem auto;
|
235
|
+
|
236
|
+
&:before{
|
237
|
+
content:"";
|
238
|
+
position: absolute;
|
239
|
+
top: 6px;
|
240
|
+
left: -56px;
|
241
|
+
width: 16px;
|
242
|
+
aspect-ratio: 1.0;
|
243
|
+
background: var(--theme3-dark);
|
244
|
+
border-radius: 50%;
|
245
|
+
}
|
246
|
+
|
247
|
+
p, span { line-height: 150%; }
|
248
|
+
|
249
|
+
p {
|
250
|
+
font-weight: 600;
|
251
|
+
font-size: 16px;
|
252
|
+
color: var(--font-dark);
|
253
|
+
}
|
254
|
+
}
|
255
|
+
|
256
|
+
.content-date {
|
257
|
+
font-size: 14px;
|
258
|
+
width: 224px;
|
259
|
+
text-align: left;
|
260
|
+
}
|
261
|
+
|
262
|
+
.content-date img {
|
263
|
+
width:20px;
|
264
|
+
aspect-ratio:1.0;
|
265
|
+
margin-right: 8px;
|
266
|
+
vertical-align: sub;
|
267
|
+
}
|
268
|
+
|
269
|
+
.subitem {
|
270
|
+
list-style: square;
|
271
|
+
margin-left: 2rem;
|
272
|
+
margin-top: 0.5rem;
|
273
|
+
}
|
274
|
+
|
275
|
+
em { padding: 0 4px 0 1px; }
|
276
|
+
|
277
|
+
a {
|
278
|
+
color: var(--theme4-dark);
|
279
|
+
text-decoration: underline 1px;
|
280
|
+
text-underline-position: under;
|
281
|
+
}
|
282
|
+
|
283
|
+
p { line-height: 150%; }
|
284
|
+
|
285
|
+
code {
|
286
|
+
margin:0 2px;
|
287
|
+
padding:1px 5px;
|
288
|
+
font-size: 14px;
|
289
|
+
border: 1px solid var(--theme3-dim);
|
290
|
+
background-color:var(--color-background);
|
291
|
+
border-radius:3px;
|
292
|
+
font-family:'Courier New', Courier, monospace;
|
293
|
+
color:var(--font-dark);
|
294
|
+
position:relative;
|
295
|
+
top:-1px;
|
296
|
+
vertical-align:middle;
|
297
|
+
}
|
298
|
+
|
299
|
+
img[alt="devicon"] {
|
300
|
+
height: 60px;
|
301
|
+
width: 60px;
|
302
|
+
}
|
303
|
+
|
304
|
+
ul + p { margin-top: -2rem; }
|
305
|
+
|
306
|
+
.content-header + .item { margin-top: 0; }
|
307
|
+
|
308
|
+
img {
|
309
|
+
aspect-ratio: auto;
|
310
|
+
max-width: 320px;
|
311
|
+
}
|
312
|
+
}
|
313
|
+
|
314
|
+
#footer {
|
315
|
+
padding: 1rem;
|
316
|
+
background: var(--theme3-medium);
|
317
|
+
font-size: 14px;
|
318
|
+
|
319
|
+
a {
|
320
|
+
color: var(--theme1-dark);
|
321
|
+
font-weight: 600;
|
322
|
+
}
|
323
|
+
}
|
324
|
+
|
325
|
+
@media (min-width:768px) {
|
326
|
+
body::before {
|
327
|
+
content:"";
|
328
|
+
display: block;
|
329
|
+
position: fixed;
|
330
|
+
left: calc(50% - min(512px, 33%) - 50px);
|
331
|
+
width: 3px;
|
332
|
+
height: 100%;
|
333
|
+
margin-top: -64px;
|
334
|
+
background: var(--theme3-medium);
|
335
|
+
}
|
336
|
+
|
337
|
+
#about {
|
338
|
+
margin-bottom: 6rem;
|
339
|
+
|
340
|
+
.profile-zone { margin:4rem auto; }
|
341
|
+
|
342
|
+
.profile-zone .profile-img { width:256px; }
|
343
|
+
|
344
|
+
.profile-zone .personal-info { min-width: 768px; }
|
345
|
+
|
346
|
+
.profile-zone .personal-info {
|
347
|
+
a:hover{
|
348
|
+
span {
|
349
|
+
font-size: 1rem;
|
350
|
+
clip-path: inset(0 0 0 0);
|
351
|
+
};
|
352
|
+
}
|
353
|
+
|
354
|
+
li:nth-child(1) { margin-right: 7.25rem; }
|
355
|
+
li:nth-child(2) { margin-right: 8.25rem; }
|
356
|
+
li:nth-child(3) { margin-right: 8.75rem; }
|
357
|
+
li:nth-child(4) { margin-right: 8.25rem; }
|
358
|
+
li:nth-child(5) { margin-right: 7.25rem; }
|
359
|
+
li:nth-child(6) { margin-left: 7.25rem; }
|
360
|
+
li:nth-child(7) { margin-left: 8.25rem; }
|
361
|
+
li:nth-child(8) { margin-left: 8.75rem; }
|
362
|
+
li:nth-child(9) { margin-left: 8.25rem; }
|
363
|
+
li:nth-child(10) { margin-left: 7.25rem; }
|
364
|
+
}
|
365
|
+
}
|
366
|
+
|
367
|
+
#contents {
|
368
|
+
width: 78%;
|
369
|
+
margin-left: 17%;
|
370
|
+
|
371
|
+
img { max-width: 640px; }
|
372
|
+
|
373
|
+
.subject { margin-top: 6rem; }
|
374
|
+
|
375
|
+
.item:nth-child(1) { margin-top: 2rem; }
|
376
|
+
|
377
|
+
.item ul { margin-top: 0; }
|
378
|
+
|
379
|
+
.subject-name {
|
380
|
+
margin-left: auto;
|
381
|
+
margin-bottom: 3rem;
|
382
|
+
padding: 0;
|
383
|
+
border: none;
|
384
|
+
|
385
|
+
div {
|
386
|
+
background: var(--theme3-dim);
|
387
|
+
border-radius: 50%;
|
388
|
+
position: absolute;
|
389
|
+
top: -16px;
|
390
|
+
padding: 8px;
|
391
|
+
margin-right: 24px;
|
392
|
+
margin-left: -72px;
|
393
|
+
transform: none;
|
394
|
+
display: inline-table;
|
395
|
+
}
|
396
|
+
}
|
397
|
+
|
398
|
+
.content-date { font-size: 16px; }
|
399
|
+
.content-date img { width: 24px; }
|
400
|
+
|
401
|
+
.content-header p { font-size: 18px; }
|
402
|
+
|
403
|
+
.content-header p,
|
404
|
+
.content-date {
|
405
|
+
display: table-cell;
|
406
|
+
}
|
407
|
+
}
|
408
|
+
}
|
409
|
+
|
410
|
+
@media (min-width:1024px) {
|
411
|
+
#about { margin-bottom: 8rem; }
|
412
|
+
|
413
|
+
#sidebar {
|
414
|
+
display: block;
|
415
|
+
position: fixed;
|
416
|
+
width: 128px;
|
417
|
+
top: 320px;
|
418
|
+
right: 0;
|
419
|
+
z-index: 1;
|
420
|
+
font-size: 14px;
|
421
|
+
|
422
|
+
li {
|
423
|
+
margin: 6px;
|
424
|
+
margin-right: 0;
|
425
|
+
padding: 4px 24px 4px 12px;
|
426
|
+
border-radius: 8px 0 0 8px;
|
427
|
+
background: var(--theme3-medium);
|
428
|
+
transition: all 0.5s;
|
429
|
+
cursor: pointer;
|
430
|
+
|
431
|
+
a {
|
432
|
+
color: var(--font-dark);
|
433
|
+
text-shadow: 1px 1px 1px rgba(255,255,255,0.75);
|
434
|
+
}
|
435
|
+
}
|
436
|
+
|
437
|
+
li:hover, li.active {
|
438
|
+
padding-left: 24px;
|
439
|
+
padding-right: 12px;
|
440
|
+
background: var(--theme1-medium);
|
441
|
+
|
442
|
+
a { color:var(--font-dark); }
|
443
|
+
}
|
444
|
+
}
|
445
|
+
|
446
|
+
#contents {
|
447
|
+
width: 66%;
|
448
|
+
margin: auto;
|
449
|
+
max-width: 1024px;
|
450
|
+
|
451
|
+
img { max-width: 100%; }
|
452
|
+
}
|
453
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160v96H192 320 512V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM512 288H320v32c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V288H0V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V288z"/></svg>
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM72 272a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm104-16H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16zM72 368a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm88 0c0-8.8 7.2-16 16-16H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256h0z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M288 0H160 128C110.3 0 96 14.3 96 32s14.3 32 32 32V196.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6C0 480.9 31.1 512 69.4 512H378.6c38.3 0 69.4-31.1 69.4-69.4c0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288zM192 196.8V64h64V196.8c0 23.7 6.6 46.9 19 67.1L309.5 320h-171L173 263.9c12.4-20.2 19-43.4 19-67.1z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M352 256c0 22.2-1.2 43.6-3.3 64H163.3c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64H348.7c2.2 20.4 3.3 41.8 3.3 64zm28.8-64H503.9c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64H380.8c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32H376.7c-10-63.9-29.8-117.4-55.3-151.6c78.3 20.7 142 77.5 171.9 151.6zm-149.1 0H167.7c6.1-36.4 15.5-68.6 27-94.7c10.5-23.6 22.2-40.7 33.5-51.5C239.4 3.2 248.7 0 256 0s16.6 3.2 27.8 13.8c11.3 10.8 23 27.9 33.5 51.5c11.6 26 20.9 58.2 27 94.7zm-209 0H18.6C48.6 85.9 112.2 29.1 190.6 8.4C165.1 42.6 145.3 96.1 135.3 160zM8.1 192H131.2c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64H8.1C2.8 299.5 0 278.1 0 256s2.8-43.5 8.1-64zM194.7 446.6c-11.6-26-20.9-58.2-27-94.6H344.3c-6.1 36.4-15.5 68.6-27 94.6c-10.5 23.6-22.2 40.7-33.5 51.5C272.6 508.8 263.3 512 256 512s-16.6-3.2-27.8-13.8c-11.3-10.8-23-27.9-33.5-51.5zM135.3 352c10 63.9 29.8 117.4 55.3 151.6C112.2 482.9 48.6 426.1 18.6 352H135.3zm358.1 0c-30 74.1-93.6 130.9-171.9 151.6c25.5-34.2 45.2-87.7 55.3-151.6H493.4z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M320 32c-8.1 0-16.1 1.4-23.7 4.1L15.8 137.4C6.3 140.9 0 149.9 0 160s6.3 19.1 15.8 22.6l57.9 20.9C57.3 229.3 48 259.8 48 291.9v28.1c0 28.4-10.8 57.7-22.3 80.8c-6.5 13-13.9 25.8-22.5 37.6C0 442.7-.9 448.3 .9 453.4s6 8.9 11.2 10.2l64 16c4.2 1.1 8.7 .3 12.4-2s6.3-6.1 7.1-10.4c8.6-42.8 4.3-81.2-2.1-108.7C90.3 344.3 86 329.8 80 316.5V291.9c0-30.2 10.2-58.7 27.9-81.5c12.9-15.5 29.6-28 49.2-35.7l157-61.7c8.2-3.2 17.5 .8 20.7 9s-.8 17.5-9 20.7l-157 61.7c-12.4 4.9-23.3 12.4-32.2 21.6l159.6 57.6c7.6 2.7 15.6 4.1 23.7 4.1s16.1-1.4 23.7-4.1L624.2 182.6c9.5-3.4 15.8-12.5 15.8-22.6s-6.3-19.1-15.8-22.6L343.7 36.1C336.1 33.4 328.1 32 320 32zM128 408c0 35.3 86 72 192 72s192-36.7 192-72L496.7 262.6 354.5 314c-11.1 4-22.8 6-34.5 6s-23.5-2-34.5-6L143.3 262.6 128 408z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c0 2.7-.2 5.4-.5 8.1V472c0 22.1-17.9 40-40 40H456c-1.1 0-2.2 0-3.3-.1c-1.4 .1-2.8 .1-4.2 .1H416 392c-22.1 0-40-17.9-40-40V448 384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24z"/></svg>
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z"/></svg>
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M78.6 5C69.1-2.4 55.6-1.5 47 7L7 47c-8.5 8.5-9.4 22-2.1 31.6l80 104c4.5 5.9 11.6 9.4 19 9.4h54.1l109 109c-14.7 29-10 65.4 14.3 89.6l112 112c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-112-112c-24.2-24.2-60.6-29-89.6-14.3l-109-109V104c0-7.5-3.5-14.5-9.4-19L78.6 5zM19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L233.7 374.3c-7.8-20.9-9-43.6-3.6-65.1l-61.7-61.7L19.9 396.1zM512 144c0-10.5-1.1-20.7-3.2-30.5c-2.4-11.2-16.1-14.1-24.2-6l-63.9 63.9c-3 3-7.1 4.7-11.3 4.7H352c-8.8 0-16-7.2-16-16V102.6c0-4.2 1.7-8.3 4.7-11.3l63.9-63.9c8.1-8.1 5.2-21.8-6-24.2C388.7 1.1 378.5 0 368 0C288.5 0 224 64.5 224 144l0 .8 85.3 85.3c36-9.1 75.8 .5 104 28.7L429 274.5c49-23 83-72.8 83-130.5zM56 432a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M400 0H176c-26.5 0-48.1 21.8-47.1 48.2c.2 5.3 .4 10.6 .7 15.8H24C10.7 64 0 74.7 0 88c0 92.6 33.5 157 78.5 200.7c44.3 43.1 98.3 64.8 138.1 75.8c23.4 6.5 39.4 26 39.4 45.6c0 20.9-17 37.9-37.9 37.9H192c-17.7 0-32 14.3-32 32s14.3 32 32 32H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H357.9C337 448 320 431 320 410.1c0-19.6 15.9-39.2 39.4-45.6c39.9-11 93.9-32.7 138.2-75.8C542.5 245 576 180.6 576 88c0-13.3-10.7-24-24-24H446.4c.3-5.2 .5-10.4 .7-15.8C448.1 21.8 426.5 0 400 0zM48.9 112h84.4c9.1 90.1 29.2 150.3 51.9 190.6c-24.9-11-50.8-26.5-73.2-48.3c-32-31.1-58-76-63-142.3zM464.1 254.3c-22.4 21.8-48.3 37.3-73.2 48.3c22.7-40.3 42.8-100.5 51.9-190.6h84.4c-5.1 66.3-31.1 111.2-63 142.3z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/></svg>
|
data/assets/js/main.js
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function(){
|
2
|
+
const tocbox = document.querySelector('.toc-box');
|
3
|
+
var headers = document.querySelectorAll('.subject-name');
|
4
|
+
|
5
|
+
headers.forEach((h) => {
|
6
|
+
let tocItem = document.createElement("li");
|
7
|
+
tocItem.id = "toc-id-" + h.textContent;
|
8
|
+
|
9
|
+
let itemLink = document.createElement("a");
|
10
|
+
itemLink.classList.add("content-link");
|
11
|
+
itemLink.textContent = h.textContent;
|
12
|
+
|
13
|
+
tocItem.append(itemLink);
|
14
|
+
|
15
|
+
tocItem.addEventListener('click', function(){
|
16
|
+
h.scrollIntoView({
|
17
|
+
behavior: 'smooth'
|
18
|
+
});
|
19
|
+
});
|
20
|
+
|
21
|
+
tocbox.append(tocItem);
|
22
|
+
});
|
23
|
+
|
24
|
+
var contents = document.querySelectorAll('.subject, .item');
|
25
|
+
|
26
|
+
setInterval(function(){
|
27
|
+
var scrollPos = document.documentElement.scrollTop;
|
28
|
+
var wh = window.innerHeight;
|
29
|
+
|
30
|
+
Array.from(tocbox.querySelectorAll('li')).forEach(function(tocItem){
|
31
|
+
tocItem.classList.remove('active');
|
32
|
+
});
|
33
|
+
|
34
|
+
var currHead;
|
35
|
+
|
36
|
+
Array.from(headers).forEach(function(h){
|
37
|
+
let headPos = h.getBoundingClientRect().top + window.scrollY - wh/2;
|
38
|
+
|
39
|
+
if (scrollPos > headPos) currHead = h;
|
40
|
+
});
|
41
|
+
|
42
|
+
Array.from(contents).forEach(function(c){
|
43
|
+
let contentPos = c.getBoundingClientRect().top + window.scrollY - wh;
|
44
|
+
|
45
|
+
if (c.classList.contains("appear")) return;
|
46
|
+
|
47
|
+
if (scrollPos < contentPos) return;
|
48
|
+
|
49
|
+
c.classList.add('appear');
|
50
|
+
});
|
51
|
+
|
52
|
+
if (currHead != undefined){
|
53
|
+
let tocLink = document.getElementById("toc-id-" + currHead.textContent);
|
54
|
+
tocLink.classList.add('active');
|
55
|
+
}
|
56
|
+
}, 200);
|
57
|
+
});
|
metadata
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jekyll-professional-resume
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Yankos
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-03-31 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: '3.9'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '5.0'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3.9'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '5.0'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: jekyll-feed
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0.12'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0.12'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: jekyll-sitemap
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "~>"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '1.3'
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '1.3'
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: jekyll-seo-tag
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '2.6'
|
68
|
+
type: :runtime
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '2.6'
|
75
|
+
description:
|
76
|
+
email:
|
77
|
+
- byanko55@gmail.com
|
78
|
+
executables: []
|
79
|
+
extensions: []
|
80
|
+
extra_rdoc_files: []
|
81
|
+
files:
|
82
|
+
- LICENSE
|
83
|
+
- README.md
|
84
|
+
- _layouts/home.html
|
85
|
+
- assets/css/style.scss
|
86
|
+
- assets/img/briefcase.svg
|
87
|
+
- assets/img/calendar.webp
|
88
|
+
- assets/img/clipboard-list.svg
|
89
|
+
- assets/img/envelope.svg
|
90
|
+
- assets/img/facebook.svg
|
91
|
+
- assets/img/flask.svg
|
92
|
+
- assets/img/github.svg
|
93
|
+
- assets/img/globe.svg
|
94
|
+
- assets/img/graduation-cap.svg
|
95
|
+
- assets/img/house.svg
|
96
|
+
- assets/img/icon.webp
|
97
|
+
- assets/img/instagram.svg
|
98
|
+
- assets/img/linkedin.svg
|
99
|
+
- assets/img/location-dot.svg
|
100
|
+
- assets/img/phone.svg
|
101
|
+
- assets/img/profile.webp
|
102
|
+
- assets/img/screwdriver-wrench.svg
|
103
|
+
- assets/img/trophy.svg
|
104
|
+
- assets/img/twitter.svg
|
105
|
+
- assets/img/youtube.svg
|
106
|
+
- assets/js/main.js
|
107
|
+
homepage: https://github.com/byanko55/jekyll-professional-resume
|
108
|
+
licenses:
|
109
|
+
- MIT
|
110
|
+
metadata: {}
|
111
|
+
post_install_message:
|
112
|
+
rdoc_options: []
|
113
|
+
require_paths:
|
114
|
+
- lib
|
115
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - ">="
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '0'
|
120
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
requirements: []
|
126
|
+
rubygems_version: 3.5.5
|
127
|
+
signing_key:
|
128
|
+
specification_version: 4
|
129
|
+
summary: Simple Academic/Professional Resume powered on Jekyll
|
130
|
+
test_files: []
|