Update cardv2 to support commas in labels

This commit is contained in:
nitrohorse 2019-08-17 11:04:15 -07:00
parent 23487106c2
commit 541631cab2
No known key found for this signature in database
GPG Key ID: 6F3175557E766CBF
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
<img src="{{include.image}}" height="120" width="120" class="panel-pic" alt="{{include.title}}">
{{include.description}}
{% if include.labels %}
{% assign labels = include.labels | replace:", ", "," | split:"," %}
{% assign labels = include.labels | split:";" %}
{% for label in labels %}
{% assign label_data = label | split:":" %}
{% assign color = label_data[0] %}

View File

@ -23,7 +23,7 @@ ios=""
title="Wire"
image="/assets/img/tools/wire.png"
description="A free software End-to-End Encrypted chatting application that supports instant messaging, voice, and video calls. Full source code is available."
labels="warning:<a href=//www.vice.com/en_us/article/gvzw5x/secure-messaging-app-wire-stores-everyone-youve-ever-contacted-in-plain-text>Warning</a>:Wire stores some plaintext metadata about its users on their servers. This data includes users' lists of connections and conversations.,success:VoIP"
labels="warning:<a href=//www.vice.com/en_us/article/gvzw5x/secure-messaging-app-wire-stores-everyone-youve-ever-contacted-in-plain-text>Warning</a>:Wire stores some plaintext metadata about its users on their servers. This data includes profile names, profile pictures, usernames, and users' lists of connections and conversations.;success:VoIP"
website="https://wire.com/"
forum="https://forum.privacytools.io/t/discussion-wire/750"
github="https://github.com/wireapp/"