templates/_header-start.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4.   <meta charset="UTF-8" />
  5.   <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6.   <title>{% if prefix_title is defined %}{{ prefix_title }} | {% endif %}Awatary</title>
  7.   <meta name="keywords" content="" />
  8.   <meta name="description" content="{% if meta_description is defined %}{{ meta_description }}{% else %} Jakiƛ podstawowy opis {% endif %}" />
  9.   <meta name="author" content="HONETi - Interactive Web Technologies" />
  10.   <link rel="shortcut icon" href="{{ asset("favicon.ico") }}" />
  11.   <link href='https://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700,900,900italic,700italic&subset=latin,latin-ext' rel='stylesheet' />
  12.   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
  13.   <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.0-beta/css/bootstrap-select.min.css">
  14.   <link rel="stylesheet" href="{{ asset("style/fontawesome.min.css?v1") }}" />
  15.   <link rel="stylesheet" href="{{ asset("style/bootstrap-modifications.css?v4") }}" />
  16.   <link rel="stylesheet" href="{{ asset("style/animation.css?v3") }}" />
  17.   <link rel="stylesheet" href="{{ asset("style/helper.css?v4") }}" />
  18.   <link rel="stylesheet" href="{{ asset("style/menu.css?v3") }}" />
  19.   <link rel="stylesheet" href="{{ asset("style/jquery.fileuploader.min.css?v3") }}" />
  20.   <link rel="stylesheet" href="{{ asset("style/jquery.fileuploader-theme-thumbnails.css?v3") }}" />
  21.   <link rel="stylesheet" href="{{ asset("style/plugins.css?v12") }}" />
  22.   <link rel="stylesheet" href="{{ asset("style/style.css?v13") }}" />
  23.   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  24.   <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  25.   <script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.3/jquery.ui.touch-punch.min.js"></script>
  26.   <script src="{{ asset ("js/jquery.serializejson.min.js") }}"></script>
  27.   <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.11.0/jquery.validate.min.js"></script>
  28.   <script src="{{ asset ("js/jquery.fileuploader.min.js?v5") }}"></script>
  29.   <!--[if IE]>
  30.   <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
  31.   <![endif]-->
  32.   <script>
  33.     setTimeout(function () {
  34.       $('#preloader').fadeOut(); // will fade out the white DIV that covers the website.
  35.     }, 350);
  36.     /******** ADD & REMOVE AJAX LOADER ********/
  37.     addAjaxLoader = function(container) {
  38.       $(container).append('<div class="preloader-in"><div class="spinner"><div class="bounce1"></div><div class="bounce2"></div><div class="bounce3"></div></div></div>');
  39.       if (container == 'body'){
  40.         $('.preloader-in').css('z-index','9999999');
  41.       }
  42.     };
  43.     removeAjaxLoader = function(container) {
  44.       $(container).find('.preloader-in').remove();
  45.     };
  46.     addAjaxLoader2 = function(container) {
  47.       $(container).append('<div class="preloader-in2"><div class="spinner"><div class="bounce1"></div><div class="bounce2"></div><div class="bounce3"></div></div></div>');
  48.     };
  49.     removeAjaxLoader2 = function(container) {
  50.       $(container).find('.preloader-in2').remove();
  51.     };
  52.     addAjaxScrollLoader = function(container) {
  53.       $(container).append('<div class="preloader-in-scroll"><div class="spinner"><div class="bounce1"></div><div class="bounce2"></div><div class="bounce3"></div></div></div>');
  54.     };
  55.     removeAjaxScrollLoader = function(container) {
  56.       $(container).find('.preloader-in-scroll').remove();
  57.     };
  58.   </script>
  59. </head>
  60. <body id="top">