seiro 0.0.1 → 0.1.0
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/_includes/footer.html +0 -0
- data/_includes/header.html +0 -0
- data/_layouts/home.html +0 -13
- data/_layouts/post.html +23 -8
- metadata +3 -3
- data/_includes/head.html +0 -8
- data/_sass/seiro.sass +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8edac937d66492a5f7036c264fbd704b0ee90a39
|
4
|
+
data.tar.gz: 84a0f5e825192db93a710c9fa7f3308b6a502b06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8bbe900b2b7f235d4594ee1853d9181a138f239892debc2a26c2ed4b0d65db497286786a60f799fdcaef40ad2e8e334f9519328767f60d6f9f7792fd4d78bd6e
|
7
|
+
data.tar.gz: 331293c73e752c2dad7bb988e46efb8113abd54062c63c5d18ab6bd47c71d8454b254e1a64e7a8e5eda59d38e0b16b1508207cc57486086efccb633907966967
|
File without changes
|
File without changes
|
data/_layouts/home.html
CHANGED
@@ -1,13 +0,0 @@
|
|
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,9 +1,24 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
<
|
5
|
-
<
|
6
|
-
|
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>
|
7
22
|
</div>
|
8
|
-
</
|
9
|
-
|
23
|
+
</body>
|
24
|
+
</html>
|
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.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nadia Rodriguez
|
@@ -61,7 +61,8 @@ extra_rdoc_files: []
|
|
61
61
|
files:
|
62
62
|
- LICENSE.txt
|
63
63
|
- README.md
|
64
|
-
- _includes/
|
64
|
+
- _includes/footer.html
|
65
|
+
- _includes/header.html
|
65
66
|
- _layouts/home.html
|
66
67
|
- _layouts/post.html
|
67
68
|
- _sass/components/_all.sass
|
@@ -73,7 +74,6 @@ files:
|
|
73
74
|
- _sass/modifiers/_all.sass
|
74
75
|
- _sass/modifiers/defaults.sass
|
75
76
|
- _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
|
data/_includes/head.html
DELETED
@@ -1,8 +0,0 @@
|
|
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>
|