Old UniVate Website
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

master.blade.php 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <!DOCTYPE html>
  2. <html lang="en" >
  3. <head>
  4. <!-- Global site tag (gtag.js) - Google Analytics -->
  5. <script async src="https://www.googletagmanager.com/gtag/js?id=UA-128891091-1"></script>
  6. <script>
  7. window.dataLayer = window.dataLayer || [];
  8. function gtag(){dataLayer.push(arguments);}
  9. gtag('js', new Date());
  10. gtag('config', 'UA-128891091-1');
  11. </script>
  12. <!-- Google Tag Manager -->
  13. <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  14. new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  15. j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  16. 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  17. })(window,document,'script','dataLayer','GTM-MRV257M');</script>
  18. <!-- End Google Tag Manager -->
  19. <meta charset="utf-8">
  20. <meta charset="utf-8">
  21. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  22. <meta name="viewport" content="width=device-width, initial-scale=1">
  23. <meta name="description" content="@yield('description')">
  24. <meta name="keywords" content="@yield('keywords')">
  25. <title>Uni-Vate Properties | @yield('title')</title>
  26. <!-- Font Awesome -->
  27. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
  28. <!-- Datepicker -->
  29. <link href="https://unpkg.com/gijgo@1.9.11/css/gijgo.min.css" rel="stylesheet" type="text/css" />
  30. <!-- Bootstrap -->
  31. <link rel="stylesheet" href="{{ asset('/css/bootstrap.min.css') }}">
  32. <!-- Main Stylehseet -->
  33. <link rel="stylesheet" href="{{ asset('/css/style.css') }}">
  34. <!-- Favicon -->
  35. <link rel="icon" href="{{ asset('/images/favicon.png') }}">
  36. </head>
  37. <body>
  38. <!-- Google Tag Manager (noscript) -->
  39. <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MRV257M"
  40. height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  41. <!-- End Google Tag Manager (noscript) -->
  42. <!-- main menu -->
  43. @include('partials.menu')
  44. @if(Session::has('view-search-error'))
  45. <div class="container mt-4">
  46. <div class="row">
  47. <div class="col">
  48. <div style="background-color: #ff000073;" class="alert alert-danger mb-0">
  49. <p class="text-danger mb-0 text-center">
  50. {{ Session::get('view-search-error') }}
  51. <a href="#" class="close">&times;</a>
  52. </p>
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. @endif
  58. <!-- error message -->
  59. @if(Session::has('view-error'))
  60. <div class="container mt-4">
  61. <div class="row">
  62. <div class="col">
  63. <div style="background-color: #ff000073;" class="alert-box alert mb-0">
  64. <p class="text-danger mb-0 text-center">
  65. {{ Session::get('view-error') }}
  66. <a href="#" class="close">&times;</a>
  67. </p>
  68. </div>
  69. </div>
  70. </div>
  71. </div>
  72. @endif
  73. <!-- success message -->
  74. @if(Session::has('view-success'))
  75. <div class="container mt-4">
  76. <div class="row">
  77. <div class="col">
  78. <div class="alert alert-success mb-0">
  79. <p class="text-success mb-0 text-center">
  80. {{ Session::get('view-success') }}
  81. <a href="#" class="close">&times;</a>
  82. </p>
  83. </div>
  84. </div>
  85. </div>
  86. </div>
  87. @endif
  88. <!-- main content -->
  89. @yield('content')
  90. <!-- footer -->
  91. @include('partials.footer')
  92. <!-- login -->
  93. @if(!Auth::check())
  94. @include('partials.login')
  95. <!-- register -->
  96. @include('partials.register')
  97. <!-- login/register -->
  98. @include('partials.loginOrRegister')
  99. @endif
  100. </body>
  101. </html>