1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/views/master.blade.php

68 lines
2.6 KiB
PHP
Raw Normal View History

2013-11-26 13:45:07 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
2014-02-16 21:32:25 +01:00
2014-03-23 12:11:04 +01:00
<title>Invoice Ninja {{ isset($title) ? $title : ' - Free Online Invoicing' }}</title>
2014-03-17 19:05:01 +01:00
<link rel="canonical" href="https://www.invoiceninja.com"></link>
2014-02-16 21:32:25 +01:00
<link href="{{ asset('favicon.ico') }}" rel="icon" type="image/x-icon">
2014-02-18 16:07:22 +01:00
<link href='//fonts.googleapis.com/css?family=Roboto:400,700,900,100' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Roboto+Slab:400,300,700' rel='stylesheet' type='text/css'>
2014-02-16 21:32:25 +01:00
2013-11-26 13:45:07 +01:00
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2014-02-16 21:32:25 +01:00
<meta property="og:site_name" content="Invoice Ninja"></meta>
2014-03-17 19:05:01 +01:00
<meta property="og:url" content="https://www.invoiceninja.com"></meta>
2014-02-16 21:32:25 +01:00
<meta property="og:title" content="Invoice Ninja"></meta>
2014-03-23 16:59:30 +01:00
<meta property="og:image" content="https://www.invoiceninja.com/images/social.jpg"></meta>
2014-02-16 21:32:25 +01:00
<meta property="og:description" content="Simple, Intuitive Invoicing."></meta>
2014-03-23 18:54:02 +01:00
<meta name="keywords" content="Invoice Ninja"></meta>
2013-11-26 13:45:07 +01:00
2014-03-23 18:54:02 +01:00
<script src="{{ asset('js/stacktrace.js') }}" type="text/javascript"></script>
2014-01-05 15:03:29 +01:00
<script src="{{ asset('vendor/jquery/jquery.min.js') }}" type="text/javascript"></script>
2014-03-23 18:54:02 +01:00
2014-01-02 14:21:15 +01:00
<script type="text/javascript">
window.onerror = function(e) {
2014-03-23 18:54:02 +01:00
var trace = printStackTrace();
var string = trace.join(' => ');
2014-01-02 14:21:15 +01:00
try {
$.ajax({
type: 'GET',
url: '{{ URL::to('log_error') }}',
2014-03-23 18:54:02 +01:00
data: 'error='+encodeURIComponent(e+': '+string)+'&url='+encodeURIComponent(window.location)
2014-01-02 14:21:15 +01:00
});
} catch(err) {}
return false;
}
</script>
2013-11-26 13:45:07 +01:00
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
2013-12-27 10:10:32 +01:00
2013-12-07 19:45:00 +01:00
@yield('head')
2013-11-26 13:45:07 +01:00
</head>
<body>
2014-03-23 14:36:18 +01:00
@if (App::environment() == ENV_PRODUCTION && isset($_ENV['ANALYTICS_KEY']) && $_ENV['ANALYTICS_KEY'])
2014-03-05 21:19:12 +01:00
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
2013-11-26 13:45:07 +01:00
2014-03-23 14:36:18 +01:00
ga('create', '{{ $_ENV['ANALYTICS_KEY'] }}');
2014-03-05 21:19:12 +01:00
ga('send', 'pageview');
</script>
@endif
2013-12-07 19:45:00 +01:00
@yield('body')
2013-11-26 13:45:07 +01:00
</body>
2013-12-07 19:45:00 +01:00
</html>