seiro 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8edac937d66492a5f7036c264fbd704b0ee90a39
4
- data.tar.gz: 84a0f5e825192db93a710c9fa7f3308b6a502b06
3
+ metadata.gz: d1b141cca60231487f173bcb1bb6c25060bf36c0
4
+ data.tar.gz: d21a4518c91b032e79b29b560b63b15e37ea5de6
5
5
  SHA512:
6
- metadata.gz: 8bbe900b2b7f235d4594ee1853d9181a138f239892debc2a26c2ed4b0d65db497286786a60f799fdcaef40ad2e8e334f9519328767f60d6f9f7792fd4d78bd6e
7
- data.tar.gz: 331293c73e752c2dad7bb988e46efb8113abd54062c63c5d18ab6bd47c71d8454b254e1a64e7a8e5eda59d38e0b16b1508207cc57486086efccb633907966967
6
+ metadata.gz: f46b93b1a78c0130b127d20ab15d744d10deb6dadddd707b3c61e7b344416d3202bbd9d902818a551bb3eb7e8020a2addedf580d24c07295274ca2feb1b8c748
7
+ data.tar.gz: 4ed2a51984bf19cf71b28ab317f2f24d0a6ac4c5e112b1bcbd5a6f0a1296e81e4b0fd5ecd07ce02f1ab54c049f36c23149d22aac1e256a335e9e9d39a9049914
@@ -0,0 +1,8 @@
1
+ <head>
2
+ <meta charset="UTF-8">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
4
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
5
+ <title>{{ site.title }}</title>
6
+ <link rel="stylesheet" href="../css/seiro.css">
7
+ <link rel="stylesheet" href="../css/style.css">
8
+ </head>
data/_layouts/home.html CHANGED
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ {% include head.html %}
4
+ <body>
5
+ <div class="s-banner-fullheight" id="main-background">
6
+ <div class="s-banner-container">
7
+ <div class="s-card-grid">
8
+ {{ content }}
9
+ </div>
10
+ </div>
11
+ </div>
12
+ </body>
13
+ </html>
data/_layouts/post.html CHANGED
@@ -1,24 +1,9 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
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
- <title>Blog</title>
8
- <link rel="stylesheet" href="../css/seiro.css">
9
- <link rel="stylesheet" href="../css/style.css">
10
- </head>
11
- <body>
12
- <div class="s-banner-fullheight" id="blog-background">
13
- <div class="s-banner-container">
14
- <div class="s-card-grid">
15
- <div class="s-blog-card">
16
- <div class="s-card-content">
17
- {{ content }}
18
- </div>
19
- </div>
20
- </div>
21
- </div>
1
+ ---
2
+ layout: home
3
+ ---
4
+ <div class="s-blog-card">
5
+ <div class="s-card-content">
6
+ {{ content }}
22
7
  </div>
23
- </body>
24
- </html>
8
+ </div>
9
+
data/_sass/seiro.sass ADDED
@@ -0,0 +1,6 @@
1
+ @charset "utf-8"
2
+
3
+ @import "variables/_all"
4
+ @import "modifiers/_all"
5
+ @import "elements/_all"
6
+ @import "components/_all"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: seiro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nadia Rodriguez
@@ -61,8 +61,7 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - LICENSE.txt
63
63
  - README.md
64
- - _includes/footer.html
65
- - _includes/header.html
64
+ - _includes/head.html
66
65
  - _layouts/home.html
67
66
  - _layouts/post.html
68
67
  - _sass/components/_all.sass
@@ -74,6 +73,7 @@ files:
74
73
  - _sass/modifiers/_all.sass
75
74
  - _sass/modifiers/defaults.sass
76
75
  - _sass/modifiers/typography-helpers.sass
76
+ - _sass/seiro.sass
77
77
  - _sass/variables/_all.sass
78
78
  - _sass/variables/derived-variables.sass
79
79
  - _sass/variables/element-variables.sass
File without changes
File without changes