word-games-theme 0.8.3 → 0.8.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 +4 -4
- data/_includes/header/resultHeader.html +42 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4dfbfd3aa728608a1e06b913a3c955dc30f3d4feed24d0ffcb24ce7df5ff4dd0
|
|
4
|
+
data.tar.gz: 174c75676ad30418213582cf81ec636a070253951cdf80ac87eb65f59158ac1b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 568d30c68d6bf4707baab2ef81215713d8019a7013c3bdb8e51052b0ca1700ce21e6b663f536c22704f2b91f741ef6e7c89870b4303999293ceaa3d23e3c47a0
|
|
7
|
+
data.tar.gz: 4f34f04c02fb78b529ffb8dc3645d7f287510025424f92b383b930159771cb59d9aef2d2b6bd6739e62ecd87862d2d96565e52c049b5a7ff9c215392c2dbc862
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{% assign lang = page.lang %}
|
|
2
|
+
{% assign dataToShow = site.data.header[lang].data %}
|
|
3
|
+
{%- assign CustomColor = site.data.theme.colors -%}
|
|
4
|
+
|
|
5
|
+
<!-- header starts -->
|
|
6
|
+
<header id="resultHeader">
|
|
7
|
+
<!-- navigation startss -->
|
|
8
|
+
<nav class="navbar navbar-expand-lg navbar-dark" style="background: {{CustomColor.navbarBg}}">
|
|
9
|
+
|
|
10
|
+
<a class="navbar-brand" href="/" title="{{dataToShow.tooltip}}">
|
|
11
|
+
<img src="{{ site.favicon | relative_url }}" alt="{{site.name}}-logo" style="width:35px; height:35px;">
|
|
12
|
+
</a>
|
|
13
|
+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
|
|
14
|
+
<i class="bi bi-list bi-2x bars"></i>
|
|
15
|
+
</button>
|
|
16
|
+
|
|
17
|
+
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
18
|
+
<ul class="navbar-nav">
|
|
19
|
+
<li class="nav-item">
|
|
20
|
+
<a class="nav-link" href="/blog">Blog</a>
|
|
21
|
+
</li>
|
|
22
|
+
<li class="nav-item dropdown">
|
|
23
|
+
<a class="nav-link dropdown-toggle" id="navbarDropdown" role="button" aria-haspopup="true"
|
|
24
|
+
aria-expanded="false">
|
|
25
|
+
More
|
|
26
|
+
</a>
|
|
27
|
+
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
|
28
|
+
|
|
29
|
+
{% for item in dataToShow.more %}
|
|
30
|
+
<a class="dropdown-item" href="{{item.url}}">
|
|
31
|
+
{{item.name}}
|
|
32
|
+
</a>
|
|
33
|
+
{% endfor %}
|
|
34
|
+
|
|
35
|
+
</div>
|
|
36
|
+
</li>
|
|
37
|
+
</ul>
|
|
38
|
+
</div>
|
|
39
|
+
</nav>
|
|
40
|
+
<!-- navbar close -->
|
|
41
|
+
</header>
|
|
42
|
+
<!-- header close -->
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: word-games-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- manpreet-appscms
|
|
@@ -117,6 +117,7 @@ files:
|
|
|
117
117
|
- _includes/head/index.html
|
|
118
118
|
- _includes/header/blogHeader.html
|
|
119
119
|
- _includes/header/index.html
|
|
120
|
+
- _includes/header/resultHeader.html
|
|
120
121
|
- _includes/paginationBlogPage.html
|
|
121
122
|
- _includes/paginationPostPage.html
|
|
122
123
|
- _includes/postauthorbio.html
|