Skip to content

Commit

Permalink
Use weighted_services on home page
Browse files Browse the repository at this point in the history
  • Loading branch information
sanujar authored Mar 29, 2022
1 parent 575d51d commit a295337
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
<div class="strip">
<div class="container pt-6 pb-6 pb-md-10">
<div class="row justify-content-start">
{% for service in site.services %}
{% assign weighted_services = site.services | sort: "weight" %}
{% for service in weighted_services %}
<div class="col-12 col-md-4 mb-1">
<div class="service service-summary">
<div class="service-content">
Expand Down

0 comments on commit a295337

Please sign in to comment.