jekyll-theme-minimalistic 0.3.1 → 0.3.2
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 +1 -1
- data/_includes/head-custom.html +0 -1
- data/_includes/header.html +27 -0
- data/_layouts/default.html +1 -28
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 35e636d23476097f0b30bc9341812c08773ee6f950037258d61fc618492ca9e1
|
|
4
|
+
data.tar.gz: 2ecf2d2e7176219dd8c012727f26da7590054d687ea908837e44829487b845ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4686aecbe73980753d70898136639f8e303aa0b90156af3e4e64ca5150227d10a86bc3bcc41f5c7ac7d9ee0041e095fad11a9759eca8e0b6857a6075ffcbbdd4
|
|
7
|
+
data.tar.gz: a3a8f627a3264f5f25e92b948a65669ad4f259c41c1b73f5aebd86001d7a627baff7b55acb68a78cc8ab47637eba6c79a20ea624e5cf7e46b222c8fb84f8dc6d
|
data/_includes/footer.html
CHANGED
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
<p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
|
|
4
4
|
{% endif %}
|
|
5
5
|
{% endunless %}
|
|
6
|
-
<p><small>Powered by <a href="https://jekyllrb.com/">Jekyll</a> &
|
|
6
|
+
<p><small>Powered by <a href="https://jekyllrb.com/">Jekyll</a> & <a href="https://github.com/vaibhavvikas/jekyll-theme-minimalistic">Minimalistic</a></small></p>
|
data/_includes/head-custom.html
CHANGED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{% if site.logo %}
|
|
2
|
+
<img class="logo" src="{{ site.logo | relative_url }}" alt="Logo">
|
|
3
|
+
{% endif %}
|
|
4
|
+
|
|
5
|
+
{% if site.blank_title %}
|
|
6
|
+
<h1>{{ site.title | default: site.github.repository_name }}</h1>
|
|
7
|
+
{% else %}
|
|
8
|
+
<h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1>
|
|
9
|
+
{% endif %}
|
|
10
|
+
|
|
11
|
+
{% if site.email %}
|
|
12
|
+
<p class="addr"><i class="fa-solid fa-envelope"></i> <a href="mailto:{{site.email}}">{{ site.email }}</a></p>
|
|
13
|
+
{% endif %}
|
|
14
|
+
|
|
15
|
+
<p>{{ site.description | default: site.github.project_tagline }}</p>
|
|
16
|
+
|
|
17
|
+
{% unless site.hide_project_page %}
|
|
18
|
+
{% if site.github.is_project_page %}
|
|
19
|
+
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub<br><small>{{ site.github.repository_nwo }}</small></a></p>
|
|
20
|
+
{% endif %}
|
|
21
|
+
|
|
22
|
+
{% if site.github.is_user_page %}
|
|
23
|
+
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
|
|
24
|
+
{% endif %}
|
|
25
|
+
{% endunless %}
|
|
26
|
+
|
|
27
|
+
{% include sidebar.html %}
|
data/_layouts/default.html
CHANGED
|
@@ -21,34 +21,7 @@
|
|
|
21
21
|
<div class="wrapper">
|
|
22
22
|
<div class="sidebar">
|
|
23
23
|
<header>
|
|
24
|
-
{
|
|
25
|
-
<img class="logo" src="{{site.logo | relative_url}}" alt="Logo">
|
|
26
|
-
{% endif %}
|
|
27
|
-
|
|
28
|
-
{% if site.blank_title %}
|
|
29
|
-
<h1>{{ site.title | default: site.github.repository_name }}</h1>
|
|
30
|
-
{% else %}
|
|
31
|
-
<h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1>
|
|
32
|
-
{% endif %}
|
|
33
|
-
|
|
34
|
-
{% if site.email %}
|
|
35
|
-
<p class="addr"><i class="fa-solid fa-envelope"></i> <a href="mailto:{{site.email}}">{{ site.email }}</a></p>
|
|
36
|
-
{% endif %}
|
|
37
|
-
|
|
38
|
-
<p>{{ site.description | default: site.github.project_tagline }}</p>
|
|
39
|
-
|
|
40
|
-
{% unless site.hide_project_page %}
|
|
41
|
-
{% if site.github.is_project_page %}
|
|
42
|
-
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub<br><small>{{ site.github.repository_nwo }}</small></a></p>
|
|
43
|
-
{% endif %}
|
|
44
|
-
|
|
45
|
-
{% if site.github.is_user_page %}
|
|
46
|
-
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
|
|
47
|
-
{% endif %}
|
|
48
|
-
{% endunless %}
|
|
49
|
-
|
|
50
|
-
{% include sidebar.html %}
|
|
51
|
-
|
|
24
|
+
{%- include header.html -%}
|
|
52
25
|
</header>
|
|
53
26
|
<div class="sidebar-footer">
|
|
54
27
|
{%- include footer.html -%}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-minimalistic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vaibhav Vikas
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2022-07-
|
|
12
|
+
date: 2022-07-08 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: jekyll
|
|
@@ -127,6 +127,7 @@ files:
|
|
|
127
127
|
- _includes/footer.html
|
|
128
128
|
- _includes/head-custom-google-analytics.html
|
|
129
129
|
- _includes/head-custom.html
|
|
130
|
+
- _includes/header.html
|
|
130
131
|
- _includes/sidebar.html
|
|
131
132
|
- _layouts/default.html
|
|
132
133
|
- _layouts/post.html
|