Initial commit
This commit is contained in:
18
assets/data/locations.csv
Normal file
18
assets/data/locations.csv
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
# find all unique locations used in the metadata
|
||||
#
|
||||
# Requires CB's array_count_uniq.rb plugin!
|
||||
---
|
||||
{%- if site.data.theme.locations-fields -%}
|
||||
{%- assign items = site.data[site.metadata] | where_exp: 'item','item.objectid' -%}
|
||||
{%- assign locations-fields = site.data.theme.locations-fields | split: ";" -%}
|
||||
{%- assign places = "" -%}
|
||||
{%- for c in locations-fields -%}
|
||||
{% assign new = items | map: c | join: ";" %}
|
||||
{% assign places = places | append: ";" | append: new %}
|
||||
{%- endfor -%}
|
||||
{%- assign uniqPlaces = places | downcase | split: ";" | array_count_uniq -%}
|
||||
location,count,link
|
||||
{% for s in uniqPlaces %}"{{ s[0] }}",{{ s[1] }},"{{ s[0] | url_param_escape | prepend: '/browse.html#' | absolute_url }}"
|
||||
{% endfor %}
|
||||
{%- endif -%}
|
||||
|
Can't render this file because it contains an unexpected character in line 8 and column 73.
|
Reference in New Issue
Block a user