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 +4 -4
- data/_includes/head.html +8 -0
- data/_layouts/home.html +13 -0
- data/_layouts/post.html +8 -23
- data/_sass/seiro.sass +6 -0
- metadata +3 -3
- data/_includes/footer.html +0 -0
- data/_includes/header.html +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1b141cca60231487f173bcb1bb6c25060bf36c0
|
4
|
+
data.tar.gz: d21a4518c91b032e79b29b560b63b15e37ea5de6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f46b93b1a78c0130b127d20ab15d744d10deb6dadddd707b3c61e7b344416d3202bbd9d902818a551bb3eb7e8020a2addedf580d24c07295274ca2feb1b8c748
|
7
|
+
data.tar.gz: 4ed2a51984bf19cf71b28ab317f2f24d0a6ac4c5e112b1bcbd5a6f0a1296e81e4b0fd5ecd07ce02f1ab54c049f36c23149d22aac1e256a335e9e9d39a9049914
|
data/_includes/head.html
ADDED
@@ -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
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
<
|
6
|
-
|
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
|
-
</
|
24
|
-
|
8
|
+
</div>
|
9
|
+
|
data/_sass/seiro.sass
ADDED
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.
|
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/
|
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
|
data/_includes/footer.html
DELETED
File without changes
|
data/_includes/header.html
DELETED
File without changes
|