Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2012
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6.     <title>{% block title %}{% endblock %} | iTenho</title>
  7.    
  8. {% block stylesheets %}
  9. {% stylesheets '@OfertaBundle/Resources/public/css/style.css'
  10.                output='css/estilo.css' %}
  11. <link href="{{ asset_url }}" rel="stylesheet" type="text/css" />
  12. {% endstylesheets %}
  13. {% endblock %}
  14.  
  15.     {% block rss %}{% endblock %}
  16.     <link rel="shortcut icon" href="{{ asset('favicon.png') }}" />
  17.  
  18.  
  19.  
  20. {% block javascripts %}
  21. {% javascripts
  22.     '@OfertaBundle/Resources/public/js/landing/*'
  23.     output='js/landing.js'
  24. %}
  25.   <!--[if lt IE 9]>
  26.      <script src="{{ asset_url }}"></script>
  27.   <![endif]-->
  28. {% endjavascripts %}  
  29. {% javascripts '@OfertaBundle/Resources/public/js/landing/*' %}
  30. <script src="{{ asset_url }}" type="text/javascript"></script>
  31. {% endjavascripts %}
  32. {% endblock %}
  33.  
  34. <script type="text/javascript">
  35.         // Initialize the plugin with no custom options
  36.         $(document).ready(function () {
  37.             // None of the options are set
  38.             $("div#makeMeScrollable").smoothDivScroll({});
  39.         });
  40. </script>
  41.    
  42.    
  43. </head>
  44.  
  45. <body id="{% block id '' %}">
  46. <div id="container">
  47.     {% block body %}{% endblock %}
  48.    
  49.  
  50.  
  51.  
  52. </body>
  53.  
  54. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement