File tree Expand file tree Collapse file tree 2 files changed +11
-9
lines changed
Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,8 @@ <h1 class="h0-mktg lh-condensed text-center mb-3">{{ page.title }}</h1>
2323 </ div >
2424 </ nav >
2525 < div class ="col-sm-10 mx-auto lh-none cover-img ">
26- < img src ="{{ site.baseurl }}/assets/images/illos/{{ page.class }}.svg " alt ="{{ page.title }} ">
26+ {% assign illo = page.class | default: 'default' %}
27+ < img src ="{{ site.baseurl }}/assets/images/illos/{{ illo }}.svg " alt ="{{ page.title }} ">
2728 </ div >
2829 </ div >
2930</ header >
@@ -49,7 +50,8 @@ <h2 class="h2-mktg">{{ t.article.related_guides }}</h2>
4950 < a href ="{{ article.url | relative_url }} " class ="guide-cover {{ article.class }} Box height-full d-block ">
5051
5152 < div class ="lh-none guide-cover-img text-center pt-4 ">
52- < img src ="{{ site.baseurl }}/assets/images/illos/{{ article.class }}.svg " class =""
53+ {% assign r_illo = article.class | default: 'default' %}
54+ < img src ="{{ site.baseurl }}/assets/images/illos/{{ r_illo }}.svg " class =""
5355 alt ="{{ article.title }} illustration ">
5456 </ div >
5557
You can’t perform that action at this time.
0 commit comments