jekyll-bulma-theme 1.0.13 → 1.0.14
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/LICENSE.txt +21 -21
- data/README.md +63 -63
- data/_includes/foot.html +1 -1
- data/_includes/header.html +18 -18
- data/_includes/navbar.html +47 -47
- data/_includes/share-button.html +15 -15
- data/_layouts/default.html +55 -55
- data/_layouts/page.html +11 -11
- data/_layouts/post.html +65 -65
- data/_sass/_app.scss +152 -152
- data/_sass/syntax.scss +214 -214
- data/assets/css/app.scss +4 -4
- data/assets/js/app.js +267 -267
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7950039b50659ee2c5a3346449d37c95e238ddd3
|
4
|
+
data.tar.gz: c10d8982c39d5ba35d93813d23c11368419d2451
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a5f315dd0ad4dd30dd7495a9656f7954522e68521ae07c25bf4364247aa5dfb4778ff7f17ac03dfae284f45d752480f920cb13d896d0099bc68b56b0c51413b
|
7
|
+
data.tar.gz: 059bb0d030f7f387e457d224a3a3b70170fdb249bdfd63e2779942a4b8b2fd6f01124dfdaf0aec419594a1142055f03430aac380594041113b53dba13835f02a
|
data/LICENSE.txt
CHANGED
@@ -1,21 +1,21 @@
|
|
1
|
-
The MIT License (MIT)
|
2
|
-
|
3
|
-
Copyright (c) 2018 Nakorn Sinpadung
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
13
|
-
all copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
THE SOFTWARE.
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Nakorn Sinpadung
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
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/nakorndev/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/header.html
CHANGED
@@ -1,18 +1,18 @@
|
|
1
|
-
{% if page.title %}
|
2
|
-
<header class="hero is-link">
|
3
|
-
<div class="hero-body">
|
4
|
-
<div class="container">
|
5
|
-
<h1 class="title">
|
6
|
-
{{ page.title }}
|
7
|
-
</h1>
|
8
|
-
<h2 class="subtitle">
|
9
|
-
{% if page.subtitle %}
|
10
|
-
{{ page.subtitle }}
|
11
|
-
{% else if page.date %}
|
12
|
-
{{ page.date | date: site.date_format }}
|
13
|
-
{% endif %}
|
14
|
-
</h2>
|
15
|
-
</div>
|
16
|
-
</div>
|
17
|
-
</header>
|
18
|
-
{% endif %}
|
1
|
+
{% if page.title %}
|
2
|
+
<header class="hero is-link">
|
3
|
+
<div class="hero-body">
|
4
|
+
<div class="container">
|
5
|
+
<h1 class="title">
|
6
|
+
{{ page.title }}
|
7
|
+
</h1>
|
8
|
+
<h2 class="subtitle">
|
9
|
+
{% if page.subtitle %}
|
10
|
+
{{ page.subtitle }}
|
11
|
+
{% else if page.date %}
|
12
|
+
{{ page.date | date: site.date_format }}
|
13
|
+
{% endif %}
|
14
|
+
</h2>
|
15
|
+
</div>
|
16
|
+
</div>
|
17
|
+
</header>
|
18
|
+
{% endif %}
|
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
@@ -1,15 +1,15 @@
|
|
1
|
-
<span class="tag is-white is-medium" disabled>Share:</span>
|
2
|
-
<div class="buttons has-addons">
|
3
|
-
<span class="button is-facebook on-share" data-url="{{ post.url | absolute_url }}" data-provider="facebook">
|
4
|
-
<span class="icon"><i class="fab fa-lg fa-facebook-f"></i></span>
|
5
|
-
</span>
|
6
|
-
<span class="button is-twitter on-share" data-url="{{ post.url | absolute_url }}" data-provider="twitter">
|
7
|
-
<span class="icon"><i class="fab fa-lg fa-twitter"></i></span>
|
8
|
-
</span>
|
9
|
-
<span class="button is-google on-share" data-url="{{ post.url | absolute_url }}" data-provider="google">
|
10
|
-
<span class="icon"><i class="fab fa-lg fa-google-plus-g"></i></span>
|
11
|
-
</span>
|
12
|
-
<span class="button is-pinterest on-share" data-url="{{ post.url | absolute_url }}" data-provider="pinterest">
|
13
|
-
<span class="icon"><i class="fab fa-lg fa-pinterest-p"></i></span>
|
14
|
-
</span>
|
15
|
-
</div>
|
1
|
+
<span class="tag is-white is-medium" disabled>Share:</span>
|
2
|
+
<div class="buttons has-addons">
|
3
|
+
<span class="button is-facebook on-share" data-url="{{ post.url | absolute_url }}" data-provider="facebook">
|
4
|
+
<span class="icon"><i class="fab fa-lg fa-facebook-f"></i></span>
|
5
|
+
</span>
|
6
|
+
<span class="button is-twitter on-share" data-url="{{ post.url | absolute_url }}" data-provider="twitter">
|
7
|
+
<span class="icon"><i class="fab fa-lg fa-twitter"></i></span>
|
8
|
+
</span>
|
9
|
+
<span class="button is-google on-share" data-url="{{ post.url | absolute_url }}" data-provider="google">
|
10
|
+
<span class="icon"><i class="fab fa-lg fa-google-plus-g"></i></span>
|
11
|
+
</span>
|
12
|
+
<span class="button is-pinterest on-share" data-url="{{ post.url | absolute_url }}" data-provider="pinterest">
|
13
|
+
<span class="icon"><i class="fab fa-lg fa-pinterest-p"></i></span>
|
14
|
+
</span>
|
15
|
+
</div>
|
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 and page.disable_title != true %}
|
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 and page.disable_title != true %}
|
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>
|