prosecco 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/_layouts/default.html +7 -5
- data/_layouts/post.html +18 -16
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 363028f3259c35b42856c00a7c0f7a654b2ded5d9c5c964e974714eeb5d4b984
|
|
4
|
+
data.tar.gz: 80342ff58589c62e60f1a850ac2e731a61b8a8eb964a6c9bb934732fe7103b57
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1aed0ad3146ea800c5eb8b84a8f3aae6cd7de275a8f377615d965ede6c6ca4138496e8014cd66b0b53ba5152d200e5fb9f0fdc5ef984413ff80ce6941aad9943
|
|
7
|
+
data.tar.gz: 38fb25f08fab98f8796a47c1292a4a08c9e87210f0c79391324a63206bef45405274b755640f00538959c57653d71ec8c37f54940978537487157fd9324f5527
|
data/_layouts/default.html
CHANGED
|
@@ -3,11 +3,13 @@
|
|
|
3
3
|
{% include head.html %}
|
|
4
4
|
|
|
5
5
|
<body>
|
|
6
|
-
<
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
<section class="section">
|
|
7
|
+
<div class="container is-max-desktop">
|
|
8
|
+
{% include header.html %}
|
|
9
|
+
{{ content }}
|
|
10
|
+
{% include footer.html %}
|
|
11
|
+
</div>
|
|
12
|
+
</section>
|
|
11
13
|
|
|
12
14
|
<script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.5.3/modernizr.min.js" type="text/javascript"></script>
|
|
13
15
|
</body>
|
data/_layouts/post.html
CHANGED
|
@@ -11,22 +11,24 @@
|
|
|
11
11
|
</head>
|
|
12
12
|
|
|
13
13
|
<body>
|
|
14
|
-
<
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
</
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
</div>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
14
|
+
<section class="section">
|
|
15
|
+
<div class="container is-max-desktop">
|
|
16
|
+
{% include header.html %}
|
|
17
|
+
|
|
18
|
+
<div class="mb-6 has-text-centered">
|
|
19
|
+
<h1 class="title is-size-1">{{ page.title }}</h1>
|
|
20
|
+
<h2 class="subtitle mt-1">{{ page.date | date_to_string }}</h2>
|
|
21
|
+
</div>
|
|
22
|
+
|
|
23
|
+
<div class="card">
|
|
24
|
+
<div class="card-content">
|
|
25
|
+
{{ content }}
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
|
|
29
|
+
{% include footer.html %}
|
|
30
|
+
</div>
|
|
31
|
+
</section>
|
|
30
32
|
|
|
31
33
|
<script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.5.3/modernizr.min.js" type="text/javascript"></script>
|
|
32
34
|
</body>
|