jekyll-theme-blp 1.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b1f96b29c6c8b25dc730e14226be688121b2109fb8ca309eddd8f33adb5f5dd
4
- data.tar.gz: 9594143cd28975aaa1b18c45c0bb7e736ae192138fe9bbba6bbcec2e006a3745
3
+ metadata.gz: 99ba6f0ce8a2e5571c60f413093384858d40d73a2cb26ccb57e8523c00a625b7
4
+ data.tar.gz: 7cb6c9ce4a1f0c11e0f7601e215778e796347016cb1be78017a32c5a14c03a69
5
5
  SHA512:
6
- metadata.gz: 99d0c360cb89fff467547f102e2375b1b974c8d71e7dc0ad63ed94507728a56710a77f29523e181d068e5987aabca45a290d695822bb9183f4a23e3c6a840914
7
- data.tar.gz: dfb7db9689e288ca8d934fef41bb3e0fff55c02d8c89bb21173e34516885d0846bc73654495c7c2d34e849f1cb9cd0d6ee8c5e92164abc0883950fe0e8b2a606
6
+ metadata.gz: b9159bf748fd317fa2d8dddd8109daadf5fa01ddb8ccd7d9282480dcab1a8894c8035b1b26d0aeea4d507ac169687e2ca387cb0fdb1f5b273f0fc67c7841df25
7
+ data.tar.gz: 66c1bedce1fe89b47b0a3d5999bf97644ed53c28a9c0970686aa30b0da9e5b7109ebfa0a26471597d2ae1ea9acb87245f78f44681129e24c8aa4eef417ea9e3b
@@ -1 +1,15 @@
1
- {{ content }}
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
- {{ content }}
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: '1.0'
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
data/_layouts/post.html DELETED
@@ -1,5 +0,0 @@
1
- ---
2
- layout: default
3
- ---
4
-
5
- {{ content }}