From 127df513839d1602903c088ec9bb653e4c13e846 Mon Sep 17 00:00:00 2001 From: Ivor Berry Date: Wed, 17 Apr 2024 09:54:13 -0400 Subject: [PATCH] filter Custom Vision from exercise list --- index.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/index.md b/index.md index 3cbc46a..a3efa80 100644 --- a/index.md +++ b/index.md @@ -10,6 +10,11 @@ The following exercises are designed to support the modules on Microsoft Learn. {% assign labs = site.pages | where_exp:"page", "page.url contains '/Instructions/Exercises'" %} + +{% if activity.lab.title contains "Azure AI Custom Vision" %} + {% continue %} +{% endif %} + {% for activity in labs %} -- [{{ activity.lab.title }}]({{ site.github.url }}{{ activity.url }}) + - [{{ activity.lab.title }}]({{ site.github.url }}{{ activity.url }}) {% endfor %}