From 745b54ef97b5e0001f14193296ba81025cc5faec Mon Sep 17 00:00:00 2001 From: "Dr. Abraham Nash" <61595494+abrahamnash@users.noreply.github.com> Date: Fri, 29 Nov 2024 17:00:55 -0500 Subject: [PATCH] Update home.html --- _layouts/home.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/_layouts/home.html b/_layouts/home.html index 2d3258902a..1ef021e53d 100755 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -24,15 +24,15 @@ <div class="strip"> <div class="container pt-6 pb-6 pb-md-10"> <div class="row justify-content-start"> - {% assign limit = site.home.limit_about_features | default: 6 %} - {% for feature in site.about_features limit: limit %} + {% assign limit = site.home.limit_services | default: 6 %} + {% for service in site.services limit: limit %} <div class="col-12 col-md-4 mb-1"> - <div class="feature feature-summary"> - <div class="feature-content"> - <h2 class="feature-title"> - <a href="{{ feature.url | relative_url }}">{{ feature.title }}</a> + <div class="service service-summary"> + <div class="service-content"> + <h2 class="service-title"> + <a href="{{ service.url | relative_url }}">{{ service.title }}</a> </h2> - <p>{{ feature.excerpt | markdownify | strip_html | truncate: 100 }}</p> + <p>{{ service.excerpt | markdownify | strip_html | truncate: 100 }}</p> </div> </div> </div> @@ -40,7 +40,7 @@ <h2 class="feature-title"> </div> <div class="row justify-content-center"> <div class="col-auto"> - <a class="button button-primary" href="{{ "about" | relative_url }}">Learn More About Us</a> + <a class="button button-primary" href="{{ "services" | relative_url }}">View All Services</a> </div> </div> </div>