paloma-jekyll 0.1.0 → 0.2.3

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: 51fe195ae545a16af675b9546c79d2a108c40cfb5be95b239661b69bb686551f
4
- data.tar.gz: 86efef01ed943e5e37f5cd690300dc16173a609846f6ff608a2482d912c59023
3
+ metadata.gz: 7b52b4384c8ea3cec35a22e889a732917e06e26317b3966c8133e69064bda269
4
+ data.tar.gz: ffa6e904341a519629019c8bb293ce137c964ce7cae04088bdd9d07f70a19ac7
5
5
  SHA512:
6
- metadata.gz: d42889cb0db1dd03b3b6bb2655cd1b385aedf0798531597b5ef13e0427d209a137476ccc1d043eff82de72cc0a4fa07da682de5684366af704ac0c98cd153987
7
- data.tar.gz: f1cba3993cae28c4fc9eddb4d5fbb981771e102525dcb904474c7f8acd630e6a78fea6bc7df63d7a8f004769263268f662039792792c985fc596987546c35f22
6
+ metadata.gz: a9924a435518bacfb76c3754918a6ac5e553306bf3334d7882a26527c8c56a06396a53fb53944bcf614e5ad366eaef1b61a5706027848e71cb77c8316e2b3535
7
+ data.tar.gz: 2259944f49ba4bc65259ffb18bf040fa9f621aafdc70a9152454dbfd1e5851f2f5dc07f1a8485505f3116ec9e239a91243fb7b6332c01e4d3b868141aee40de6
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'
@@ -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>
@@ -0,0 +1,6 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <div>
5
+ {{ content }}
6
+ </div>
data/_sass/_theme.scss CHANGED
@@ -1,6 +1,6 @@
1
1
  body {
2
- color: #000;
3
- background: #EEE;
2
+ color: #4A5859;
3
+ background: #FFF2EE;
4
4
  height: 100%;
5
5
  padding: 0px;
6
6
  margin: 0px;
@@ -8,13 +8,22 @@ body {
8
8
  font-size: 20px;
9
9
  }
10
10
 
11
+ h1 {
12
+ color: #C83E4D;
13
+ font-size: 3.5em;
14
+ margin: 100px 0px 100px 0px;
15
+ }
16
+
17
+ h2 {
18
+ padding: 30px 0px 15px 0px;
19
+ }
20
+
11
21
  .container {
12
22
  max-width: 600px;
13
23
  margin: 0px auto;
14
24
  }
15
25
 
16
26
  .wrap {
17
- top: 100px;
18
27
  position: relative;
19
28
  }
20
29
 
@@ -28,12 +37,11 @@ pre {
28
37
  z-index: 900;
29
38
  width: 100%;
30
39
  top: 0px;
31
- // position: fixed;
40
+ background: #FFF;
32
41
  }
33
42
 
34
43
  .article, .main {
35
- padding: 15px 15px 15px 15px;
36
- border-radius: 8px;
44
+ padding: 15px 15px 115px 15px;
37
45
  }
38
46
 
39
47
  .nav { }
@@ -52,10 +60,12 @@ pre {
52
60
  display: inline-block;
53
61
  padding: 10px 10px 10px 10px;
54
62
  margin: 0px 10px 0px 0px;
55
- background: #ecff66;
56
- color: #000;
63
+ background: #C83E4D;
64
+ color: #FFF2EE;
65
+ border-radius: 4px;
66
+ box-shadow: 0px 2px 0px 0px #AA4D57;
57
67
  }
58
68
 
59
69
  .item a { text-decoration: none; color: inherit;}
60
70
  .item--nav {}
61
- .item--current { color: rgb(0, 0, 0);}
71
+ .item--current { }
@@ -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.0
4
+ version: 0.2.3
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-23 00:00:00.000000000 Z
11
+ date: 2021-12-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -37,10 +37,12 @@ files:
37
37
  - _includes/header.html
38
38
  - _includes/nav.html
39
39
  - _layouts/default.html
40
+ - _layouts/home.html
40
41
  - _layouts/post.html
41
42
  - _sass/_rouge-highlighting.scss
42
43
  - _sass/_theme.scss
43
44
  - _sass/paloma-jekyll.scss
45
+ - assets/manifest.json
44
46
  - assets/styles.scss
45
47
  homepage: https://github.com/Ffyud/paloma-jekyll
46
48
  licenses:
@@ -64,5 +66,5 @@ requirements: []
64
66
  rubygems_version: 3.2.32
65
67
  signing_key:
66
68
  specification_version: 4
67
- summary: Paloma Jekyll is clean theme for personal websites.
69
+ summary: Paloma Jekyll is a utilitarian theme for publishing your articles.
68
70
  test_files: []