jekyll-theme-chirpy-customized-upe 0.1.0 → 0.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 74eeb389daecd931f4e6e7056edd83d9b2cffa4aa1b02d9080f3e81fc41c64ae
4
- data.tar.gz: fcb1f70126ecd2a37eb060252639de184ea269ee518b83e9d8801ea5a6b7a163
3
+ metadata.gz: 787b5394b48c9baab9a02e63fa01f654b136bdc83affaa0cce2cde1b8afac066
4
+ data.tar.gz: 938f098f58865bf1486f8ef055b596fb11421011c104fa937bfea959a3f46c01
5
5
  SHA512:
6
- metadata.gz: 144747d5693f2ff8967c8ff21d8ed8a4bc7e861c7fc5aac1aed41153070fa632ff203699f2985dd2ee92ddb7150a3780a23d6a746ebac214a9ce97fc06948606
7
- data.tar.gz: f7163d0ef7c6faed9a10a06306cf21b7da4a9667e147738f57f3c4bbb61feb55f7f1af4f1b4b7a9ebcf55ba03a7f4376e4835a580047fe0ee3a6d31d68693596
6
+ metadata.gz: b78e7fd89e5b63b4fc7471fd71079c0367b7c47a5fad48706577f066911ef39b58b4b3704586e718e97e1fc8602753d6d2d91d7020105a70227c54cdeda9579e
7
+ data.tar.gz: 144fce3a5395dee9847ff2e04b5ddf3ce01ed1d68c856f5f3555fc6c7601ad8ca04872a773ce4378522bf7bdc7e185f868d0b4da8371ec69ba976d2db9c5d8d3
@@ -4,7 +4,8 @@
4
4
  display: none;
5
5
  justify-content: center;
6
6
  align-items: center;
7
- position: absolute;
7
+ position: fixed;
8
+ max-width: 400px;
8
9
  top: 50%;
9
10
  left: 50%;
10
11
  transform: translate(-50%, -50%);
@@ -23,7 +24,7 @@
23
24
  transform: translate(-50%, -50%);
24
25
  }
25
26
  }
26
-
27
+
27
28
  .form-changeInfo input[type="text"],
28
29
  input[type="url"]
29
30
  {
@@ -45,7 +46,8 @@
45
46
  }
46
47
  .form-buttons {
47
48
  display: flex;
48
- justify-content: space-evenly;
49
+ justify-content: center;
50
+ gap: 100px;
49
51
  }
50
52
  .form-submit {
51
53
  margin: 0 20px;
@@ -69,25 +71,26 @@
69
71
  }
70
72
  </style>
71
73
 
74
+ {% include lang.html %}
72
75
  <div id = "InfoForm">
73
76
  <div class = "info">
74
77
  <form target="_self" class="form-changeInfo">
75
78
  <div class="form-avatar">
76
- <label for="avatar">请提供新头像的URL:</label>
77
- <input type="url" name="avatar" placeholder="Optional" id="newAvatar" onblur="formValidate.checkAvatar()"/>
79
+ <label for="avatar">{{ site.data.locales[lang].sidebar.new_avatar }}</label>
80
+ <input type="url" name="avatar" placeholder="{{ site.data.locales[lang].sidebar.optional }}" id="newAvatar" onblur="formValidate.checkAvatar()"/>
78
81
  <span class="validatemsg" id="isAvatarValid"></span>
79
82
  </div>
80
83
  <div class="form-nickname">
81
- <label for="nickname">请输入您的新昵称: </label>
82
- <input type="text" name="nickname" maxlength="15" placeholder="Optional" id="newNickname" onblur="formValidate.checkNickname()"/>
84
+ <label for="nickname">{{ site.data.locales[lang].sidebar.new_nickname }}</label>
85
+ <input type="text" name="nickname" maxlength="15" placeholder="{{ site.data.locales[lang].sidebar.optional }}" id="newNickname" onblur="formValidate.checkNickname()"/>
83
86
  <span class="validatemsg" id="isNicknameValid"></span>
84
87
  </div>
85
88
  <div class="form-buttons">
86
89
  <div class="form-submit">
87
- <input type="button" class="submitChange" value="Submit" onclick="updateUserInfo()"/>
90
+ <input type="button" class="submitChange" value="{{ site.data.locales[lang].sidebar.submit }}" onclick="updateUserInfo()"/>
88
91
  </div>
89
92
  <div class="form-cancel">
90
- <input type="button" class="cancelChange" value="Cancel"/>
93
+ <input type="button" class="cancelChange" value="{{ site.data.locales[lang].sidebar.cancel }}"/>
91
94
  </div>
92
95
  </div>
93
96
  </form>
@@ -120,7 +123,7 @@
120
123
  <!-- home -->
121
124
  <li class="nav-item{% if page.layout == 'home' %}{{ " active" }}{% endif %}">
122
125
  <a href="{{ '/' | relative_url }}" class="nav-link">
123
- <i class="fa-fw fas fa-home"></i>
126
+ <i class="fa-fw fas fa-eye-slash"></i>
124
127
  <span>{{ site.data.locales[include.lang].tabs.home | upcase }}</span>
125
128
  </a>
126
129
  </li>
@@ -190,7 +193,7 @@
190
193
  </a>
191
194
  {% endif %}
192
195
  {% endfor %}
193
- <a href="javascript:void(0);" onclick="AV.User.logOut();setTimeout(function() { window.location.reload(); }, 1000)">
196
+ <a href="javascript:void(0);" onclick="AV.User.logOut();setTimeout(function() { window.location.reload(); }, 1000)" title="{{ site.data.locales[lang].login.logout }}">
194
197
  <i class="fas fa-right-from-bracket" style="color: rgb(181, 27, 27);"></i>
195
198
  </a>
196
199
  </div>
@@ -221,7 +224,7 @@
221
224
  document.getElementById('isAvatarValid').style.color = 'green';
222
225
  return true;
223
226
  } else if (document.getElementById('newAvatar').value.trim() !='') {
224
- document.getElementById('isAvatarValid').innerHTML = '<i class="fa-fw fas fa-xmark"></i>Invalid URL';
227
+ document.getElementById('isAvatarValid').innerHTML = '<i class="fa-fw fas fa-xmark"></i>{{ site.data.locales[lang].sidebar.invalid_url }}';
225
228
  document.getElementById('isAvatarValid').style.color = 'red';
226
229
  } else {
227
230
  document.getElementById('isAvatarValid').innerHTML = '';
@@ -245,7 +248,7 @@
245
248
  currentUser.save().then((user) => {
246
249
  console.log('保存成功!');
247
250
  if (newAvatar != '' || newNickname != '') {
248
- alert("Save Successfully!");
251
+ alert("{{ site.data.locales[lang].sidebar.save_success }}");
249
252
  window.location.reload();
250
253
  }
251
254
  }).catch((error) => {
data/_layouts/login.html CHANGED
@@ -133,17 +133,18 @@ layout: compress
133
133
  </head>
134
134
 
135
135
  <body>
136
+ {% include lang.html %}
136
137
  <div class="shell">
137
- <h2 class="title">Login</h2>
138
- <input type="text" id="username" placeholder="Username">
139
- <input type="password" id="password" placeholder="Password">
140
- <input type="email" id="email" placeholder="Email(MUST)">
141
- <input type="submit" value="Login" id="loginBtn">
138
+ <h2 class="title">{{ site.data.locales[lang].login.login }}</h2>
139
+ <input type="text" id="username" placeholder="{{ site.data.locales[lang].login.username }}">
140
+ <input type="password" id="password" placeholder="{{ site.data.locales[lang].login.password }}">
141
+ <input type="email" id="email" placeholder="{{ site.data.locales[lang].login.email }}">
142
+ <input type="submit" value="{{ site.data.locales[lang].login.login }}" id="loginBtn">
142
143
  <div class="footer">
143
144
  {% if site.Leancloud.allowRegister %}
144
- <button id="signUp">Go to Register</button>
145
+ <button id="signUp">{{ site.data.locales[lang].login.go_to_register }}</button>
145
146
  {% endif %}
146
- <button id="forgotPassword">Forgot Password?</button>
147
+ <button id="forgotPassword">{{ site.data.locales[lang].login.forgot_password }}</button>
147
148
  </div>
148
149
  </div>
149
150
 
@@ -153,22 +154,22 @@ layout: compress
153
154
  var title = document.querySelector('.title');
154
155
  var loginBtn = document.getElementById('loginBtn');
155
156
  var signUpBtn = document.getElementById('signUp');
156
- if (title.innerText == 'Login') {
157
- title.innerText = 'Register';
158
- loginBtn.value = 'Register';
159
- signUpBtn.innerText = 'Go to login';
157
+ if (title.innerText == '{{ site.data.locales[lang].login.login }}') {
158
+ title.innerText = '{{ site.data.locales[lang].login.register }}';
159
+ loginBtn.value = '{{ site.data.locales[lang].login.register }}';
160
+ signUpBtn.innerText = '{{ site.data.locales[lang].login.go_to_login }}';
160
161
  document.getElementById('username').value = '';
161
162
  document.getElementById('password').value = '';
162
- document.getElementById('username').placeholder = 'New User Name';
163
- document.getElementById('password').placeholder = 'New Password';
163
+ document.getElementById('username').placeholder = '{{ site.data.locales[lang].login.new_username }}';
164
+ document.getElementById('password').placeholder = '{{ site.data.locales[lang].login.new_password }}';
164
165
  document.getElementById('password').type = 'password';
165
166
  document.getElementById('email').style.display = 'block';
166
167
  } else {
167
- title.innerText = 'Login';
168
- loginBtn.value = 'Login';
169
- signUpBtn.innerText = 'Go to register';
170
- document.getElementById('username').placeholder = 'Username';
171
- document.getElementById('password').placeholder = 'Password';
168
+ title.innerText = '{{ site.data.locales[lang].login.login }}';
169
+ loginBtn.value = '{{ site.data.locales[lang].login.login }}';
170
+ signUpBtn.innerText = '{{ site.data.locales[lang].login.go_to_register }}';
171
+ document.getElementById('username').placeholder = '{{ site.data.locales[lang].login.username }}';
172
+ document.getElementById('password').placeholder = '{{ site.data.locales[lang].login.password }}';
172
173
  document.getElementById('password').type = 'password';
173
174
  document.getElementById('email').style.display = 'none';
174
175
  }
@@ -202,37 +203,42 @@ layout: compress
202
203
  document.getElementById('loginBtn').addEventListener("click", function () {
203
204
  var username = document.getElementById('username').value.trim();
204
205
  var password = document.getElementById('password').value.trim();
205
- if (document.querySelector('.title').innerText == 'Login') {
206
+ if (document.querySelector('.title').innerText == '{{ site.data.locales[lang].login.login }}') {
206
207
  AV.User.logIn(username, password).then(function (user) {
207
208
  if (user.get("emailVerified")) {
208
209
  /* 登录成功 */
209
- console.log('登录成功');
210
+ console.log('Successfully logged in');
210
211
  console.log(AV.User.emailVerified);
211
212
  /* document.getElementById('username').value = '';
212
213
  document.getElementById('password').value = ''; */
213
214
 
214
215
  let redirectUrl = decodeURIComponent(getUrlParameter('redirect'));
215
216
 
216
- window.location.href = redirectUrl;
217
- /* window.location.href = '{{ site.baseurl }}'; */
217
+ if(redirectUrl!=''){
218
+ window.location.href = redirectUrl;
219
+ }
220
+ else {
221
+ window.location.href = '{{ site.baseurl }}';
222
+ }
223
+
218
224
  } else {
219
- alert('当前用户邮箱未通过验证,暂时无法登录');
225
+ alert('{{ site.data.locales[lang].login.email_not_verified }}');
220
226
  }
221
227
  }).catch(function (error) {
222
228
  /* 登录失败,处理错误信息 */
223
- console.log('登录失败:', error);
224
- alert('登录失败!');
229
+ console.log('Login failed:', error);
230
+ alert('{{ site.data.locales[lang].login.login_fail }}');
225
231
  });
226
232
  } else {
227
233
  var email = document.getElementById('email').value;
228
234
  if (!validateEmail(email)) {
229
- alert('请输入有效的电子邮件地址!');
235
+ alert('{{ site.data.locales[lang].login.enter_vaild_email }}');
230
236
  return;
231
237
  } else if (username == '') {
232
- alert('请输入用户名');
238
+ alert('{{ site.data.locales[lang].login.enter_username }}');
233
239
  return;
234
240
  } else if (password == '') {
235
- alert('请输入密码');
241
+ alert('{{ site.data.locales[lang].login.enter_password }}');
236
242
  return;
237
243
  } else {
238
244
  const user = new AV.User();
@@ -243,13 +249,13 @@ layout: compress
243
249
 
244
250
  user.signUp().then(function (user) {
245
251
  /* 注册成功 */
246
- alert('注册成功,等待验证邮箱。邮件已发送!');
252
+ alert('{{ site.data.locales[lang].login.waiting_for_verification }}');
247
253
  console.log('注册成功,等待验证邮箱');
248
254
  window.location.reload();
249
255
  }).catch(function (error) {
250
256
  /* 注册失败,处理错误信息 */
251
257
  console.log('注册失败:', error);
252
- alert('注册失败!');
258
+ alert('{{ site.data.locales[lang].login.register_fail }}');
253
259
  });
254
260
  }
255
261
  };
data/assets/.DS_Store CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,132 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="512.000000pt" height="512.000000pt" viewBox="0 0 512.000000 512.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <metadata>
8
+ Created by potrace 1.14, written by Peter Selinger 2001-2017
9
+ </metadata>
10
+ <g transform="translate(0.000000,512.000000) scale(0.100000,-0.100000)"
11
+ fill="#000000" stroke="none">
12
+ <path d="M3261 4509 c-96 -49 -143 -59 -239 -48 -154 17 -391 -20 -509 -79
13
+ -184 -93 -332 -222 -393 -342 -26 -51 -50 -132 -50 -172 0 -19 -6 -29 -22 -33
14
+ -82 -25 -153 -104 -183 -201 -41 -134 -50 -239 -48 -549 2 -319 15 -551 32
15
+ -568 8 -8 11 -3 11 17 0 15 5 36 10 46 6 10 17 70 26 132 8 62 18 120 21 128
16
+ 3 8 6 29 7 45 5 61 38 161 64 187 35 38 66 46 226 57 119 8 142 13 160 30 16
17
+ 17 18 23 8 33 -10 10 -44 9 -162 -4 -153 -18 -177 -24 -218 -62 l-24 -21 7 40
18
+ c10 62 26 146 35 190 19 87 22 101 26 133 7 56 62 147 126 208 l59 57 69 -6
19
+ c80 -7 133 -31 197 -90 41 -38 136 -155 147 -181 7 -16 24 12 37 59 7 25 9 73
20
+ 5 128 -7 96 -7 96 54 74 83 -30 136 -75 197 -167 55 -82 137 -265 127 -282 -3
21
+ -4 -19 -8 -36 -8 -42 0 -159 -20 -180 -31 -11 -6 -15 -16 -11 -25 5 -15 20
22
+ -16 119 -10 63 4 119 4 125 0 7 -4 53 -7 103 -8 80 -1 97 -5 144 -31 29 -16
23
+ 64 -39 77 -51 13 -12 32 -25 42 -27 16 -4 15 -6 -4 -12 -28 -9 -20 -30 17 -45
24
+ 27 -11 33 -9 80 25 29 21 63 56 77 79 14 23 32 46 40 53 9 7 19 27 23 45 6 29
25
+ 8 26 15 -35 5 -42 2 -117 -7 -203 l-14 -136 39 5 c30 4 37 2 33 -8 -3 -10 0
26
+ -12 11 -8 12 5 14 0 9 -23 -26 -133 -48 -320 -41 -345 4 -11 21 -27 38 -36 25
27
+ -13 28 -18 15 -21 -10 -2 -18 -8 -18 -13 0 -6 5 -7 11 -3 8 4 9 -1 4 -15 -5
28
+ -16 -1 -27 12 -36 27 -21 31 -19 40 23 l8 37 5 -55 5 -55 17 25 c10 14 29 68
29
+ 42 120 42 158 48 173 89 193 43 22 83 16 116 -15 12 -11 24 -18 27 -15 12 11
30
+ 36 172 49 327 4 41 15 104 25 140 34 124 41 166 41 253 1 166 -40 299 -148
31
+ 485 -32 53 -71 123 -88 154 -53 100 -96 172 -129 213 -17 22 -45 60 -61 84
32
+ -33 49 -192 201 -210 201 -7 0 -19 7 -26 16 -12 15 -44 31 -62 32 -4 0 -18 7
33
+ -31 15 -22 15 -51 20 -89 18 -15 -1 -17 -7 -11 -50 5 -38 2 -56 -12 -80 -10
34
+ -17 -22 -31 -26 -31 -4 0 -8 36 -8 79 0 44 -3 81 -7 83 -5 2 -41 -13 -82 -33z
35
+ m24 -827 c61 -31 106 -68 122 -99 21 -41 33 -189 26 -330 -3 -68 -8 -123 -11
36
+ -123 -2 0 -21 13 -42 30 -49 39 -134 78 -187 86 -59 9 -66 21 -49 80 15 50 36
37
+ 253 36 342 l0 50 33 -7 c17 -5 50 -17 72 -29z"/>
38
+ <path d="M1412 3110 c-3 -53 -13 -80 -28 -80 -8 0 -14 -2 -14 -4 0 -2 -11 -29
39
+ -25 -59 -18 -41 -20 -55 -10 -51 8 3 20 21 27 40 6 19 15 34 20 34 18 0 39 63
40
+ 35 108 -3 38 -4 40 -5 12z"/>
41
+ <path d="M1333 2855 c0 -22 2 -30 4 -17 2 12 2 30 0 40 -3 9 -5 -1 -4 -23z"/>
42
+ <path d="M2043 2875 c-59 -16 -125 -49 -123 -62 1 -4 10 -11 22 -16 14 -5 28
43
+ 0 49 18 28 23 94 43 105 32 3 -3 0 -15 -6 -27 -6 -11 -10 -37 -8 -58 3 -35 5
44
+ -37 48 -45 25 -4 87 -6 139 -4 78 4 97 8 108 23 14 18 15 18 28 1 12 -17 14
45
+ -15 25 18 7 20 9 48 5 63 l-7 27 -10 -30 c-5 -16 -12 -36 -14 -44 -3 -9 -16
46
+ -4 -47 21 -66 53 -92 67 -154 83 -69 18 -92 18 -160 0z m172 -44 c0 -8 -8 -19
47
+ -17 -25 -22 -13 -51 2 -56 28 -3 14 3 17 35 14 24 -2 38 -8 38 -17z"/>
48
+ <path d="M2980 2829 c-90 -14 -160 -61 -160 -107 l0 -26 33 31 c44 42 148 85
49
+ 118 49 -7 -8 -11 -36 -9 -63 l3 -48 55 -3 c51 -2 162 9 238 24 27 5 32 11 32
50
+ 35 l0 28 35 -15 c59 -24 39 4 -25 36 -100 50 -226 74 -320 59z m118 -51 c-4
51
+ -31 -52 -38 -67 -10 -13 25 -5 32 36 32 30 0 34 -3 31 -22z"/>
52
+ <path d="M1335 2790 c3 -5 8 -10 11 -10 2 0 4 5 4 10 0 6 -5 10 -11 10 -5 0
53
+ -7 -4 -4 -10z"/>
54
+ <path d="M495 2673 c-61 -5 -107 -38 -133 -93 -14 -32 -30 -46 -80 -70 -75
55
+ -38 -163 -131 -187 -199 -32 -88 -40 -161 -32 -271 11 -143 10 -137 1 -210
56
+ -14 -101 -2 -177 40 -266 78 -165 183 -253 421 -355 49 -20 204 -63 360 -100
57
+ 251 -58 408 -121 470 -190 66 -73 113 -201 154 -414 17 -91 41 -364 41 -477
58
+ l0 -28 510 0 c281 0 510 4 510 8 0 5 -11 14 -25 20 -14 6 -32 27 -41 46 -16
59
+ 32 -15 41 4 147 11 63 23 133 27 157 6 36 10 42 31 42 13 0 24 4 24 9 0 46
60
+ -24 226 -35 264 -13 44 -13 51 3 75 17 26 17 26 20 4 2 -13 -1 -29 -6 -35 -7
61
+ -8 -4 -38 9 -92 10 -44 19 -92 19 -107 0 -15 5 -30 10 -33 13 -8 13 -14 -10
62
+ 105 -12 56 -19 107 -17 114 2 6 10 -16 16 -49 26 -125 41 -166 58 -156 14 7
63
+ 51 100 84 210 9 29 13 32 25 20 12 -12 7 -33 -31 -144 -25 -71 -45 -139 -45
64
+ -150 0 -26 -18 -45 -43 -45 -12 0 -17 6 -15 18 2 9 11 16 20 16 9 -1 19 5 22
65
+ 12 3 8 0 14 -7 14 -23 -1 -52 -31 -52 -54 -1 -20 4 -23 27 -21 16 1 31 5 35 8
66
+ 3 4 13 2 23 -3 16 -9 16 -19 -6 -166 -18 -122 -28 -162 -44 -179 -24 -26 -27
67
+ -43 -4 -24 15 12 16 11 10 -9 l-7 -22 152 0 152 0 -7 73 c-3 39 -9 166 -12
68
+ 282 -5 178 -3 235 15 373 11 90 23 167 26 173 8 12 35 12 35 -1 0 -5 -5 -10
69
+ -10 -10 -6 0 -9 -12 -8 -28 2 -15 -3 -88 -11 -162 -14 -132 -12 -362 6 -607
70
+ l6 -93 717 0 c565 0 719 3 722 12 4 12 -4 80 -32 273 -25 176 -115 504 -151
71
+ 548 -10 14 -19 32 -19 39 0 46 -128 177 -229 235 -25 15 -47 27 -49 28 -1 2 3
72
+ 14 9 28 18 39 -2 77 -72 137 -33 29 -66 66 -73 84 -21 50 -82 105 -151 138
73
+ -57 26 -317 88 -372 88 -24 0 -93 37 -93 50 0 13 51 46 91 59 20 6 61 26 91
74
+ 45 30 18 61 36 69 39 28 14 142 92 217 150 80 61 125 81 174 74 46 -6 47 -2 9
75
+ 17 -16 9 -46 31 -66 50 -34 33 -36 37 -26 70 6 24 6 48 0 71 -6 19 -8 39 -5
76
+ 43 3 5 -2 9 -11 9 -20 0 -53 -27 -53 -43 0 -10 -52 -36 -126 -64 -18 -6 -64
77
+ -45 -104 -86 -39 -41 -106 -97 -148 -126 -42 -28 -79 -54 -82 -57 -39 -46
78
+ -226 -164 -365 -231 -84 -41 -96 -44 -190 -48 -201 -8 -431 69 -525 176 -50
79
+ 57 -176 245 -215 322 -34 68 -74 193 -76 240 l-2 35 -6 -40 c-8 -51 4 -155 25
80
+ -220 38 -120 136 -280 245 -398 59 -65 60 -66 37 -78 -13 -7 -26 -17 -30 -22
81
+ -4 -7 -21 -6 -50 2 -23 6 -59 13 -78 15 -19 2 -62 13 -95 24 -33 11 -85 23
82
+ -115 27 -85 10 -207 35 -295 60 -169 49 -332 97 -390 115 -33 10 -78 21 -100
83
+ 25 -50 8 -64 20 -58 45 6 23 12 24 48 10 14 -5 37 -12 51 -14 14 -3 47 -12 72
84
+ -19 26 -8 99 -29 162 -46 63 -17 138 -39 166 -47 28 -9 59 -14 70 -12 13 3 4
85
+ 9 -26 17 -25 6 -61 18 -80 26 -19 7 -57 19 -85 25 -27 7 -86 25 -130 40 -44
86
+ 16 -111 38 -150 50 -38 12 -79 26 -90 30 -11 5 -31 12 -45 16 -49 13 -179 82
87
+ -222 117 -25 20 -66 64 -93 97 -26 33 -54 60 -61 60 -20 0 -44 41 -45 80 -1
88
+ 19 -3 27 -6 18 -4 -18 -23 -25 -23 -10 0 5 7 31 17 58 17 52 55 113 105 170
89
+ 17 19 29 37 26 39 -8 8 -62 12 -113 8z m2715 -1293 c-1 -14 -64 -102 -206
90
+ -287 -73 -94 -180 -202 -212 -214 -26 -10 -216 7 -243 22 -29 15 -85 126 -118
91
+ 234 -41 130 -40 135 7 136 128 3 379 43 497 79 148 45 181 53 218 54 20 0 37
92
+ 5 37 11 0 5 5 3 10 -5 5 -8 10 -22 10 -30z m-905 -371 c10 -30 0 -33 -13 -4
93
+ -6 14 -7 25 -2 25 5 0 12 -9 15 -21z m6 -296 c-2 -256 -13 -398 -36 -475 -8
94
+ -27 -17 -83 -21 -124 -4 -41 -10 -77 -15 -79 -9 -6 -3 260 11 507 6 91 10 233
95
+ 10 314 l0 149 26 -27 27 -26 -2 -239z"/>
96
+ <path d="M1451 2590 c-13 -11 -29 -20 -37 -20 -19 0 -18 -6 15 -53 15 -23 27
97
+ -52 26 -64 -2 -34 -89 -93 -137 -93 -21 0 -20 -3 15 -33 34 -28 37 -35 29 -57
98
+ -5 -14 -33 -41 -61 -60 -28 -19 -60 -49 -70 -66 l-19 -32 88 -27 c95 -29 106
99
+ -27 146 17 32 35 36 83 8 113 -12 14 -19 27 -14 30 4 2 13 -2 20 -10 7 -8 22
100
+ -15 34 -15 27 0 84 54 92 86 7 28 -4 97 -14 90 -4 -2 -19 4 -32 15 -23 19 -23
101
+ 20 -4 14 37 -10 82 40 86 95 2 32 -1 45 -10 45 -8 0 -19 8 -26 18 -16 21 -26
102
+ 22 -26 2 0 -14 -3 -14 -22 -1 -40 25 -62 26 -87 6z"/>
103
+ <path d="M2379 2533 l-24 -28 28 24 c25 23 32 31 24 31 -2 0 -14 -12 -28 -27z"/>
104
+ <path d="M3991 2511 c-40 -27 -59 -49 -72 -82 -21 -51 -25 -86 -7 -54 21 37
105
+ 83 93 126 114 28 14 42 28 42 41 0 30 -28 24 -89 -19z"/>
106
+ <path d="M2336 2458 c-9 -43 6 -97 34 -123 12 -11 42 -19 82 -22 54 -4 67 -2
107
+ 91 17 34 27 60 77 52 98 -6 16 -7 16 -19 0 -22 -30 -85 -50 -132 -43 -56 8
108
+ -92 37 -96 78 l-4 32 -8 -37z"/>
109
+ <path d="M2110 2233 c0 -5 16 -30 36 -55 54 -71 150 -117 267 -129 87 -9 190
110
+ -6 267 8 38 7 50 6 -230 33 -146 14 -161 17 -140 30 22 14 473 13 504 -2 24
111
+ -10 24 -12 8 -25 -10 -8 5 -5 38 7 30 11 66 31 80 45 l25 26 -80 -8 c-44 -4
112
+ -172 -8 -285 -8 -181 0 -213 2 -275 21 -38 12 -94 24 -124 28 -30 3 -62 13
113
+ -72 22 -11 10 -19 13 -19 7z"/>
114
+ <path d="M2960 2202 c0 -5 9 -17 20 -27 19 -18 20 -17 20 2 0 12 -7 24 -16 27
115
+ -21 8 -24 8 -24 -2z"/>
116
+ <path d="M2148 2105 c23 -43 147 -135 181 -135 9 0 -7 13 -34 29 -28 16 -75
117
+ 51 -104 77 -30 27 -49 40 -43 29z"/>
118
+ <path d="M1609 1843 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z"/>
119
+ <path d="M2564 368 c3 -13 6 -33 6 -44 0 -17 8 -23 38 -28 32 -5 40 -2 60 20
120
+ 12 14 22 30 22 37 0 6 -7 1 -16 -11 -10 -15 -25 -22 -49 -22 -28 0 -32 3 -28
121
+ 20 6 21 -12 50 -29 50 -6 0 -8 -10 -4 -22z"/>
122
+ <path d="M2620 363 c0 -13 3 -14 11 -6 6 6 18 9 27 6 10 -4 13 -2 8 5 -11 18
123
+ -46 14 -46 -5z"/>
124
+ <path d="M2562 203 c1 -5 -6 -20 -16 -35 -21 -32 -15 -92 9 -102 12 -4 15 3
125
+ 16 32 2 69 13 97 34 94 11 -2 23 -9 27 -15 5 -8 8 -6 8 4 0 9 -7 20 -16 23
126
+ -22 8 -64 7 -62 -1z"/>
127
+ <path d="M2598 160 c-4 -14 -8 -34 -8 -45 1 -19 1 -19 11 -2 6 10 9 30 7 45
128
+ l-3 27 -7 -25z"/>
129
+ <path d="M2595 80 c-10 -11 -13 -20 -8 -20 13 0 38 29 31 35 -3 3 -13 -4 -23
130
+ -15z"/>
131
+ </g>
132
+ </svg>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-chirpy-customized-upe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jo Cruise
@@ -199,6 +199,7 @@ files:
199
199
  - assets/404.html
200
200
  - assets/css/jekyll-theme-chirpy-customized-upe.scss
201
201
  - assets/feed.xml
202
+ - assets/img/favicons/.DS_Store
202
203
  - assets/img/favicons/android-chrome-192x192.png
203
204
  - assets/img/favicons/android-chrome-512x512.png
204
205
  - assets/img/favicons/apple-touch-icon.png
@@ -207,6 +208,7 @@ files:
207
208
  - assets/img/favicons/favicon-32x32.png
208
209
  - assets/img/favicons/favicon.ico
209
210
  - assets/img/favicons/mstile-150x150.png
211
+ - assets/img/favicons/safari-pinned-tab.svg
210
212
  - assets/img/favicons/site.webmanifest
211
213
  - assets/js/data/search.json
212
214
  - assets/js/data/swconf.js