jekyll-theme-minimalistic 0.3.8 → 0.3.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f7e801169ce635833d4f7b887ad200741362d8a5d6e605cded22d400a0d2de18
4
- data.tar.gz: 3301117d2a8c789baf01ca1fdb1af570db95644523356ca59f90ae03d89d6190
3
+ metadata.gz: 01af061a9ce54dbc034ccec8cce434a0b9731ab116047d23cca53223c63ae809
4
+ data.tar.gz: 5e7348dfdd35b3f285db18a22efb5e796f8d721c2ed600582fdc4c80f3faa722
5
5
  SHA512:
6
- metadata.gz: f7b2794d49e88481023d2b41036cf4f3e6876306be463ecf91f5c4c3ca2eb3a86f1d39d036f627abacca6e71a3f111d2e3896f52ababbbf028fc399d3a092b49
7
- data.tar.gz: a75fe124866c05d69e9299e35fa5ad2030a8f6b5b7983b50834ded0f6cacbe3ce8b88ec95a660544b35a540ad883e9095b75ad02501fc5c25f50ec55c7787920
6
+ metadata.gz: 418674fb1ffc04ca5edbb33959444cfb20bbabd4fc7ec3481e1f9c2c8d7f0c044e6b9e69d1332bebee9801df0b5295cd53777132111291f72591718f7422b1f8
7
+ data.tar.gz: f2abce246be070fe47c06f9b7ed2799ed1b338ee9b6c67d666926827f6c8b896f118bcb1ec5abe09e23ebadbde4a006661055beab93490d88436f61ace4939e0
@@ -1,10 +1,15 @@
1
- <div class="header-title">
1
+ {% if site.logo %}
2
+ <div class="header-title">
3
+ {% include header-title.html %}
4
+ </div>
5
+ <div class="header-title-mobile">
6
+ <section>
7
+ {% include header-title.html %}
8
+ </section>
9
+ </div>
10
+ {% else %}
2
11
  {% include header-title.html %}
3
- </div>
4
-
5
- <div class="header-title-mobile">
6
- {% include header-title-mobile.html %}
7
- </div>
12
+ {% endif %}
8
13
 
9
14
  <p>{{ site.description | default: site.github.project_tagline }}</p>
10
15
 
@@ -334,7 +334,7 @@ hr {
334
334
  display: block;
335
335
  }
336
336
 
337
- h1, h2, h3, h4, h5, h6 {
337
+ h2, h3, h4, h5, h6 {
338
338
  margin: 15px 0 15px;
339
339
  }
340
340
 
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.8
4
+ version: 0.3.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vaibhav Vikas
@@ -127,7 +127,6 @@ files:
127
127
  - _includes/footer.html
128
128
  - _includes/head-custom-google-analytics.html
129
129
  - _includes/head-custom.html
130
- - _includes/header-title-mobile.html
131
130
  - _includes/header-title.html
132
131
  - _includes/header.html
133
132
  - _includes/mobile.html
@@ -1,15 +0,0 @@
1
- <section>
2
- {% if site.logo %}
3
- <img class="logo" src="{{ site.logo | relative_url }}" alt="Logo">
4
- {% endif %}
5
-
6
- {% if site.blank_title %}
7
- <h1>{{ site.title | default: site.github.repository_name }}</h1>
8
- {% else %}
9
- <h1>{{ site.title | default: site.github.repository_name }}</h1>
10
- {% endif %}
11
-
12
- {% if site.email %}
13
- <p class="addr"><i class="fa-solid fa-envelope"></i>&nbsp;<a href="mailto:{{site.email}}">{{ site.email }}</a></p>
14
- {% endif %}
15
- </section>