jekyll-theme-neysa 0.1.1 → 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/_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 +9 -7
- data/assets/.DS_Store +0 -0
- metadata +10 -8
- 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: 23f1234d5b4b119c3848a3077c9500e32230cc3513c28835eefbd9e127632013
|
4
|
+
data.tar.gz: c988e1177d5e4c055d5de03a6a5a66bfd8519618591252470ac6c2600c7bfe77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 573c3027ee9d5894c766c4cbe630d57860c812e6be953fcfce934bceb88497cd9713ea6a2bd9d57ee549273efe84426d1e2818a96826d0fe6a04c03cd20ec9d8
|
7
|
+
data.tar.gz: 5600a409ed7ddc522cfdee2335bb36ff80f3bb23928bf829e7e338fd5489b908920f6d7b335ffdc1b01eacca3ce2cc75d5d2877fe86cc6bcf7d15ef94a73e9e6
|
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
|
@@ -72,7 +72,7 @@ h1 {
|
|
72
72
|
}
|
73
73
|
|
74
74
|
h2 {
|
75
|
-
padding-bottom:
|
75
|
+
padding-bottom: 15px;
|
76
76
|
font-size: 28px;
|
77
77
|
background: url('../images/bg_hr.png') repeat-x bottom;
|
78
78
|
}
|
@@ -100,6 +100,7 @@ p {
|
|
100
100
|
footer p {
|
101
101
|
color: #f2f2f2;
|
102
102
|
margin: 0px;
|
103
|
+
text-align: center;
|
103
104
|
}
|
104
105
|
|
105
106
|
a {
|
@@ -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.3
|
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,8 +68,8 @@ 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
|
-
summary: Neysa's Github theme
|
74
|
+
summary: Neysa's Github theme.
|
73
75
|
test_files: []
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|