summaryrefslogtreecommitdiff
path: root/app/views/twitter/_index.html.erb
blob: 9825afa1236920a26a97d6e870f05ef77689cfc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<% unless Rails.application.secrets.twitter['enabled'] == false %>
  <div class=twitter>
      <div class="twitter_header">
        Tweets by <%= @twitter_name %></p>
      </div>
    <!-- <p><a href="/followers"> You have <%= @num_followers %> followers.</a></p> -->
    <% @tweets.each do |e| %>
      <div class=tweets>
          <div class="tweets_pic twitter-image-frame"><%= image_tag("team-loadtocode-Loading_icon.gif") %></div>
          <!-- <img class="tweets_pic"></img> -->
        <div class=tweets_name>
          @<%= @twitter_screen_name %>
        </div>
        <div class=tweet_text>
          <%= " #{e.text}" %>
        </div>
        <div class=text_date>
          <%= @tweet_time %> <% t = e.created_at%> <%="#{t.strftime("%m/%d/%Y")}"%>
        </div>
      </div>
    <% end %>
      <div class="twitter_footer">
        To prevent leakage no links are displayed. For more information visit @<%= @twitter_name %> on twitter.com.</p>
      </div>
    </div>
  <% end %>