<% if (plugins.tweets) { %>

Latest tweets

<% if (plugins.tweets.error) { %>
<%= plugins.tweets.error.message %>
<% } else { %>
<% if (plugins.tweets.profile?.verified) { %> <% } else { %> <% } %> <%= plugins.tweets.username %> <% if (!plugins.tweets.profile) { %> : twitter username not found <% } %>
<% if (plugins.tweets.profile) { %> <% if (plugins.tweets.list.length) { %> <% for (const {text, createdAt, attachments} of plugins.tweets.list) { %>
<%- text %> <% if (attachments) { %>
<% for (const {image, title, description, website} of attachments) { %>
<% if (title) { %>
<%= title %>
<%= description %>
<% } %>
<% } %>
<% } %>
<%= createdAt %>
<% } %> <% } else { %>
No recent tweets
<% } %> <% } %> <% } %>
<% } %>