Advertisement
NamPNQ

Template

Jul 30th, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. {% block stylesheets %}
  2.  
  3. {% if debug == True %}
  4.  
  5. <link rel="stylesheet" href="/public/styles/normalize.css">
  6. <link rel="stylesheet" href="/public/styles/animations.css">
  7. <link rel="stylesheet" href="/public/styles/icons.css">
  8. <link rel="stylesheet" href="/public/styles/home.css">
  9. <link rel="stylesheet" href="/public/styles/wysihtml5.css">
  10. <link rel="stylesheet" href="/public/styles/jquery.notice.css">
  11. <link type="text/css" rel="stylesheet" href="/public/styles/prettify.css">
  12. <link rel="stylesheet" href="/public/styles/hopscotch.css">
  13. <link rel="stylesheet" href="/public/styles/jquery.atwho.css">
  14. <link rel="stylesheet" href="/public/styles/chat.css">
  15.  
  16.  
  17. {% else %}
  18. {% assets filters="cssmin",
  19. output="style.css",
  20. "styles/normalize.css",
  21. "styles/animations.css",
  22. "styles/jquery.notice.css",
  23. "styles/icons.css",
  24. "styles/home.css",
  25. "styles/hopscotch.css",
  26. "styles/jquery.atwho.css",
  27. "styles/wysihtml5.css",
  28. "styles/prettify.css",
  29. "styles/chat.css" %}
  30. <link rel="stylesheet" href="{{ ASSET_URL }}">
  31. {% endassets %}
  32.  
  33. {% endif %}
  34.  
  35. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement