jekyll-theme-neysa 0.1.2 → 0.1.4
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/_includes/head-custom.html +1 -3
- data/_includes/mathjax.html +13 -0
- data/_layouts/.DS_Store +0 -0
- data/_layouts/default.html +2 -14
- data/_layouts/project.html +33 -0
- data/_sass/.DS_Store +0 -0
- data/_sass/jekyll-theme-neysa.scss +18 -16
- data/assets/.DS_Store +0 -0
- metadata +9 -7
- data/assets/images/blacktocat.png +0 -0
- data/assets/images/icon_download.png +0 -0
- data/assets/images/sprite_download.png +0 -0
- /data/_includes/{head-custom-google-analytics.html → google-analytics.html} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 61c86bf67ebc21fafff703e0aaee90e2a46f5a65d6f4381f57cf3710d2c89e52
|
4
|
+
data.tar.gz: afa924d19fe5342956b72cf88c55a9b4c045f34fa8178cb61e871ea2768b1fa3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e183e1ca2d425a06f74ef4587e48437763324812595bd47830267bd8bf609b169c4498c66291fee45a42dc991a432fa2e45867944297350790fbe0b8ff985201
|
7
|
+
data.tar.gz: fc9d5a0ad7d2d6b49c3868887b9079aafb2ed0471ef2756e6f04b167429f545569fd7eb506dbe9f32df1c597882757cc20e53b2380969923ea2d27e144731d5f
|
data/_includes/head-custom.html
CHANGED
@@ -1,10 +1,8 @@
|
|
1
1
|
<!-- start custom head snippets, customize with your own _includes/head-custom.html file -->
|
2
2
|
|
3
|
-
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|
4
|
-
<script id="MathJax-script” async src=”https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
|
5
3
|
|
6
4
|
<!-- Setup Google Analytics -->
|
7
|
-
{% include
|
5
|
+
{% include google-analytics.html %}
|
8
6
|
|
9
7
|
<!-- You can set your favicon here -->
|
10
8
|
<!-- link rel="shortcut icon" type="image/x-icon" href="{{ '/favicon.ico' | relative_url }}" -->
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<script type="text/x-mathjax-config">
|
2
|
+
MathJax.Hub.Config({
|
3
|
+
extensions: ["tex2jax.js"],
|
4
|
+
jax: ["input/TeX", "output/HTML-CSS"],
|
5
|
+
tex2jax: {
|
6
|
+
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
|
7
|
+
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
|
8
|
+
processEscapes: true
|
9
|
+
},
|
10
|
+
"HTML-CSS": { availableFonts: ["TeX"] }
|
11
|
+
});</script>
|
12
|
+
<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
|
13
|
+
<script type="text/x-mathjax-config"> MathJax.Hub.Config({ TeX: { equationNumbers: { autoNumber: "AMS" } } }); </script>
|
data/_layouts/.DS_Store
ADDED
Binary file
|
data/_layouts/default.html
CHANGED
@@ -11,20 +11,6 @@
|
|
11
11
|
</head>
|
12
12
|
|
13
13
|
<body>
|
14
|
-
|
15
|
-
<!-- HEADER -->
|
16
|
-
<div id="header_wrap" class="outer">
|
17
|
-
<header class="inner">
|
18
|
-
{% if site.github.is_project_page %}
|
19
|
-
<a id="forkme_banner" href="{{ site.github.repository_url }}">View on GitHub</a>
|
20
|
-
{% endif %}
|
21
|
-
|
22
|
-
<h1 id="project_title">{{ site.title | default: site.github.repository_name }}</h1>
|
23
|
-
<h2 id="project_tagline">{{ site.description | default: site.github.project_tagline }}</h2>
|
24
|
-
|
25
|
-
</header>
|
26
|
-
</div>
|
27
|
-
|
28
14
|
<!-- MAIN CONTENT -->
|
29
15
|
<div id="main_content_wrap" class="outer">
|
30
16
|
<section id="main_content" class="inner">
|
@@ -42,4 +28,6 @@
|
|
42
28
|
</footer>
|
43
29
|
</div>
|
44
30
|
</body>
|
31
|
+
|
32
|
+
{% include mathjax.html %} <!--Need to be after the contents-->
|
45
33
|
</html>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="{{ site.lang | default: "en-US" }}">
|
3
|
+
|
4
|
+
<head>
|
5
|
+
<meta charset='utf-8'>
|
6
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
7
|
+
<meta name="viewport" content="width=device-width,maximum-scale=2">
|
8
|
+
<link rel="stylesheet" type="text/css" media="screen" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
|
9
|
+
|
10
|
+
{% include head-custom.html %}
|
11
|
+
</head>
|
12
|
+
|
13
|
+
<body>
|
14
|
+
<!-- MAIN CONTENT -->
|
15
|
+
<div id="main_content_wrap" class="outer">
|
16
|
+
<section id="main_content" class="inner">
|
17
|
+
{{ content }}
|
18
|
+
</section>
|
19
|
+
</div>
|
20
|
+
|
21
|
+
<!-- FOOTER -->
|
22
|
+
<div id="footer_wrap" class="outer">
|
23
|
+
<footer class="inner">
|
24
|
+
{% if site.github.is_project_page %}
|
25
|
+
<p class="copyright">{{ site.title | default: site.github.repository_name }} maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
|
26
|
+
{% endif %}
|
27
|
+
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
|
28
|
+
</footer>
|
29
|
+
</div>
|
30
|
+
</body>
|
31
|
+
|
32
|
+
{% include mathjax.html %} <!--Need to be after the contents-->
|
33
|
+
</html>
|
data/_sass/.DS_Store
ADDED
Binary file
|
@@ -34,12 +34,6 @@ ol, ul {
|
|
34
34
|
list-style: none;
|
35
35
|
}
|
36
36
|
|
37
|
-
table {
|
38
|
-
border-collapse: collapse;
|
39
|
-
border-spacing: 0;
|
40
|
-
margin-left: auto;
|
41
|
-
margin-right: auto;
|
42
|
-
}
|
43
37
|
|
44
38
|
|
45
39
|
|
@@ -72,7 +66,7 @@ h1 {
|
|
72
66
|
}
|
73
67
|
|
74
68
|
h2 {
|
75
|
-
padding-bottom:
|
69
|
+
padding-bottom: 15px;
|
76
70
|
font-size: 28px;
|
77
71
|
background: url('../images/bg_hr.png') repeat-x bottom;
|
78
72
|
}
|
@@ -100,6 +94,7 @@ p {
|
|
100
94
|
footer p {
|
101
95
|
color: #f2f2f2;
|
102
96
|
margin: 0px;
|
97
|
+
text-align: center;
|
103
98
|
}
|
104
99
|
|
105
100
|
a {
|
@@ -234,8 +229,14 @@ hr {
|
|
234
229
|
background: url('../images/bg_hr.png') repeat-x center;
|
235
230
|
}
|
236
231
|
|
232
|
+
|
233
|
+
|
237
234
|
table {
|
238
|
-
border:
|
235
|
+
border-collapse: collapse;
|
236
|
+
border-spacing: 0;
|
237
|
+
margin-left: auto;
|
238
|
+
margin-right: auto;
|
239
|
+
border: 1px solid #cdcaca6b;
|
239
240
|
margin-bottom: 20px;
|
240
241
|
text-align: left;
|
241
242
|
}
|
@@ -243,12 +244,12 @@ table {
|
|
243
244
|
th {
|
244
245
|
font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
245
246
|
padding: 10px;
|
246
|
-
|
247
|
+
border: 1px solid #cdcaca6b;
|
247
248
|
}
|
248
249
|
|
249
250
|
td {
|
250
251
|
padding: 10px;
|
251
|
-
border: 1px solid #
|
252
|
+
border: 1px solid #cdcaca6b;
|
252
253
|
}
|
253
254
|
|
254
255
|
form {
|
@@ -293,7 +294,7 @@ Full-Width Styles
|
|
293
294
|
z-index: 10;
|
294
295
|
padding: 10px 50px 10px 10px;
|
295
296
|
color: #fff;
|
296
|
-
background: url('../images/blacktocat.png') #0090ff no-repeat 95% 50%;
|
297
|
+
// background: url('../images/blacktocat.png') #0090ff no-repeat 95% 50%;
|
297
298
|
font-weight: 700;
|
298
299
|
box-shadow: 0 0 10px rgba(0,0,0,.5);
|
299
300
|
border-bottom-left-radius: 2px;
|
@@ -336,7 +337,7 @@ Full-Width Styles
|
|
336
337
|
bottom: -40px;
|
337
338
|
right: 0;
|
338
339
|
height: 70px;
|
339
|
-
background: url('../images/icon_download.png') no-repeat 0% 90%;
|
340
|
+
// background: url('../images/icon_download.png') no-repeat 0% 90%;
|
340
341
|
}
|
341
342
|
|
342
343
|
.zip_download_link {
|
@@ -346,7 +347,7 @@ Full-Width Styles
|
|
346
347
|
height:70px;
|
347
348
|
text-indent: -5000px;
|
348
349
|
overflow: hidden;
|
349
|
-
background: url(../images/sprite_download.png) no-repeat bottom left;
|
350
|
+
// background: url(../images/sprite_download.png) no-repeat bottom left;
|
350
351
|
}
|
351
352
|
|
352
353
|
.tar_download_link {
|
@@ -356,16 +357,16 @@ Full-Width Styles
|
|
356
357
|
height:70px;
|
357
358
|
text-indent: -5000px;
|
358
359
|
overflow: hidden;
|
359
|
-
background: url(../images/sprite_download.png) no-repeat bottom right;
|
360
|
+
// background: url(../images/sprite_download.png) no-repeat bottom right;
|
360
361
|
margin-left: 10px;
|
361
362
|
}
|
362
363
|
|
363
364
|
.zip_download_link:hover {
|
364
|
-
background: url(../images/sprite_download.png) no-repeat top left;
|
365
|
+
// background: url(../images/sprite_download.png) no-repeat top left;
|
365
366
|
}
|
366
367
|
|
367
368
|
.tar_download_link:hover {
|
368
|
-
background: url(../images/sprite_download.png) no-repeat top right;
|
369
|
+
// background: url(../images/sprite_download.png) no-repeat top right;
|
369
370
|
}
|
370
371
|
|
371
372
|
#main_content_wrap {
|
@@ -380,6 +381,7 @@ Full-Width Styles
|
|
380
381
|
|
381
382
|
#footer_wrap {
|
382
383
|
background: #212121;
|
384
|
+
font-size: 11px;
|
383
385
|
}
|
384
386
|
|
385
387
|
|
data/assets/.DS_Store
ADDED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-neysa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Neysa Chen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-02-
|
11
|
+
date: 2023-02-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -34,18 +34,20 @@ files:
|
|
34
34
|
- LICENSE.txt
|
35
35
|
- README.md
|
36
36
|
- _config.yml
|
37
|
-
- _includes/
|
37
|
+
- _includes/google-analytics.html
|
38
38
|
- _includes/head-custom.html
|
39
|
+
- _includes/mathjax.html
|
40
|
+
- _layouts/.DS_Store
|
39
41
|
- _layouts/default.html
|
42
|
+
- _layouts/project.html
|
43
|
+
- _sass/.DS_Store
|
40
44
|
- _sass/jekyll-theme-neysa.scss
|
41
45
|
- _sass/neysa.scss
|
42
46
|
- _sass/rouge.scss
|
47
|
+
- assets/.DS_Store
|
43
48
|
- assets/css/style.scss
|
44
49
|
- assets/images/bg_hr.png
|
45
|
-
- assets/images/blacktocat.png
|
46
50
|
- assets/images/favicon.ico
|
47
|
-
- assets/images/icon_download.png
|
48
|
-
- assets/images/sprite_download.png
|
49
51
|
- assets/js/toc.js
|
50
52
|
homepage: http://ni-chen.github.io
|
51
53
|
licenses:
|
@@ -66,7 +68,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
68
|
- !ruby/object:Gem::Version
|
67
69
|
version: '0'
|
68
70
|
requirements: []
|
69
|
-
rubygems_version: 3.
|
71
|
+
rubygems_version: 3.4.7
|
70
72
|
signing_key:
|
71
73
|
specification_version: 4
|
72
74
|
summary: Neysa's Github theme.
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|