2020-10-28 13:24:35 -04:00
---
layout: single
2020-10-29 08:13:37 -04:00
title: Twitter Query - Decentralized ID
description: "Curated feed from twitter hashtags #decentralizedid #iiw #selfsovereignid "
excerpt: "Stay up to date on decentralizing digital identity topics on Twitter"
2020-10-28 13:24:35 -04:00
permalink: /twitter/
toc: false
2020-10-29 08:13:37 -04:00
header:
image: /images/DecentralizeID_Twitter.png
caption: "[@DecentralizeID](https://twitter.com/DecentralizeID)"
2020-10-28 13:24:35 -04:00
classes: wide
---
2020-10-31 16:42:28 -04:00
{% for row in site.data.ssitw103120 %}
2020-10-29 15:03:02 -04:00
< h3 > < a href = "https://twitter.com/{{ row.User }}" > @{{ row.User }}< / a > wrote at: < a href = "{{ row.Link }}" > {{ row.Time }}< / a > < / h3 >
2020-10-28 21:40:22 -04:00
< p > < sup > Likes: < a href = "{{ row.Link }}/likes" > {{ row.Favorites }}< / a > Following: < a href = "https://twitter.com/{{ row.User }}/following/" > {{ row.Following }}< / a > Followed: < a href = "https://twitter.com/{{ row.User }}/followers/" > {{ row.Followers }}< / a > {% if row.Retweets != "0" %}Retweets: < a href = "{{ row.Link }}/retweets" > {{ row.Retweets }}< / a > {% endif %} {% if row.ReplyURL != "[]" and row.ReplyURL != blank %} - < a href = "{{ row.ReplyURL }}" > Reply to< / a > {% endif %}< / sup > < / p >
2020-10-28 13:24:35 -04:00
< blockquote > {{ row.Text }}< / blockquote >
2020-10-28 20:56:49 -04:00
{% if row.Urls != "[]" %}
{% assign lnks = row.Urls | split: "," %}
{% assign urlt = row.UrlTitle | split: "," %}
{% assign urld = row.UrlDesc | split: "," %}
{% assign urli = row.UrlImg | split: "," %}
{% assign foo = 0 %}
{% for lnk in lnks %}{% assign ln = lnk | remove: "[" | remove: "]" | remove: "'" | remove: '"' %}{% assign urt = urlt[foo] | remove: "[" | remove: "]" | remove: "'" | remove: '"' | remove: 'None' %}{% assign urd = urld[foo] | remove: "[" | remove: "]" | remove: "'" | remove: '"' | remove: 'None' %}{% assign uri = urli[foo] | remove: "[" | remove: "]" | remove: "'" | remove: '"' | remove: 'None' %}
< a href = "{{ ln }}" > {% if urt != blank %}{{ urt }}{% else %}{{ ln }}{% endif %}< / a >
2020-10-29 15:03:02 -04:00
{% if urd != blank and urd != "Weve detected that JavaScript is disabled in your browser. Would you like to proceed to legacy Twitter?" %}< blockquote > {{ urd | remove: "[" | remove: "]" | remove: "'" | remove: '"' }}< / blockquote > {% endif%}
2020-10-28 20:56:49 -04:00
{% if uri != blank %}< img src = "{{ uri }}" / > {% endif%}{% assign foo = foo | plus: 1 %}
{% endfor %}
{% endif %}
2020-10-28 13:24:35 -04:00
{% assign htags = row.Hashtags | split: "', '" %}
2020-10-28 21:40:22 -04:00
{% for h in htags %}< a href = "https://twitter.com/hashtag/{{ h | remove: " [ ' " | remove: " ' ] " } } " > #{{ h | remove: "['" | remove: "']" }}< / a > {% endfor %}
2020-10-28 20:56:49 -04:00
{% if row.ImageUrls != "[]" %}
{% assign imgs = row.ImageUrls | split: "', '" %}
{% for img in imgs %}< img src = "{{ img | remove: " [ ' " | remove: " ' ] " } } " > {% endfor %}
{% endif %}
2020-10-28 13:24:35 -04:00
{% endfor %}