jekyll-theme-blp 1.0 → 1.0.1
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/_layouts/default.html +15 -1
- data/_layouts/page.html +9 -1
- metadata +1 -2
- data/_layouts/post.html +0 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99ba6f0ce8a2e5571c60f413093384858d40d73a2cb26ccb57e8523c00a625b7
|
|
4
|
+
data.tar.gz: 7cb6c9ce4a1f0c11e0f7601e215778e796347016cb1be78017a32c5a14c03a69
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9159bf748fd317fa2d8dddd8109daadf5fa01ddb8ccd7d9282480dcab1a8894c8035b1b26d0aeea4d507ac169687e2ca387cb0fdb1f5b273f0fc67c7841df25
|
|
7
|
+
data.tar.gz: 66c1bedce1fe89b47b0a3d5999bf97644ed53c28a9c0970686aa30b0da9e5b7109ebfa0a26471597d2ae1ea9acb87245f78f44681129e24c8aa4eef417ea9e3b
|
data/_layouts/default.html
CHANGED
|
@@ -1 +1,15 @@
|
|
|
1
|
-
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="{{- page.lang | default: site.lang -}}">
|
|
3
|
+
{%- include head.html -%}
|
|
4
|
+
<body class="{{ page.layout }} {{ page.slug | default: 'home' | prepend: 'page-' }}">
|
|
5
|
+
<div id="page" class="site">
|
|
6
|
+
{%- include header.html -%}
|
|
7
|
+
|
|
8
|
+
<main class="site-content wrapper">
|
|
9
|
+
{{- content -}}
|
|
10
|
+
</main>
|
|
11
|
+
|
|
12
|
+
{%- include footer.html -%}
|
|
13
|
+
</div>
|
|
14
|
+
</body>
|
|
15
|
+
</html>
|
data/_layouts/page.html
CHANGED
|
@@ -2,4 +2,12 @@
|
|
|
2
2
|
layout: default
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
<article class="content">
|
|
6
|
+
<header class="content-header">
|
|
7
|
+
<h1 class="content-title">{{- page.title | default: site.title -}}</h1>
|
|
8
|
+
</header>
|
|
9
|
+
|
|
10
|
+
<div class="content-body">
|
|
11
|
+
{{- content -}}
|
|
12
|
+
</div>
|
|
13
|
+
</article>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-blp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Arthur Freitas
|
|
@@ -94,7 +94,6 @@ files:
|
|
|
94
94
|
- _includes/header.html
|
|
95
95
|
- _layouts/default.html
|
|
96
96
|
- _layouts/page.html
|
|
97
|
-
- _layouts/post.html
|
|
98
97
|
- _sass/_base.scss
|
|
99
98
|
- _sass/_layout.scss
|
|
100
99
|
- _sass/_mixins.scss
|