Skip to content

Instantly share code, notes, and snippets.

@patrickspencer
Created August 12, 2014 05:03
Show Gist options
  • Save patrickspencer/edb484b282064b526f2a to your computer and use it in GitHub Desktop.
Save patrickspencer/edb484b282064b526f2a to your computer and use it in GitHub Desktop.
## app/views/layouts/application.html.erb
<!DOCTYPE html>
<html>
<head>
<%=
if current_user.admin?
puts '<link href="/assets/application-admin.css"/>'
else
puts '<link href="/assets/application-nonadmin.css"/>'
end
%>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment