jekyll-theme 1.4.2 → 1.4.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: de306299793dbc33a9eeaed6c12d2dca10d10e32bae5a43f37aed6b4edbe0244
4
- data.tar.gz: 524f56988f9d0639489ffb4b23f6efd06310f108015eb9cfa55cfebddd8df6be
3
+ metadata.gz: 67a77bc0eb88db3e158cddf9d25e60f3250d23f23e4ff13dba9d3aa0d9ca20b6
4
+ data.tar.gz: 59b621b57d8c06647f627126b92ebc7f2bbe07c202e8e473a21369ec4a81b483
5
5
  SHA512:
6
- metadata.gz: fc05a482ed86506bb7da443af30c61d16adb77d53033e37d2e39e35f479ecef2ceadb40831c6c95312c4283489da2e3f978544f4a2affa7868e423f200d3dc49
7
- data.tar.gz: 15dc20fad662e1ed458dc6422c020462284a1e63ccd4e9a766d9b6bd8d93539b3bd8b381322e04cbcfa128e4ee5a41ff1e91ed440013aab073c05d3f8aa1f29d
6
+ metadata.gz: c0c5a715cb6ad4626b1febb4b241566aec9c924f6ad022a0386c226ba2feb3976fbcd362845ddbc7913bbb15075b78bdc16a81a36ea0f1ad1065ac284874cab4
7
+ data.tar.gz: 99ee41aeebcb3e44a80ea44ab85b39ac74bb22b41119a1ddc9f13ed9c2bbe9f825ba0a714c89b76226f0c5b67260bdf23fa74a2e070469c22c1ef7d82dcf0a3a
@@ -1 +1,10 @@
1
- {{ content }}
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>{{ page.title }}</title>
6
+ </head>
7
+ <body>
8
+ {{ content }}
9
+ </body>
10
+ </html>
data/_layouts/main.html CHANGED
@@ -1,13 +1,3 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
-
5
- <div class="home">
6
- {%- if page.title -%}
7
- <h1 class="page-heading">{{ page.title }}</h1>
8
- {%- endif -%}
9
-
10
- <p>
11
- example
12
- </p>
13
- </div>
data/_layouts/post.html CHANGED
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sohee
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-23 00:00:00.000000000 Z
11
+ date: 2023-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -62,7 +62,6 @@ files:
62
62
  - LICENSE.txt
63
63
  - README.md
64
64
  - _layouts/default.html
65
- - _layouts/index.html
66
65
  - _layouts/main.html
67
66
  - _layouts/page.html
68
67
  - _layouts/post.html
data/_layouts/index.html DELETED
@@ -1,31 +0,0 @@
1
- ---
2
- layout: default
3
- ---
4
-
5
- <div class="home">
6
- {%- if page.title -%}
7
- <h1 class="page-heading">{{ page.title }}</h1>
8
- {%- endif -%}
9
-
10
- {%- if site.category.CATEGORY > 0 -%}
11
- <!-- <h2 class="post-list-heading">{{ page.list_title | default: "Writeups" }}</h2> -->
12
- <ul class="post-list">
13
- {%- for post in site.category.CATEGORY -%}
14
- <li>
15
- {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
16
- <span class="post-meta">{{ post.date | date: date_format }}</span>
17
- <h3>
18
- <a class="post-link" href="{{ post.url | relative_url }}">
19
- {{ post.title | escape }}
20
- </a>
21
- </h3>
22
- {%- if site.show_excerpts -%}
23
- {{ post.excerpt }}
24
- {%- endif -%}
25
- </li>
26
- {%- endfor -%}
27
- </ul>
28
- {%- endif -%}
29
- </div>
30
-
31
- {{ content }}