-<h1><%= t('oauth.client_application.show.title', :app_name => @client_application.name) %></h1>
-<p>
- <b><%= t'oauth.client_application.show.key' %></b> <%=@client_application.key %>
-</p>
-<p>
- <b><%= t'oauth.client_application.show.secret' %></b> <%=@client_application.secret %>
-</p>
-<p>
- <b><%= t'oauth.client_application.show.url' %></b> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.request_token_path %>
-</p>
-<p>
- <b><%= t'oauth.client_application.show.access_url' %></b> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.access_token_path %>
-</p>
-<p>
- <b><%= t'oauth.client_application.show.authorize_url' %></b> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.authorize_path %>
-</p>
+<% content_for :heading do %>
+ <h1><%= t('.title', :app_name => @client_application.name) %></h1>
+<% end %>
+<div class='prose'>
+ <p>
+ <strong><%= t '.key' %></strong> <%=@client_application.key %>
+ </p>
+ <p>
+ <strong><%= t '.secret' %></strong> <%=@client_application.secret %>
+ </p>
+ <p>
+ <strong><%= t '.url' %></strong> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.request_token_path %>
+ </p>
+ <p>
+ <strong><%= t '.access_url' %></strong> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.access_token_path %>
+ </p>
+ <p>
+ <strong><%= t '.authorize_url' %></strong> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.authorize_path %>
+ </p>