123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {% assign twUrl = "https://twitter.com/" | append: include.tweet.username | append: "/status/" | append: include.tweet.id %}
- <article class="bd-tw">
- <header class="bd-tw-header">
- <a class="bd-tw-author" href="{{ twUrl }}" target="_blank">
- <figure class="bd-tw-avatar">
- <img class="lazyload" src="{{ include.tweet.avatar }}">
- </figure>
- <div class="bd-tw-name">
- <strong class="bd-tw-fullname">
- {{ include.tweet.fullname }}
- </strong>
- <span class="bd-tw-username">
- @{{ include.tweet.username }}
- </span>
- </div>
- </a>
- </header>
- <div class="bd-tw-content">
- {{ include.tweet.content }}
- </div>
- <p class="bd-tw-date">
- <a href="{{ twUrl }}" target="_blank">
- {{ include.tweet.date }}
- </a>
- </p>
- <ul class="Tweet-actions">
- <li class="Tweet-action">
- <a class="TweetAction TweetAction--replyEdge web-intent" href="https://twitter.com/intent/tweet?in_reply_to={{ include.tweet.id }}">
- <div class="Icon Icon--reply TweetAction-icon Icon--replyEdge"></div>
- </a>
- </li>
- <li class="Tweet-action Tweet-action--retweet">
- <a class="TweetAction TweetAction--retweetEdge web-intent" href="https://twitter.com/intent/retweet?tweet_id={{ include.tweet.id }}">
- <div class="Icon Icon--retweet TweetAction-icon Icon--retweetEdge"></div>
- {% if include.tweet.retweets != 0 %}
- <span class="TweetAction-stat">
- {{ include.tweet.retweets }}
- </span>
- {% endif %}
- </a>
- </li>
- <li class="Tweet-action Tweet-action--heart">
- <a class="TweetAction TweetAction--heartEdge web-intent" href="https://twitter.com/intent/like?tweet_id={{ include.tweet.id }}&ref_src=twsrc%5Etfw&ref_url=http%3A%2F%2Fbulma.io%2F&original_referer=http%3A%2F%2Fbulma.io%2F&tw_i={{ include.tweet.id }}&tw_p=tweetembed" target="_blank">
- <div class="Icon Icon--heartEdge TweetAction-icon Icon--heartEdge"></div>
- {% if include.tweet.hearts != 0 %}
- <span class="TweetAction-stat">
- {{ include.tweet.hearts }}
- </span>
- {% endif %}
- </a>
- </li>
- </ul>
- </article>
|