Skip to content

Instantly share code, notes, and snippets.

@jameshalsall
Created January 12, 2012 20:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jameshalsall/7f29353eaca0947528ce to your computer and use it in GitHub Desktop.
Save jameshalsall/7f29353eaca0947528ce to your computer and use it in GitHub Desktop.
<!doctype html>
<!--[if lt IE 7 ]> <html class="no-js ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]> <html class="no-js ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]> <html class="no-js ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{%block title %}Vhoto{% endblock %}</title>
<meta name="description" content="Vhoto online photo proofing website for professional and amateur photographers alike">
<meta name="author" content="Vhoto">
<link rel="author" type="text/plain" href="humans.txt" />
<!-- CSS -->
{% stylesheets '../app/Resources/public/css/common.css'
'../app/Resources/public/css/structure.css'
'../app/Resources/public/css/_qtip.css'
'../app/Resources/public/css/facebox.css'
filter='cssrewrite'
%}
<link rel="stylesheet" href="{{ asset_url }}" />
{% endstylesheets %}
{% block stylesheets %}{% endblock%}
<!-- Icons -->
<link rel="shortcut icon" href="{{ asset('favicon.ico') }}" />
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png">
<!-- Modernizer -->
{% javascripts '../app/Resources/public/js/libs/modernizr-1.7.min.js'
filter="?yui_js" %}
<script src="{{ asset_url }}"></script>
{% endjavascripts %}
</head>
<body>
<div id="container">
<header id="main-header">
<nav id="nav-account" class="nav-horz">
{{ knp_menu_render('account') }}
</nav>
<div id="h-top" class="h-bar">
<a href="{{ path('dashboard') }}" title="Go to the dashboard">
<img src="/images/logo.png" alt="logo" width="101" height="24" />
</a>
</div>
<nav id="nav-main" class="nav-horz">
{{ knp_menu_render('main') }}
</nav>
{% include 'VhotoHelperBundle:Component:breadcrumb.html.twig' %}
</header>
<!-- // End Header -->
<div id="main-content">
<div id="main-content-span" >
{% block body %} {% endblock %}
</div>
<!--<div id="main-content-footer">
<button class="ui-button">Next Step</button>
</div>-->
</div>
<footer id="main-footer">
&copy; Vhoto 2011. All Rights Reserved. Version 2.0 Beta Build 1.0
</footer><!-- // End Footer -->
</div>
<!-- Modal popup skeletons -->
{% include '::modals.html.twig' %}
<!-- JS / Scripts -->
{% javascripts '../app/Resources/public/js/jquery/jquery.dev.js'
'../app/Resources/public/js/libraries.js'
'../app/Resources/public/js/libs/facebox.js'
'../app/Resources/public/js/app/application.js'
'../app/Resources/public/js/app/application.messaging.js'
filter="?yui_js"
%}
<script type="text/javascript" src="{{ asset_url }}"></script>
{% endjavascripts %}
<script type="text/javascript" src="{{ asset('/bundles/fosjsrouting/js/router.js') }}"></script>
<script type="text/javascript" src="{{ path('fos_js_routing_js', {"callback": "fos.Router.setData"}) }}"></script>
<!-- JAVASCRIPTS FROM MAIN HEAD BLOCK GO HERE -->
{% block javascripts %}{% endblock %}
<!--[if lt IE 7 ]>
{% javascripts '../app/Resources/public/js/libs/dd_belatedpng.js' %}
<script type="text/javascript" src="{{ asset_url }}"></script>
<script>DD_belatedPNG.fix("img, .png_bg");</script>
{% endjavascripts %}
<![endif]-->
<!-- Analytics -->
<!--<script>
var _gaq=[["_setAccount","UA-XXXXX-X"],["_trackPageview"]];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js";
s.parentNode.insertBefore(g,s)}(document,"script"));
</script>-->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment