tw.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {% assign twUrl = "https://twitter.com/" | append: include.tweet.username | append: "/status/" | append: include.tweet.id %}
  2. <article class="bd-tw">
  3. <header class="bd-tw-header">
  4. <a class="bd-tw-author" href="{{ twUrl }}" target="_blank">
  5. <figure class="bd-tw-avatar">
  6. <img class="lazyload" src="{{ include.tweet.avatar }}">
  7. </figure>
  8. <div class="bd-tw-name">
  9. <strong class="bd-tw-fullname">
  10. {{ include.tweet.fullname }}
  11. </strong>
  12. <span class="bd-tw-username">
  13. @{{ include.tweet.username }}
  14. </span>
  15. </div>
  16. </a>
  17. </header>
  18. <div class="bd-tw-content">
  19. {{ include.tweet.content }}
  20. </div>
  21. <p class="bd-tw-date">
  22. <a href="{{ twUrl }}" target="_blank">
  23. {{ include.tweet.date }}
  24. </a>
  25. </p>
  26. <ul class="Tweet-actions">
  27. <li class="Tweet-action">
  28. <a class="TweetAction TweetAction--replyEdge web-intent" href="https://twitter.com/intent/tweet?in_reply_to={{ include.tweet.id }}">
  29. <div class="Icon Icon--reply TweetAction-icon Icon--replyEdge"></div>
  30. </a>
  31. </li>
  32. <li class="Tweet-action Tweet-action--retweet">
  33. <a class="TweetAction TweetAction--retweetEdge web-intent" href="https://twitter.com/intent/retweet?tweet_id={{ include.tweet.id }}">
  34. <div class="Icon Icon--retweet TweetAction-icon Icon--retweetEdge"></div>
  35. {% if include.tweet.retweets != 0 %}
  36. <span class="TweetAction-stat">
  37. {{ include.tweet.retweets }}
  38. </span>
  39. {% endif %}
  40. </a>
  41. </li>
  42. <li class="Tweet-action Tweet-action--heart">
  43. <a class="TweetAction TweetAction--heartEdge web-intent" href="https://twitter.com/intent/like?tweet_id={{ include.tweet.id }}&amp;ref_src=twsrc%5Etfw&amp;ref_url=http%3A%2F%2Fbulma.io%2F&amp;original_referer=http%3A%2F%2Fbulma.io%2F&amp;tw_i={{ include.tweet.id }}&amp;tw_p=tweetembed" target="_blank">
  44. <div class="Icon Icon--heartEdge TweetAction-icon Icon--heartEdge"></div>
  45. {% if include.tweet.hearts != 0 %}
  46. <span class="TweetAction-stat">
  47. {{ include.tweet.hearts }}
  48. </span>
  49. {% endif %}
  50. </a>
  51. </li>
  52. </ul>
  53. </article>