mirror of
https://github.com/Decentralized-ID/decentralized-id.github.io.git
synced 2024-10-01 01:05:54 -04:00
40 lines
2.4 KiB
Markdown
40 lines
2.4 KiB
Markdown
---
|
|
layout: single
|
|
title: Twitter Query - IIW 31
|
|
description: "Curated feed from #iiw #iiw31"
|
|
excerpt: "List of posts from IIW #31"
|
|
permalink: iiw/
|
|
toc: false
|
|
header:
|
|
image: /images/DecentralizeID_Twitter.png
|
|
caption: "[@DecentralizeID](https://twitter.com/DecentralizeID)"
|
|
classes: wide
|
|
published: false
|
|
|
|
---
|
|
|
|
{% for row in site.data.iiw103120 %}
|
|
<h3><a href="https://twitter.com/{{ row.User }}">@{{ row.User }}</a> wrote at: <a href="{{ row.Link }}">{{ row.Time }}</a></h3>
|
|
<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>
|
|
<blockquote>{{ row.Text }}</blockquote>
|
|
{% 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>
|
|
{% 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%}
|
|
{% if uri != blank %}<img src="{{ uri }}"/>{% endif%}{% assign foo = foo | plus: 1 %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% assign htags = row.Hashtags | split: "', '" %}
|
|
{% for h in htags %}<a href="https://twitter.com/hashtag/{{ h | remove: "['" | remove: "']" }}">#{{ h | remove: "['" | remove: "']" }}</a> {% endfor %}
|
|
{% if row.ImageUrls != "[]" %}
|
|
{% assign imgs = row.ImageUrls | split: "', '" %}
|
|
{% for img in imgs %}<img src="{{ img | remove: "['" | remove: "']" }}">{% endfor %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|