Skip to content

Instantly share code, notes, and snippets.

@ankedsgn
Last active November 19, 2018 16:32
Show Gist options
  • Save ankedsgn/0d811994d82811c524e96cb36d039e89 to your computer and use it in GitHub Desktop.
Save ankedsgn/0d811994d82811c524e96cb36d039e89 to your computer and use it in GitHub Desktop.
{# extra supernested lookup table #}
{% set personinfo = {
'1198' : {
'color' : '#ff0099',
'number' : '9',
'title' : 'My fingers are cold',
'portraitsrc' : 'portrait_piet.png',
'imgsrc' : 'image_piet.png'
},
'74' : {
'color' : '#ff9900',
'number' : '7',
'title' : 'Lets take over the world',
'portraitsrc' : 'portrait_amy.png',
'imgsrc' : 'image_amy.png'
}
}
%}
{# uitschrijven #}
{{ dump(personinfo.1198.color) }}
{# Showing the correct icons + link #}
{% set iconlinks = {
'Public-Domain' : 'https://creativecommons.org/publicdomain/mark/1.0/',
'CC0' : 'https://creativecommons.org/publicdomain/zero/1.0/',
'CC-BY' : 'https://creativecommons.org/licenses/by/1.0/',
'CC-BY-SA' : 'https://creativecommons.org/licenses/by-sa/1.0/',
'CC-BY-NC' : 'https://creativecommons.org/licenses/by-nc/1.0/',
'CC-BY-NC-SA' : 'https://creativecommons.org/licenses/by-nc-sa/1.0/'
}
%}
{# the attribution_license is set as one of the above abbreviations in the contenttype, for instance: 'CC-BY' #}
<a href="{{ iconlinks[attribution_license] }}">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment