Skip to content

Commit ad8371f

Browse files
authored
No audience (#17)
* no audience * bug fix * fix flag icons * card-footer * css fix * css fix
1 parent 85d66e0 commit ad8371f

File tree

3 files changed

+5
-31
lines changed

3 files changed

+5
-31
lines changed

_includes/section-navigation-tiles.html

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,10 @@
8686
{%- endfor %}
8787
{%- endif %}
8888
</div>
89-
{%- if current_page.audience or current_page.affiliations %}
89+
{%- if current_page.affiliations %}
9090
{%- assign alllogos = site.data.affiliations %}
9191
{%- assign allcountries = site.data.countries %}
9292
<div class="card-footer d-flex align-middle">
93-
{%- if current_page.affiliations %}
9493
<div class="me-3">
9594
<span class="me-2"><b><small>Affiliations:</small></b></span>
9695
{%- for affiliation in current_page.affiliations %}
@@ -116,34 +115,6 @@
116115
{%- endif %}
117116
{%- endfor %}
118117
</div>
119-
{%- endif %}
120-
{%- if current_page.audience %}
121-
<div>
122-
<span class="me-2"><b><small>Audience:</small></b></span>
123-
{%- for audience in current_page.audience %}
124-
{%- assign filter_audience = alllogos | where: "name", audience %}
125-
{%- if audience.size == 2 %}
126-
{%- assign country = audience | upcase %}
127-
{%- assign country_link = site.pages | where:"country_code",country | first %}
128-
{%- if country_link %}
129-
<a role="button" href="{{country_link.url}}" data-bs-toggle="tooltip" title="{{allcountries[country]}}" class="btn btn-sm bg-white hover-primary"><div class="flag-icon flag-icon-{{audience | downcase}} h-30px"></div></a>
130-
{%- else %}
131-
<span class="d-inline-block" tabindex="0" data-bs-toggle="tooltip" title="{{allcountries[country]}}">
132-
<button class="btn btn-sm text-dark bg-white pe-none" title="{{allcountries[country]}}"><div class="flag-icon flag-icon-{{audience | downcase}} h-30px"></div></button>
133-
</span>
134-
{%- endif %}
135-
{%- elsif audience == "ALL" %}
136-
<span class="d-inline-block" tabindex="0" data-bs-toggle="tooltip" title="All people">
137-
<button class="btn btn-sm text-dark bg-white pe-none" title="ALL"><div class="h-30px">ALL</div></button>
138-
</span>
139-
{%- elsif filter_audience %}
140-
{%- for result in filter_audience %}
141-
<a role="button" href="{{result.url}}" data-bs-toggle="tooltip" data-bs-original-title="{{affiliation}}" class="btn btn-sm bg-white hover-primary"><img alt="logo of {{result.name}}" src="{{result.image_url | relative_url }}" class="d-inline h-30px"></a>
142-
{%- endfor %}
143-
{%- endif %}
144-
{%- endfor %}
145-
</div>
146-
{%- endif %}
147118
</div>
148119
{%- endif %}
149120
</div>

0 commit comments

Comments
 (0)