aacinfo-theme 0.1.3 → 0.1.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 +8 -8
- data/_includes/theme-menu.html +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
Y2U2MGMwYTk0MDEwMTQyYmZjMmM5ODQ5NTk3MTZjOThhNjcwNGI5NQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MTUzMTllNjgzZDIyYTQ1Y2NkYjAzNTZkMmI5NmU1ZmIzZWEyMWQzZg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MTk4Njk5ZGU3MDc1OGNiMWY3MzBkNGY0OTMzNTMxMzkwYmFlM2FlYTdkZWFh
|
|
10
|
+
NWU4YWEyYWU4ODM2ZWU1YWQwNTM1OTUxYTcyMTNmOTYwNjQ1Y2RjZjIxOGUy
|
|
11
|
+
MjBiY2NiMmY3ZmI5NDkyZTIxOWJhNDEwZWM3YWI0MDgyY2ZlNzE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NzQyOTY1ODk5OWY0NzY4MWMxNzVhODAxM2JhOGRiNGQxYzI1ZjQyZGVjMmU4
|
|
14
|
+
NjFlMTEwMWFkZGIzYjRhODU1NjA2ZGNkYjQwMGI0ZWIzM2QzMWM3Zjg3YTI2
|
|
15
|
+
ZGVmYzJlOTExODBjZjJjZmYzMzEzNzI5MmNkYmI5M2E2N2RkY2Y=
|
data/_includes/theme-menu.html
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<div id="header">
|
|
2
|
-
<div class="container">
|
|
2
|
+
<div class="container">
|
|
3
3
|
<div class="logo">
|
|
4
|
-
<a href="/"><img src="assets/images/logo-1.png" width="200px" alt=""></a>
|
|
4
|
+
<a href="/"><img src="{% if site.header-image %}{{site.header-image}}{% else %}assets/images/logo-1.png{% endif %}" width="200px" alt=""></a>
|
|
5
5
|
</div>
|
|
6
6
|
<div id="nav">
|
|
7
7
|
<a class="menu_res"><span></span><span></span><span></span></a>
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
{% assign pages_list = site.pages | sort:"url" %}
|
|
11
11
|
{% for node in pages_list %}
|
|
12
12
|
{% if node.title != null %}
|
|
13
|
-
|
|
13
|
+
|
|
14
14
|
{% if node.ignoreMenu != true %}
|
|
15
15
|
<li class="{% if page.url == node.url %} active{% endif %}"><a href="{{node.url}}">{{node.title}}</a></li>
|
|
16
16
|
{% endif %}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
</div>
|
|
21
21
|
</div>
|
|
22
22
|
</div>
|
|
23
|
-
</div>
|
|
23
|
+
</div>
|