paloma-jekyll 0.1.1 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 898eecf9ac94fa53d3ab349b5c793ac9d6d67868df8703c09ea53f315ee14c1e
4
- data.tar.gz: bc06ceab2958141adb1bbb7d6143f10326ca9a84832c477b088af396df885646
3
+ metadata.gz: 72d99484c308c574181c5607da1281b9dd7884a89fc0a906678265cf42d011a2
4
+ data.tar.gz: 4a0c4298cf20adb145d0edbefa893595ade9234f5e0dc61160cb70bb18677bf6
5
5
  SHA512:
6
- metadata.gz: 78ec66a40ae334a08bdd83d06578b6f67075e528e14339ab6bb1fdeffc0180bbab30872458af1ed52d45ea540a5932566b715e3f75f460047a5f04f2c05de7aa
7
- data.tar.gz: eaad2b2674c2615bfc7efa4f3e666792d8ecaf9a4093325e87722fa288f6547c58e0b04de694afd2496b976b0db8b70bf0fee1b25185646fbe1ac7634cf6e105
6
+ metadata.gz: 203511974ed909386e8b1d85c585723a338c055d30ee0435f5e9ebe3fe632b9ec1416f178185b6204c88d0054d8cc3eba5b457cdab34bac2496645099057b0c7
7
+ data.tar.gz: a45efc8989fb84831ed5b961d89eaa2500e51aaee43350f5eaafab554593016049a198ef5d2a1bd442f8d4a28d12e953c7124ef58bfdd4824b14c78540c51a1f
data/_config.yml CHANGED
@@ -7,4 +7,21 @@ navigation_header:
7
7
  - title: home
8
8
  url: /
9
9
  - title: docs
10
- url: /docs
10
+ url: /docs/
11
+
12
+ logo: ""
13
+ title: "Paloma Jekyll"
14
+ short_name: ""
15
+ description: "Paloma Jekyll is a utilitarian theme for publishing your articles. "
16
+ lang: "en-US"
17
+ url: ""
18
+
19
+ favicons:
20
+ 16: '/assets/logos/logo@16px.png'
21
+ 32: '/assets/logos/logo@32px.png'
22
+ 96: '/assets/logos/logo@96px.png'
23
+ 120: '/assets/logos/logo@120px.png'
24
+ 144: '/assets/logos/logo@144px.png'
25
+ 180: '/assets/logos/logo@180px.png'
26
+ 512: '/assets/logos/logo@512px.png'
27
+ 1024: '/assets/logos/logo@1024px.png'
@@ -0,0 +1,5 @@
1
+ <footer class="footer">
2
+ <div class="container">
3
+ <!-- empty -->
4
+ </div>
5
+ </footer>
@@ -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>{{ site.title }}</title>
6
11
  </head>
7
12
 
8
13
  <body>
@@ -15,6 +20,8 @@
15
20
  </div>
16
21
  </div>
17
22
  </div>
23
+
24
+ {% include footer.html %}
18
25
  </body>
19
26
  </html>
20
27
 
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,21 +1,56 @@
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
- color: #000;
3
- background: #EEE;
14
+ color: #4A5859;
15
+ background: #FFF;
4
16
  height: 100%;
5
17
  padding: 0px;
6
18
  margin: 0px;
7
- font-family: monospace;
19
+ font-family: 'Garamond', serif;
8
20
  font-size: 20px;
9
21
  }
10
22
 
23
+ h1 {
24
+ color: #C83E4D;
25
+ font-size: 3.5em;
26
+ font-weight: bold;
27
+ margin: 100px 0px 100px 0px;
28
+ }
29
+
30
+ h2 {
31
+ padding: 30px 0px 15px 0px;
32
+ }
33
+
34
+ .article-date {
35
+ color: #936167;
36
+ }
37
+
11
38
  .container {
12
39
  max-width: 600px;
13
40
  margin: 0px auto;
14
41
  }
15
42
 
16
43
  .wrap {
17
- top: 100px;
18
44
  position: relative;
45
+ background: #FFF2EE;
46
+ }
47
+ .wrap a {
48
+ text-decoration: underline;
49
+ color: inherit;
50
+ }
51
+
52
+ .footer {
53
+ height: 150px;
19
54
  }
20
55
 
21
56
  pre {
@@ -28,11 +63,12 @@ pre {
28
63
  z-index: 900;
29
64
  width: 100%;
30
65
  top: 0px;
66
+ background: #FFF;
67
+ font-family: Arial;
31
68
  }
32
69
 
33
70
  .article, .main {
34
- padding: 15px 15px 15px 15px;
35
- border-radius: 8px;
71
+ padding: 15px 15px 115px 15px;
36
72
  }
37
73
 
38
74
  .nav { }
@@ -51,10 +87,12 @@ pre {
51
87
  display: inline-block;
52
88
  padding: 10px 10px 10px 10px;
53
89
  margin: 0px 10px 0px 0px;
54
- background: #ecff66;
55
- color: #000;
90
+ background: #C83E4D;
91
+ color: #FFF2EE;
92
+ border-radius: 4px;
93
+ box-shadow: 0px 2px 0px 0px #AA4D57;
56
94
  }
57
95
 
58
96
  .item a { text-decoration: none; color: inherit;}
59
97
  .item--nav {}
60
- .item--current { color: rgb(0, 0, 0);}
98
+ .item--current { }
Binary file
Binary file
@@ -0,0 +1,27 @@
1
+ ---
2
+ permalink: "manifest.json"
3
+ layout: null
4
+ ---
5
+
6
+ {
7
+ "short_name": "{{ site.short_name | default: site.title | replace: ' ', '' }}",
8
+ "name": "{{ site.title }}",
9
+ "description": "{{ site.description }}",
10
+ {% if site.favicons -%}
11
+ "icons": [
12
+ {% for icon in site.favicons -%}
13
+ {
14
+ "src": "{{ icon[1] | relative_url }}",
15
+ "sizes": "{{ icon[0] }}x{{ icon[0] }}"
16
+ }{% if forloop.last != true %},{% endif %}
17
+ {% endfor %}
18
+ ],
19
+ {% endif -%}
20
+ "start_url": "/",
21
+ "display": "standalone",
22
+ "orientation": "portrait-primary",
23
+ "lang": "{{ site.lang | default: "en-US" }}",
24
+ "theme_color": "{{ site.manifest.theme_color | default: '#24292e' }}",
25
+ "background_color": "{{ site.manifest.background_color | default: '#ffffff' }}"
26
+ }
27
+
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.1.1
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-24 00:00:00.000000000 Z
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,9 @@ 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
48
+ - assets/manifest.json
45
49
  - assets/styles.scss
46
50
  homepage: https://github.com/Ffyud/paloma-jekyll
47
51
  licenses: