landing-page-gem 0.3.7 → 0.3.8
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/_config.yml +1 -1
- data/_includes/navbar.html +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb14d759e5cff5cba38e6c98b7b086ea0819ae4796d40a345c18b1fe65856331
|
4
|
+
data.tar.gz: 2f975b4af1bbcba33eb913d0c92cde5333d21c7cd9eb10a5af9cc651e50d42ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1175a1ad565f67849d303c3b022c11512efc9c0e4ab639a6d7f67caae1869d9993265481114540204408cec80f756ebe6b58e87142d9ea256abc6f4bb2e002d2
|
7
|
+
data.tar.gz: eed6ab948d30238802ec0fcccbe59c941a01300261d25ae1b9af2d62a42a8f93d3383664ee9398f83ef4c311185e8112c92e40ad76af48af6e58e3a03640c9a7
|
data/_config.yml
CHANGED
@@ -4,7 +4,7 @@ site_name: Veterans
|
|
4
4
|
public-url: "https://subdomain.kcc.edu"
|
5
5
|
url: 'URL is needed for robots.txt to work properly' ## NO TRAILING SLASHES!!/<--nope
|
6
6
|
port: 3000
|
7
|
-
|
7
|
+
## contact_phone: 815-802-8888 ### Set to phone number in the `815-802-8888` format or `false` to remove the phone number from navbar. ###
|
8
8
|
timezone: America/Chicago
|
9
9
|
google-tag_key: Google Tag Manager key goes here
|
10
10
|
theme_config: true
|
data/_includes/navbar.html
CHANGED
@@ -114,8 +114,10 @@
|
|
114
114
|
</svg>
|
115
115
|
</a>
|
116
116
|
<span class="typography__phone--span">
|
117
|
+
{% if site.contact_phone != false %}
|
117
118
|
<a class="links__phone--span"
|
118
119
|
href="tel:+1{% if site.contact_phone %}{{ site.contact_phone | remove: '-' }}{% else %}8158028508{% endif %}">
|
119
120
|
{% if site.contact_phone %}{{ site.contact_phone }}{% else %}815-802-8508{% endif %}</a>
|
121
|
+
{% endif %}
|
120
122
|
</span>
|
121
123
|
</nav>
|