aurora-theme 1.0.18.142.1 → 1.0.18.144
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/README.md +8 -0
- data/_layouts/default.html +12 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df4e3d7111b06ccfb3bb222080537bd3f4f3f01210628b52214e4d987403662d
|
|
4
|
+
data.tar.gz: 2a8ed6ea9b0bcee7bbf2422641de3d7d066d5ea5f374b42ba328e21e50b1786c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e438441400fdeefa1fe2de7fa4270328a70175b1fe41f7b0025e3dbb3a70f9b1c9a44e4f92daf16da97160431a49aab8378f264841f1addbf67e14abb35d41a
|
|
7
|
+
data.tar.gz: 544d8223a076373220786163bbe31e001752cbdd313a03c61d8f01e6c4dfd646f8758ac352b6182bc84f7a1abd7e45c9370bb854be5c157c99f0199bd9c27095
|
data/README.md
CHANGED
|
@@ -131,6 +131,14 @@ features:
|
|
|
131
131
|
some_feature: true
|
|
132
132
|
```
|
|
133
133
|
|
|
134
|
+
Some features are enabled on a per-page basis, so you will need to specify them in the [front matter](https://jekyllrb.com/docs/frontmatter):
|
|
135
|
+
|
|
136
|
+
```yml
|
|
137
|
+
---
|
|
138
|
+
some_feature: true
|
|
139
|
+
---
|
|
140
|
+
```
|
|
141
|
+
|
|
134
142
|
A list of optional features can be found at the [features page](https://ibug.github.io/aurora-theme/features). You can also preview all the features there.
|
|
135
143
|
|
|
136
144
|
## Roadmap
|
data/_layouts/default.html
CHANGED
|
@@ -7,13 +7,23 @@
|
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
8
|
<meta name="theme-color" content="#781578">
|
|
9
9
|
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
|
|
10
|
+
{% if page.mathjax %}
|
|
11
|
+
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=TeX-AMS-MML_HTMLorMML" ></script>
|
|
12
|
+
<script type="text/x-mathjax-config">
|
|
13
|
+
MathJax.Hub.Config({
|
|
14
|
+
jax: ["input/TeX","output/HTML-CSS"],
|
|
15
|
+
displayAlign: "left",
|
|
16
|
+
displayIndent: "20px"
|
|
17
|
+
});
|
|
18
|
+
</script>
|
|
19
|
+
{% endif %}
|
|
10
20
|
</head>
|
|
11
21
|
<body>
|
|
12
22
|
<section class="page-header">
|
|
13
23
|
<h1 class="project-name">{{ page.title | default: site.title | default: site.github.repository_name }}</h1>
|
|
14
24
|
<h2 class="project-tagline">{{ page.tagline | default: site.description | default: site.github.project_tagline | newline_to_br }}</h2>
|
|
15
25
|
{% if site.github.is_project_page %}
|
|
16
|
-
|
|
26
|
+
<span class="line-container"><a href="{{ site.github.repository_url }}" class="btn">View on GitHub</a></span>
|
|
17
27
|
{% endif %}
|
|
18
28
|
{% if site.show_downloads %}
|
|
19
29
|
<span class="line-container">
|
|
@@ -35,7 +45,7 @@
|
|
|
35
45
|
</section>
|
|
36
46
|
|
|
37
47
|
{% if site.features.love %}
|
|
38
|
-
|
|
48
|
+
<script type="text/javascript" src="{{ "/assets/js/love.js" | relative_url }}"></script>
|
|
39
49
|
{% endif %}
|
|
40
50
|
{% if site.google_analytics %}
|
|
41
51
|
<script>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aurora-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.18.
|
|
4
|
+
version: 1.0.18.144
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- iBug
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-05-
|
|
11
|
+
date: 2018-05-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|