{% comment %} Explore More Solutions Component - Displays a grid of other solutions, excluding the current one. - Expects `site.solutions` to be populated. {% endcomment %} {% assign rs_paths = "" | split: "" %} {% assign current_path = "/" | append: page.path %} {% if page.related_solutions.one and page.related_solutions.one != current_path %}{% assign rs_paths = rs_paths | push: page.related_solutions.one %}{% endif %} {% if page.related_solutions.two and page.related_solutions.two != current_path %}{% assign rs_paths = rs_paths | push: page.related_solutions.two %}{% endif %} {% if page.related_solutions.three and page.related_solutions.three != current_path %}{% assign rs_paths = rs_paths | push: page.related_solutions.three %}{% endif %} {% if rs_paths.size > 0 %}

More Coastal Solutions

Discover our comprehensive suite of coastal engineering services designed to protect and preserve shorelines.

{% for solution_path in rs_paths %} {% assign clean_path = solution_path | remove_first: "/" %} {% assign solution = nil %} {% for s in site.solutions %} {% if s.path == clean_path or s.relative_path == clean_path %} {% assign solution = s %} {% break %} {% endif %} {% endfor %} {% if solution %}

{{ solution.title }}

{% endif %} {% endfor %}
{% endif %}