Last active
December 17, 2015 11:49
-
-
Save katsuyoshi/5604645 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>ITO SOFT DESIGN.</title> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
</head> | |
<body> | |
<% info = @personal_info %> | |
<% english = info["company"]["name"] == 'ITO SOFT DESIGN Inc.' %> | |
<dl> | |
<dt>Name</dt><dd><%= info["name"] %></dd> | |
<dt>Title</dt><dd><%= info["company"]["title"] %></dd> | |
<dt>Company</dt><dd><%= info["company"]["name"] %></dd> | |
<dt>Address</dt><dd><%= info["company"]["address"] %></dd> | |
<dt>Tel</dt><dd><%= info["company"]["tel"] %></dd> | |
<dt>Email</dt> | |
<dd> | |
<% email = info["company"]["email"] %> | |
<%= "<a href=\"mailto:#{email}\">#{email}</a>" %> | |
</dd> | |
<dt>Homepage</dt> | |
<dd> | |
<% homepage = info["company"]["homepage"] %> | |
<%= "<a href=\"#{homepage}\">#{homepage}</a>" %> | |
</dd> | |
<dt>Socials</dt> | |
<dd> | |
<dl> | |
<% info["company"]["socials"].each do |key, value| %> | |
<% if key == "twitter" %> | |
<dt>Twitter</dt> | |
<dd><%= "<a href=\"https://twitter.com/#{value}\">@#{value}</a>" %></dd> | |
<% elsif key == "github" %> | |
<dt>Github</dt> | |
<dd><%= "<a href=\"https://github.com/#{value}\">#{value}</a>" %><dd> | |
<% elsif key == "gravatar" %> | |
<dt></dt> | |
<dd><%= "<img src=\"http://www.gravatar.com/avatar/#{value}.png\" />" %></dd> | |
<% end %> | |
<% end %> | |
</dl> | |
</dd> | |
</dl> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment