docbrown/app/views/articles/_about_author.html.erb
2018-02-28 16:11:08 -05:00

28 lines
1.1 KiB
Text

<div class="about-the-author" id="about-the-author">
<div class="left-column">
<a href="/<%= @user.username %>">
<img class="profile-pic" src="<%= ProfileImage.new(@user).get(180) %>" alt="<%= @user.username %> profile" />
</a>
</div>
<div class="main-content">
<h4><a href="/<%= @user.username %>"><%= @user.name %></a><%= follow_button(@user) %></h4>
<p><%= @user.summary %></p>
<p class="social">
<% if @user.twitter_username.present? %>
<a href="http://twitter.com/<%= @user.twitter_username %>" target="_blank" rel="noopener">
<%= icon("twitter","22") %> <%= @user.twitter_username %>
</a>
<% end %>
<% if @user.github_username.present? %>
<a href="http://github.com/<%= @user.github_username %>" target="_blank" rel="noopener">
<%= icon("github","22") %> <%= @user.github_username %>
</a>
<% end %>
<% if @user.website_url.present? %>
<a href="<%= @user.website_url %>" target="_blank" rel="noopener">
<%= icon("link","22") %> <%= beautified_url(@user.website_url) %>
</a>
<% end %>
</p>
</div>
</div>