paloma-jekyll 0.2.3 → 0.2.4
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 +5 -0
- data/_layouts/default.html +2 -0
- data/_layouts/post.html +9 -0
- data/_sass/_theme.scss +29 -2
- data/assets/fonts/EBGaramond-Bold.ttf +0 -0
- data/assets/fonts/EBGaramond-Regular.ttf +0 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72d99484c308c574181c5607da1281b9dd7884a89fc0a906678265cf42d011a2
|
4
|
+
data.tar.gz: 4a0c4298cf20adb145d0edbefa893595ade9234f5e0dc61160cb70bb18677bf6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 203511974ed909386e8b1d85c585723a338c055d30ee0435f5e9ebe3fe632b9ec1416f178185b6204c88d0054d8cc3eba5b457cdab34bac2496645099057b0c7
|
7
|
+
data.tar.gz: a45efc8989fb84831ed5b961d89eaa2500e51aaee43350f5eaafab554593016049a198ef5d2a1bd442f8d4a28d12e953c7124ef58bfdd4824b14c78540c51a1f
|
data/_layouts/default.html
CHANGED
data/_layouts/post.html
CHANGED
@@ -2,7 +2,12 @@
|
|
2
2
|
<html lang="{{ site.lang | default: "en-US" }}">
|
3
3
|
|
4
4
|
<head>
|
5
|
+
<meta charset="utf-8">
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
5
7
|
<link rel="stylesheet" href="{{ "/assets/styles.css" | relative_url }}">
|
8
|
+
<link rel="manifest" href="{{ "/manifest.json" | relative_url }}">
|
9
|
+
<meta name="theme-color" content="{{ site.manifest.theme_color | default: '#242e2b' }}"/>
|
10
|
+
<title>{{ page.title }}</title>
|
6
11
|
</head>
|
7
12
|
|
8
13
|
<body>
|
@@ -11,10 +16,14 @@
|
|
11
16
|
<div class="wrap">
|
12
17
|
<div class="container">
|
13
18
|
<article class="article">
|
19
|
+
<span class="article-date">{{ page.date | date: "%-d %B %Y" }}</span>
|
14
20
|
{{ content }}
|
15
21
|
</article>
|
16
22
|
</div>
|
17
23
|
</div>
|
24
|
+
|
25
|
+
{% include footer.html %}
|
26
|
+
|
18
27
|
</body>
|
19
28
|
</html>
|
20
29
|
|
data/_sass/_theme.scss
CHANGED
@@ -1,16 +1,29 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: "Garamond";
|
3
|
+
font-weight: normal;
|
4
|
+
src: url("fonts/EBGaramond-Regular.ttf");
|
5
|
+
}
|
6
|
+
|
7
|
+
@font-face {
|
8
|
+
font-family: "Garamond";
|
9
|
+
font-weight: bold;
|
10
|
+
src: url("fonts/EBGaramond-Bold.ttf");
|
11
|
+
}
|
12
|
+
|
1
13
|
body {
|
2
14
|
color: #4A5859;
|
3
|
-
background: #
|
15
|
+
background: #FFF;
|
4
16
|
height: 100%;
|
5
17
|
padding: 0px;
|
6
18
|
margin: 0px;
|
7
|
-
font-family:
|
19
|
+
font-family: 'Garamond', serif;
|
8
20
|
font-size: 20px;
|
9
21
|
}
|
10
22
|
|
11
23
|
h1 {
|
12
24
|
color: #C83E4D;
|
13
25
|
font-size: 3.5em;
|
26
|
+
font-weight: bold;
|
14
27
|
margin: 100px 0px 100px 0px;
|
15
28
|
}
|
16
29
|
|
@@ -18,6 +31,10 @@ h2 {
|
|
18
31
|
padding: 30px 0px 15px 0px;
|
19
32
|
}
|
20
33
|
|
34
|
+
.article-date {
|
35
|
+
color: #936167;
|
36
|
+
}
|
37
|
+
|
21
38
|
.container {
|
22
39
|
max-width: 600px;
|
23
40
|
margin: 0px auto;
|
@@ -25,6 +42,15 @@ h2 {
|
|
25
42
|
|
26
43
|
.wrap {
|
27
44
|
position: relative;
|
45
|
+
background: #FFF2EE;
|
46
|
+
}
|
47
|
+
.wrap a {
|
48
|
+
text-decoration: underline;
|
49
|
+
color: inherit;
|
50
|
+
}
|
51
|
+
|
52
|
+
.footer {
|
53
|
+
height: 150px;
|
28
54
|
}
|
29
55
|
|
30
56
|
pre {
|
@@ -38,6 +64,7 @@ pre {
|
|
38
64
|
width: 100%;
|
39
65
|
top: 0px;
|
40
66
|
background: #FFF;
|
67
|
+
font-family: Arial;
|
41
68
|
}
|
42
69
|
|
43
70
|
.article, .main {
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: paloma-jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ffyud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -34,6 +34,7 @@ files:
|
|
34
34
|
- LICENSE.txt
|
35
35
|
- README.md
|
36
36
|
- _config.yml
|
37
|
+
- _includes/footer.html
|
37
38
|
- _includes/header.html
|
38
39
|
- _includes/nav.html
|
39
40
|
- _layouts/default.html
|
@@ -42,6 +43,8 @@ files:
|
|
42
43
|
- _sass/_rouge-highlighting.scss
|
43
44
|
- _sass/_theme.scss
|
44
45
|
- _sass/paloma-jekyll.scss
|
46
|
+
- assets/fonts/EBGaramond-Bold.ttf
|
47
|
+
- assets/fonts/EBGaramond-Regular.ttf
|
45
48
|
- assets/manifest.json
|
46
49
|
- assets/styles.scss
|
47
50
|
homepage: https://github.com/Ffyud/paloma-jekyll
|