From 11032f3120b1009830154db2fe8e25df8edf9aa0 Mon Sep 17 00:00:00 2001 From: Chris Kim <42885441+chriskim2311@users.noreply.github.com> Date: Wed, 4 Dec 2024 10:40:36 -0800 Subject: [PATCH] VACMS-18521 Remove tech debt detail-page.html (#2370) --- .../components/navigation-links-list.html | 71 ------------------- src/site/includes/detail-page.html | 49 ------------- src/site/layouts/page-breadcrumbs.html | 3 - 3 files changed, 123 deletions(-) delete mode 100644 src/site/components/navigation-links-list.html delete mode 100644 src/site/includes/detail-page.html diff --git a/src/site/components/navigation-links-list.html b/src/site/components/navigation-links-list.html deleted file mode 100644 index 7599d4e062..0000000000 --- a/src/site/components/navigation-links-list.html +++ /dev/null @@ -1,71 +0,0 @@ -{% comment %} -===================== -Links List -===================== - -Used for: -- lists of links to content within a particular channel or section. -- lists of Related Links when the `isRelated` property is set in the -include tag, e.g.: -{% include "src/site/components/navigation-links-list.html" with isRelated = true %} - -NOTE: Can also pass majorlinks or relatedlinks in as a variable on the include -tag, e.g.: - - {% include "src/site/components/navigation-links-list.html" with majorlinks = anothergroupofmajorlinks %} - -In this example, `anothergroupofmajorlinks` is a group of links that uses the -same YAML structure as `majorlinks`, but with a different group name. Pass the -different group name as the value for the `majorlinks` variable of the include. - -See https://help.shopify.com/themes/liquid/tags/theme-tags#include -{% endcomment %} - -{% if isRelated == true %} -{% assign linklist = relatedlinks %} -{% else %} -{% assign linklist = majorlinks %} -{% endif %} - -