jekyll-bulma-theme 1.0.10 → 1.0.11
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 +5 -5
- data/LICENSE.txt +0 -0
- data/README.md +63 -63
- data/_includes/foot.html +1 -1
- data/_includes/head.html +0 -0
- data/_includes/header.html +0 -0
- data/_includes/navbar.html +47 -47
- data/_includes/share-button.html +0 -0
- data/_layouts/default.html +55 -55
- data/_layouts/page.html +11 -11
- data/_layouts/post.html +0 -0
- data/_sass/_app.scss +0 -0
- data/_sass/syntax.scss +0 -0
- data/assets/css/app.scss +0 -0
- data/assets/favicon/16x16.png +0 -0
- data/assets/favicon/32x32.png +0 -0
- data/assets/js/app.js +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b7c847aeeaab1bf7fafc2e8b1715585e1e81d7c3
|
4
|
+
data.tar.gz: 469aef19f1988f6c3dafd4433e27b11d259b9b9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f89fae160c84eb1337da437d25722444bf6403c58eb3e6fe9eeb3417e6a6d089167c2bfbc1f8cd0a29fb6beea2d61cf3756d1e6003da2bf90d8ea6990f04ece
|
7
|
+
data.tar.gz: 5f2acc8c74d350931610eb09da7de59332c7d3df52948608d4e9365588e4c8696848404b4787f6f5f147a860290009fd4085d8bcacc095686d9454d15863cacf
|
data/LICENSE.txt
CHANGED
File without changes
|
data/README.md
CHANGED
@@ -1,63 +1,63 @@
|
|
1
|
-
# Bulma theme for Jekyll 3
|
2
|
-
|
3
|
-
This is a pure [Bulma CSS Framework](https://bulma.io) by using a `cdnjs` provider instead of using `npm`, so this may need internet connection for development and cannot custom a `sass` for your own.
|
4
|
-
|
5
|
-
> My English is not good, so you can make pull request to improvement this `README.md`.
|
6
|
-
|
7
|
-
## Feature
|
8
|
-
|
9
|
-
- Layout `default.html` that clone from [Bulma Documentation](https://bulma.io/documentation/overview/start/).
|
10
|
-
- Favicon 32x32 and 64x64 pixel support.
|
11
|
-
- Scroll up to show `navbar` as fixed.
|
12
|
-
- Add navbar shadow for wrapper when active.
|
13
|
-
- Dropdown and Modal support.
|
14
|
-
- Share button for `Facebook`, `Twitter`, `Google Plus` and `Pinterest`
|
15
|
-
- Example of `index.html` for `jekyll-pagination`.
|
16
|
-
- Meta tag of `description` by `page.excerpt` (Receive from before `<!--more-->` of posts).
|
17
|
-
- Custom css for header to show `#` like markdown.
|
18
|
-
- Author information for posts.
|
19
|
-
- Custom version of packages from cdn provider.
|
20
|
-
- Configable for date formatting.
|
21
|
-
|
22
|
-
## Installation
|
23
|
-
|
24
|
-
Add this line to your Jekyll site's `Gemfile`:
|
25
|
-
|
26
|
-
```ruby
|
27
|
-
gem "jekyll-bulma-theme"
|
28
|
-
```
|
29
|
-
|
30
|
-
And add this line to your Jekyll site's `_config.yml`:
|
31
|
-
|
32
|
-
```yaml
|
33
|
-
theme: jekyll-bulma-theme
|
34
|
-
```
|
35
|
-
|
36
|
-
And then execute:
|
37
|
-
|
38
|
-
$ bundle
|
39
|
-
|
40
|
-
Or install it yourself as:
|
41
|
-
|
42
|
-
$ gem install jekyll-bulma-theme
|
43
|
-
|
44
|
-
## Usage
|
45
|
-
|
46
|
-
After done of installation, so you may copy a `index.html` for index page that included with `jekyll-pagination` support, also you can custom you own `_includes` by replace exact name to custom `_layouts/default.html` like you may need an extra sub-route for `header.html` or translate to you own language.
|
47
|
-
|
48
|
-
## Contributing
|
49
|
-
|
50
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
51
|
-
|
52
|
-
## Development
|
53
|
-
|
54
|
-
To set up your environment to develop this theme, run `bundle install`.
|
55
|
-
|
56
|
-
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
57
|
-
|
58
|
-
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
59
|
-
To add a custom directory to your theme-gem, please edit the regexp in `jekyll-bulma-theme.gemspec` accordingly.
|
60
|
-
|
61
|
-
## License
|
62
|
-
|
63
|
-
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
1
|
+
# Bulma theme for Jekyll 3
|
2
|
+
|
3
|
+
This is a pure [Bulma CSS Framework](https://bulma.io) by using a `cdnjs` provider instead of using `npm`, so this may need internet connection for development and cannot custom a `sass` for your own.
|
4
|
+
|
5
|
+
> My English is not good, so you can make pull request to improvement this `README.md`.
|
6
|
+
|
7
|
+
## Feature
|
8
|
+
|
9
|
+
- Layout `default.html` that clone from [Bulma Documentation](https://bulma.io/documentation/overview/start/).
|
10
|
+
- Favicon 32x32 and 64x64 pixel support.
|
11
|
+
- Scroll up to show `navbar` as fixed.
|
12
|
+
- Add navbar shadow for wrapper when active.
|
13
|
+
- Dropdown and Modal support.
|
14
|
+
- Share button for `Facebook`, `Twitter`, `Google Plus` and `Pinterest`
|
15
|
+
- Example of `index.html` for `jekyll-pagination`.
|
16
|
+
- Meta tag of `description` by `page.excerpt` (Receive from before `<!--more-->` of posts).
|
17
|
+
- Custom css for header to show `#` like markdown.
|
18
|
+
- Author information for posts.
|
19
|
+
- Custom version of packages from cdn provider.
|
20
|
+
- Configable for date formatting.
|
21
|
+
|
22
|
+
## Installation
|
23
|
+
|
24
|
+
Add this line to your Jekyll site's `Gemfile`:
|
25
|
+
|
26
|
+
```ruby
|
27
|
+
gem "jekyll-bulma-theme"
|
28
|
+
```
|
29
|
+
|
30
|
+
And add this line to your Jekyll site's `_config.yml`:
|
31
|
+
|
32
|
+
```yaml
|
33
|
+
theme: jekyll-bulma-theme
|
34
|
+
```
|
35
|
+
|
36
|
+
And then execute:
|
37
|
+
|
38
|
+
$ bundle
|
39
|
+
|
40
|
+
Or install it yourself as:
|
41
|
+
|
42
|
+
$ gem install jekyll-bulma-theme
|
43
|
+
|
44
|
+
## Usage
|
45
|
+
|
46
|
+
After done of installation, so you may copy a `index.html` for index page that included with `jekyll-pagination` support, also you can custom you own `_includes` by replace exact name to custom `_layouts/default.html` like you may need an extra sub-route for `header.html` or translate to you own language.
|
47
|
+
|
48
|
+
## Contributing
|
49
|
+
|
50
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/anitation/jekyll-bulma-theme. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
51
|
+
|
52
|
+
## Development
|
53
|
+
|
54
|
+
To set up your environment to develop this theme, run `bundle install`.
|
55
|
+
|
56
|
+
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
57
|
+
|
58
|
+
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
59
|
+
To add a custom directory to your theme-gem, please edit the regexp in `jekyll-bulma-theme.gemspec` accordingly.
|
60
|
+
|
61
|
+
## License
|
62
|
+
|
63
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/_includes/foot.html
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<!-- <meta>Extra head HTML element</meta> -->
|
1
|
+
<!-- <meta>Extra head HTML element</meta> -->
|
data/_includes/head.html
CHANGED
File without changes
|
data/_includes/header.html
CHANGED
File without changes
|
data/_includes/navbar.html
CHANGED
@@ -1,47 +1,47 @@
|
|
1
|
-
<div class="container">
|
2
|
-
<nav class="navbar-brand">
|
3
|
-
<a class="navbar-item" href="{{ site.baseurl }}/">{{ site.name }}</a>
|
4
|
-
{% if site.navigation.github %}
|
5
|
-
<a class="navbar-item is-hidden-desktop text-github" target="_blank" href="https://github.com/{{ site.navigation.github }}">
|
6
|
-
<i class="fab fa-lg fa-github"></i>
|
7
|
-
</a>
|
8
|
-
{% endif %}
|
9
|
-
{% if site.navigation.twitter %}
|
10
|
-
<a class="navbar-item is-hidden-desktop text-twitter" target="_blank" href="https://twitter.com/{{ site.navigation.twitter }}">
|
11
|
-
<i class="fab fa-lg fa-twitter"></i>
|
12
|
-
</a>
|
13
|
-
{% endif %}
|
14
|
-
{% if site.navigation.facebook %}
|
15
|
-
<a class="navbar-item is-hidden-desktop text-facebook" target="_blank" href="https://www.facebook.com/{{ site.navigation.facebook }}">
|
16
|
-
<i class="fab fa-lg fa-facebook"></i>
|
17
|
-
</a>
|
18
|
-
{% endif %}
|
19
|
-
<div id="navbarBurger" class="navbar-burger" data-target="navMenu">
|
20
|
-
<span></span>
|
21
|
-
<span></span>
|
22
|
-
<span></span>
|
23
|
-
</div>
|
24
|
-
</nav>
|
25
|
-
<div class="navbar-menu" id="navMenu">
|
26
|
-
<div class="navbar-start">
|
27
|
-
<a class="navbar-item {% if page.url == "/" %}is-active{% endif %}" href="{{ site.baseurl }}/">Posts</a>
|
28
|
-
</div>
|
29
|
-
<div class="navbar-end">
|
30
|
-
{% if site.navigation.github %}
|
31
|
-
<a class="navbar-item is-hidden-touch text-github" target="_blank" href="https://github.com/{{ site.navigation.github }}">
|
32
|
-
<i class="fab fa-lg fa-github"></i>
|
33
|
-
</a>
|
34
|
-
{% endif %}
|
35
|
-
{% if site.navigation.twitter %}
|
36
|
-
<a class="navbar-item is-hidden-touch text-twitter" target="_blank" href="https://twitter.com/{{ site.navigation.twitter }}">
|
37
|
-
<i class="fab fa-lg fa-twitter"></i>
|
38
|
-
</a>
|
39
|
-
{% endif %}
|
40
|
-
{% if site.navigation.facebook %}
|
41
|
-
<a class="navbar-item is-hidden-touch text-facebook" target="_blank" href="https://www.facebook.com/{{ site.navigation.facebook }}">
|
42
|
-
<i class="fab fa-lg fa-facebook"></i>
|
43
|
-
</a>
|
44
|
-
{% endif %}
|
45
|
-
</div>
|
46
|
-
</div>
|
47
|
-
</div>
|
1
|
+
<div class="container">
|
2
|
+
<nav class="navbar-brand">
|
3
|
+
<a class="navbar-item" href="{{ site.baseurl }}/">{{ site.name }}</a>
|
4
|
+
{% if site.navigation.github %}
|
5
|
+
<a class="navbar-item is-hidden-desktop text-github" target="_blank" href="https://github.com/{{ site.navigation.github }}">
|
6
|
+
<i class="fab fa-lg fa-github"></i>
|
7
|
+
</a>
|
8
|
+
{% endif %}
|
9
|
+
{% if site.navigation.twitter %}
|
10
|
+
<a class="navbar-item is-hidden-desktop text-twitter" target="_blank" href="https://twitter.com/{{ site.navigation.twitter }}">
|
11
|
+
<i class="fab fa-lg fa-twitter"></i>
|
12
|
+
</a>
|
13
|
+
{% endif %}
|
14
|
+
{% if site.navigation.facebook %}
|
15
|
+
<a class="navbar-item is-hidden-desktop text-facebook" target="_blank" href="https://www.facebook.com/{{ site.navigation.facebook }}">
|
16
|
+
<i class="fab fa-lg fa-facebook"></i>
|
17
|
+
</a>
|
18
|
+
{% endif %}
|
19
|
+
<div id="navbarBurger" class="navbar-burger" data-target="navMenu">
|
20
|
+
<span></span>
|
21
|
+
<span></span>
|
22
|
+
<span></span>
|
23
|
+
</div>
|
24
|
+
</nav>
|
25
|
+
<div class="navbar-menu" id="navMenu">
|
26
|
+
<div class="navbar-start">
|
27
|
+
<a class="navbar-item {% if page.url == "/" %}is-active{% endif %}" href="{{ site.baseurl }}/">Posts</a>
|
28
|
+
</div>
|
29
|
+
<div class="navbar-end">
|
30
|
+
{% if site.navigation.github %}
|
31
|
+
<a class="navbar-item is-hidden-touch text-github" target="_blank" href="https://github.com/{{ site.navigation.github }}">
|
32
|
+
<i class="fab fa-lg fa-github"></i>
|
33
|
+
</a>
|
34
|
+
{% endif %}
|
35
|
+
{% if site.navigation.twitter %}
|
36
|
+
<a class="navbar-item is-hidden-touch text-twitter" target="_blank" href="https://twitter.com/{{ site.navigation.twitter }}">
|
37
|
+
<i class="fab fa-lg fa-twitter"></i>
|
38
|
+
</a>
|
39
|
+
{% endif %}
|
40
|
+
{% if site.navigation.facebook %}
|
41
|
+
<a class="navbar-item is-hidden-touch text-facebook" target="_blank" href="https://www.facebook.com/{{ site.navigation.facebook }}">
|
42
|
+
<i class="fab fa-lg fa-facebook"></i>
|
43
|
+
</a>
|
44
|
+
{% endif %}
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
</div>
|
data/_includes/share-button.html
CHANGED
File without changes
|
data/_layouts/default.html
CHANGED
@@ -1,55 +1,55 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html lang="{{ site.lang }}">
|
3
|
-
<head>
|
4
|
-
<meta charset="UTF-8">
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
7
|
-
{% if page.is_post %}
|
8
|
-
<meta name="description" content="{{ page.excerpt | strip_html }}">
|
9
|
-
{% else %}
|
10
|
-
<meta name="description" content="{{ site.description }}">
|
11
|
-
{% endif %}
|
12
|
-
<title>
|
13
|
-
{% if page.title %}
|
14
|
-
{{ page.title }} | {{ site.title }}
|
15
|
-
{% else %}
|
16
|
-
{{ site.title }}
|
17
|
-
{% endif %}
|
18
|
-
</title>
|
19
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/{{ site.version.bulma }}/css/bulma.min.css">
|
20
|
-
<link rel="stylesheet" href="{{ 'assets/css/app.css' | absolute_url }}">
|
21
|
-
<link rel="shortcut icon" type="image/png" href="{{ 'assets/favicon/16x16.png' | absolute_url }}" sizes="16x16"/>
|
22
|
-
<link rel="shortcut icon" type="image/png" href="{{ 'assets/favicon/32x32.png' | absolute_url }}" sizes="32x32"/>
|
23
|
-
<script defer src="https://use.fontawesome.com/releases/v{{ site.version.font-awesome }}/js/all.js"></script>
|
24
|
-
{% include head.html %}
|
25
|
-
</head>
|
26
|
-
<body>
|
27
|
-
<div id="shadowed" style="display: none;"></div>
|
28
|
-
<div id="app">
|
29
|
-
<nav id="navbar" class="navbar is-fixed-top" role="navigation" aria-label="main navigation">
|
30
|
-
<div id="specialShadow" class="bd-special-shadow"></div>
|
31
|
-
{% include navbar.html %}
|
32
|
-
</nav>
|
33
|
-
{% include header.html %}
|
34
|
-
<main>
|
35
|
-
{{ content }}
|
36
|
-
</main>
|
37
|
-
</div>
|
38
|
-
<footer class="footer">
|
39
|
-
<div class="container">
|
40
|
-
<div class="content has-text-centered">
|
41
|
-
<p>
|
42
|
-
<strong>Bulma</strong> by <a href="https://jgthms.com">Jeremy Thomas</a>. The source code is licensed
|
43
|
-
<a href="http://opensource.org/licenses/mit-license.php">MIT</a>. The website content
|
44
|
-
is licensed <a href="http://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY NC SA 4.0</a>.
|
45
|
-
</p>
|
46
|
-
<p>
|
47
|
-
<strong>jekyll-bulma-theme</strong> by <a href="https://github.com/nakorndev">nakorndev</a>. Powered by <a href="https://jekyllrb.com">Jekyll</a> and <a href="https://pages.github.com/">GitHub Pages</a>.
|
48
|
-
</p>
|
49
|
-
</div>
|
50
|
-
</div>
|
51
|
-
</footer>
|
52
|
-
<script src="{{ 'assets/js/app.js' | absolute_url }}"></script>
|
53
|
-
{% include foot.html %}
|
54
|
-
</body>
|
55
|
-
</html>
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="{{ site.lang }}">
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
7
|
+
{% if page.is_post %}
|
8
|
+
<meta name="description" content="{{ page.excerpt | strip_html }}">
|
9
|
+
{% else %}
|
10
|
+
<meta name="description" content="{{ site.description }}">
|
11
|
+
{% endif %}
|
12
|
+
<title>
|
13
|
+
{% if page.title %}
|
14
|
+
{{ page.title }} | {{ site.title }}
|
15
|
+
{% else %}
|
16
|
+
{{ site.title }}
|
17
|
+
{% endif %}
|
18
|
+
</title>
|
19
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/{{ site.version.bulma }}/css/bulma.min.css">
|
20
|
+
<link rel="stylesheet" href="{{ 'assets/css/app.css' | absolute_url }}">
|
21
|
+
<link rel="shortcut icon" type="image/png" href="{{ 'assets/favicon/16x16.png' | absolute_url }}" sizes="16x16"/>
|
22
|
+
<link rel="shortcut icon" type="image/png" href="{{ 'assets/favicon/32x32.png' | absolute_url }}" sizes="32x32"/>
|
23
|
+
<script defer src="https://use.fontawesome.com/releases/v{{ site.version.font-awesome }}/js/all.js"></script>
|
24
|
+
{% include head.html %}
|
25
|
+
</head>
|
26
|
+
<body>
|
27
|
+
<div id="shadowed" style="display: none;"></div>
|
28
|
+
<div id="app">
|
29
|
+
<nav id="navbar" class="navbar is-fixed-top" role="navigation" aria-label="main navigation">
|
30
|
+
<div id="specialShadow" class="bd-special-shadow"></div>
|
31
|
+
{% include navbar.html %}
|
32
|
+
</nav>
|
33
|
+
{% include header.html %}
|
34
|
+
<main>
|
35
|
+
{{ content }}
|
36
|
+
</main>
|
37
|
+
</div>
|
38
|
+
<footer class="footer">
|
39
|
+
<div class="container">
|
40
|
+
<div class="content has-text-centered">
|
41
|
+
<p>
|
42
|
+
<strong>Bulma</strong> by <a href="https://jgthms.com">Jeremy Thomas</a>. The source code is licensed
|
43
|
+
<a href="http://opensource.org/licenses/mit-license.php">MIT</a>. The website content
|
44
|
+
is licensed <a href="http://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY NC SA 4.0</a>.
|
45
|
+
</p>
|
46
|
+
<p>
|
47
|
+
<strong>jekyll-bulma-theme</strong> by <a href="https://github.com/nakorndev">nakorndev</a>. Powered by <a href="https://jekyllrb.com">Jekyll</a> and <a href="https://pages.github.com/">GitHub Pages</a>.
|
48
|
+
</p>
|
49
|
+
</div>
|
50
|
+
</div>
|
51
|
+
</footer>
|
52
|
+
<script src="{{ 'assets/js/app.js' | absolute_url }}"></script>
|
53
|
+
{% include foot.html %}
|
54
|
+
</body>
|
55
|
+
</html>
|
data/_layouts/page.html
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
---
|
2
|
-
layout: default
|
3
|
-
---
|
4
|
-
|
5
|
-
<div class="section">
|
6
|
-
<div class="container">
|
7
|
-
<div class="content">
|
8
|
-
{{ content }}
|
9
|
-
</div>
|
10
|
-
</div>
|
11
|
-
</div>
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<div class="section">
|
6
|
+
<div class="container">
|
7
|
+
<div class="content">
|
8
|
+
{{ content }}
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
</div>
|
data/_layouts/post.html
CHANGED
File without changes
|
data/_sass/_app.scss
CHANGED
File without changes
|
data/_sass/syntax.scss
CHANGED
File without changes
|
data/assets/css/app.scss
CHANGED
File without changes
|
data/assets/favicon/16x16.png
CHANGED
File without changes
|
data/assets/favicon/32x32.png
CHANGED
File without changes
|
data/assets/js/app.js
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-bulma-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nakorn Sinpadung
|
@@ -52,7 +52,7 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '12.0'
|
55
|
-
description: 'A pure Bulma theme for jekyll that used on GitHub:
|
55
|
+
description: 'A pure Bulma theme for jekyll that used on GitHub: anitation/nong-program'
|
56
56
|
email:
|
57
57
|
- nakorndev@gmail.com
|
58
58
|
executables: []
|
@@ -75,7 +75,7 @@ files:
|
|
75
75
|
- assets/favicon/16x16.png
|
76
76
|
- assets/favicon/32x32.png
|
77
77
|
- assets/js/app.js
|
78
|
-
homepage: https://github.com/
|
78
|
+
homepage: https://github.com/anitation/jekyll-bulma-theme
|
79
79
|
licenses:
|
80
80
|
- MIT
|
81
81
|
metadata: {}
|
@@ -95,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
95
|
version: '0'
|
96
96
|
requirements: []
|
97
97
|
rubyforge_project:
|
98
|
-
rubygems_version: 2.
|
98
|
+
rubygems_version: 2.5.2.1
|
99
99
|
signing_key:
|
100
100
|
specification_version: 4
|
101
101
|
summary: Bulma theme for Jekyll
|