academic 0.1.1 → 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 +4 -4
- data/README.md +4 -2
- data/_includes/footer.html +6 -3
- metadata +2 -4
- data/assets/archive.jpg +0 -0
- data/assets/code.jpg +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 54422913c366745c13667b87aee03f3eb04b2848
|
|
4
|
+
data.tar.gz: f61db886168da78235be063031c97e79ab9871f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 107c1f5ef34ba1f8a34f2703f3fb35838097bf8666fc05b8bbb99831e43f1892402eb01519f979d74c95746ea12e3e48b0b75a960ad01ced61a42982a7d50bb2
|
|
7
|
+
data.tar.gz: 74f5a69885cddb6c0f4570a12212bd27c4ef649a85c218ccdc5e4748adf164de2d05d87ae437a7ba778d49903652e5456da4262a40ac2192afd2ed40303b9ca6
|
data/README.md
CHANGED
|
@@ -124,6 +124,8 @@ title_html: "<b>hello</b>world"
|
|
|
124
124
|
|
|
125
125
|
`archive_permalink`: [optional] permalink of the archive page. Set to `"/archive"` by default.
|
|
126
126
|
|
|
127
|
+
`repo`: [optional] link to your website repo. If defined, it's added in the footer. Nothing is displayed otherwise.
|
|
128
|
+
|
|
127
129
|
#### Author
|
|
128
130
|
|
|
129
131
|
`email`: [optional] add email address in about layout.
|
|
@@ -204,10 +206,10 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/gaalca
|
|
|
204
206
|
|
|
205
207
|
## Release log
|
|
206
208
|
|
|
207
|
-
+ 0.1.
|
|
209
|
+
+ 0.1.2 [2016-12]: bug fixes (footer, assets and gemfile cleaning) + `repo` var
|
|
210
|
+
+ 0.1.1 [2016-12]: bug fixes (404 page layout, footer, posts list)
|
|
208
211
|
+ 0.1.0 [2016-12]: first release of the theme.
|
|
209
212
|
|
|
210
213
|
## License
|
|
211
214
|
|
|
212
215
|
The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
213
|
-
|
data/_includes/footer.html
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
<div class="wrapper">
|
|
4
4
|
|
|
5
5
|
<ul class="info-list footer-col">
|
|
6
|
+
<li>
|
|
6
7
|
{% if site.title_html %}
|
|
7
|
-
{
|
|
8
|
+
<a href="{{ "/" | relative_url}}">{{ site.title_html }}</a>
|
|
8
9
|
{% else %}
|
|
9
|
-
{
|
|
10
|
+
<a href="{{ "/" | relative_url}}"><b>{{ site.title }}</b></a>
|
|
10
11
|
{% endif %}
|
|
11
|
-
<li><a href="{{ "/" | relative_url}}">{{ title }}</a>
|
|
12
12
|
|
|
13
13
|
{% if site.author_display %}
|
|
14
14
|
<span class="author"> par
|
|
@@ -47,6 +47,9 @@
|
|
|
47
47
|
<div class="bottom">
|
|
48
48
|
<div class="tech">
|
|
49
49
|
<a target="_blank" href="https://jekyllrb.com/">Jekyll</a> + <a target="_blank" href="https://github.com/gaalcaras/academic">Academic</a>
|
|
50
|
+
{% if site.repo %}
|
|
51
|
+
+ <a target="_blank" href="{{ site.repo }}">Source</a>
|
|
52
|
+
{% endif %}
|
|
50
53
|
</div>
|
|
51
54
|
<div class="legal">
|
|
52
55
|
{% if site.cc == null %}©{% endif %}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: academic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- gaalcaras
|
|
@@ -92,8 +92,6 @@ files:
|
|
|
92
92
|
- _sass/academic/_base.scss
|
|
93
93
|
- _sass/academic/_layout.scss
|
|
94
94
|
- _sass/academic/_syntax-highlighting.scss
|
|
95
|
-
- assets/archive.jpg
|
|
96
|
-
- assets/code.jpg
|
|
97
95
|
- assets/main.scss
|
|
98
96
|
- assets/opensans/OpenSans-Bold.ttf
|
|
99
97
|
- assets/opensans/OpenSans-Italic.ttf
|
|
@@ -121,5 +119,5 @@ rubyforge_project:
|
|
|
121
119
|
rubygems_version: 2.5.2
|
|
122
120
|
signing_key:
|
|
123
121
|
specification_version: 4
|
|
124
|
-
summary: Academic is a theme with a focus on simplicity, typography and flexibility.
|
|
122
|
+
summary: Academic is a Jekyll theme with a focus on simplicity, typography and flexibility.
|
|
125
123
|
test_files: []
|
data/assets/archive.jpg
DELETED
|
Binary file
|
data/assets/code.jpg
DELETED
|
Binary file
|