Skip to content

Instantly share code, notes, and snippets.

@patrickspencer
Created August 12, 2014 04:51
Show Gist options
  • Select an option

  • Save patrickspencer/4a8e86ef56395320bf8b to your computer and use it in GitHub Desktop.

Select an option

Save patrickspencer/4a8e86ef56395320bf8b to your computer and use it in GitHub Desktop.
## app/views/layouts/application.html.erb
<!DOCTYPE html>
<html>
<head>
<%=
if current_user.admin?
stylesheet_link_tag "application-admin"
else
stylesheet_link_tag "application-nonadmin"
end
%>
</head>
<body>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment