200 OK, standart bir başarılı HTTP sunucu yanıtıdır. Bu, istemcinin isteğinin (örneğin, bir tarayıcıdan) başarıyla işlendiği ve sunucunun istenen verileri ilettiği anlamına gelir.
Kullanıcı içeriği hatasız alır ve sayfa veya uygulama düzgün çalışır. Kod 200'e veri eşlik ediyorsa, tarayıcı veya program bunu işler ve kullanıcıya görüntüler.
GET / HTTP/1.1 Host: trlic.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html> <html lang="sr-RS"> <head> <!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]--> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Zemljoradnička zadruga Trlić - Industrija mesa</title> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel="alternate" type="application/rss+xml" title="Zemljoradnička zadruga Trlić » dovod" href="http://trlic.com/feed/" /> <link rel="alternate" type="application/rss+xml" title="Zemljoradnička zadruga Trlić » dovod komentara" href="http://trlic.com/comments/feed/" /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"wpemoji":"http:\/\/trlic.com\/wp-includes\/js\/wp-emoji.js?ver=6.1.7","twemoji":"http:\/\/trlic.com\/wp-includes\/js\/twemoji.js?ver=6.1.7"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ ( function( window, document, settings ) { var src, ready, ii, tests; // Create a canvas element for testing native browser support of emoji. var canvas = document.createElement( 'canvas' ); var context = canvas.getContext && canvas.getContext( '2d' ); /** * Checks if two sets of Emoji characters render the same visually. * * @since 4.9.0 * * @private * * @param {number[]} set1 Set of Emoji character codes. * @param {number[]} set2 Set of Emoji character codes. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( set1, set2 ) { var stringFromCharCode = String.fromCharCode; // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 ); var rendered1 = canvas.toDataURL(); // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 ); var rendered2 = canvas.toDataURL(); return rendered1 === rendered2; } /** * Detects if the browser supports rendering emoji or flag emoji. * * Flag emoji are a single glyph made of two characters, so some browsers * (notably, Firefox OS X) don't support them. * * @since 4.2.0 * * @private * * @param {string} type Whether to test for support of "flag" or "emoji". * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( type ) { var isIdentical; if ( ! context || ! context.fillText ) { return false; } /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. This flag is shortlisted for the Emoji 13 spec, * but has landed in Twemoji early, so we can add support for it, too. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( [ 0x1F3F3, 0xFE0F, 0x200D, 0x26A7, 0xFE0F ], [ 0x1F3F3, 0xFE0F, 0x200B, 0x26A7, 0xFE0F ] ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( [ 0xD83C, 0xDDFA, 0xD83C, 0xDDF3 ], [ 0xD83C, 0xDDFA, 0x200B, 0xD83C, 0xDDF3 ] ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather an five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( [ 0xD83C, 0xDFF4, 0xDB40, 0xDC67, 0xDB40, 0xDC62, 0xDB40, 0xDC65, 0xDB40, 0xDC6E, 0xDB40, 0xDC67, 0xDB40, 0xDC7F ], [ 0xD83C, 0xDFF4, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC62, 0x200B, 0xDB40, 0xDC65, 0x200B, 0xDB40, 0xDC6E, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC7F ] ); return ! isIdentical; case 'emoji': /* * Why can't we be friends? Everyone can now shake hands in emoji, regardless of skin tone! * * To test for Emoji 14.0 support, try to render a new emoji: Handshake: Light Skin Tone, Dark Skin Tone. * * The Handshake: Light Skin Tone, Dark Skin Tone emoji is a ZWJ sequence combining 🫱 Rightwards Hand, * 🏻 Light Skin Tone, a Zero Width Joiner, 🫲 Leftwards Hand, and 🏿 Dark Skin Tone. * * 0x1FAF1 == Rightwards Hand * 0x1F3FB == Light Skin Tone * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x1FAF2 == Leftwards Hand * 0x1F3FF == Dark Skin Tone. * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( [0x1FAF1, 0x1F3FB, 0x200D, 0x1FAF2, 0x1F3FF], [0x1FAF1, 0x1F3FB, 0x200B, 0x1FAF2, 0x1F3FF] ); return ! isIdentical; } return false; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {Object} src The url where the script is located. * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = script.type = 'text/javascript'; document.getElementsByTagName( 'head' )[0].appendChild( script ); } tests = Array( 'flag', 'emoji' ); settings.supports = { everything: true, everythingExceptFlag: true }; /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for( ii = 0; ii < tests.length; ii++ ) { settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] ); settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ]; if ( 'flag' !== tests[ ii ] ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function() { settings.DOMReady = true; }; // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { ready = function() { settings.readyCallback(); }; /* * Cross-browser version of adding a dom ready event. */ if ( document.addEventListener ) { document.addEventListener( 'DOMContentLoaded', ready, false ); window.addEventListener( 'load', ready, false ); } else { window.attachEvent( 'onload', ready ); document.attachEvent( 'onreadystatechange', function() { if ( 'complete' === document.readyState ) { settings.readyCallback(); } } ); } src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } )( window, document, window._wpemojiSettings ); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='rt-wpp-plugin-style-css' href='http://trlic.com/wp-content/plugins/rt-prettyphoto/css/prettyPhoto.css?ver=6.1.7' type='text/css' media='all' /> <link rel='stylesheet' id='wp-block-library-css' href='http://trlic.com/wp-includes/css/dist/block-library/style.css?ver=6.1.7' type='text/css' media='all' /> <link rel='stylesheet' id='classic-theme-styles-css' href='http://trlic.com/wp-includes/css/classic-themes.css?ver=1' type='text/css' media='all' /> <style id='global-styles-inline-css' type='text/css'> body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} .wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;} :where(.wp-block-columns.is-layout-flex){gap: 2em;} .wp-block-pullquote{font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='pb_animate-css' href='http://trlic.com/wp-content/plugins/ays-popup-box/public/css/animate.css?ver=3.4.3' type='text/css' media='all' /> <link rel='stylesheet' id='contact-form-7-css' href='http://trlic.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.7.3' type='text/css' media='all' /> <link rel='stylesheet' id='essential-grid-plugin-settings-css' href='http://trlic.com/wp-content/plugins/essential-grid/public/assets/css/settings.css?ver=2.0.8' type='text/css' media='all' /> <link rel='stylesheet' id='tp-open-sans-css' href='http://fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C600%2C700%2C800&ver=6.1.7' type='text/css' media='all' /> <link rel='stylesheet' id='tp-raleway-css' href='http://fonts.googleapis.com/css?family=Raleway%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900&ver=6.1.7' type='text/css' media='all' /> <link rel='stylesheet' id='tp-droid-serif-css' href='http://fonts.googleapis.com/css?family=Droid+Serif%3A400%2C700&ver=6.1.7' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap-css' href='http://trlic.com/wp-content/themes/organicfood/css/bootstrap.min.css?ver=3.2.0' type='text/css' media='all' /> <link rel='stylesheet' id='preset-css' href='http://trlic.com/wp-content/themes/organicfood/css/presets/preset1.css?ver=6.1.7' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-css' href='http://trlic.com/wp-content/plugins/js_composer/assets/lib/bower/font-awesome/css/font-awesome.min.css?ver=5.4.5' type='text/css' media='all' /> <link rel='stylesheet' id='font-ionicons-css' href='http://trlic.com/wp-content/themes/organicfood/css/ionicons.min.css?ver=1.5.2' type='text/css' media='all' /> <link rel='stylesheet' id='fonts-css' href='http://trlic.com/wp-content/themes/organicfood/css/fonts.css?ver=1.0.0' type='text/css' media='all' /> <link rel='stylesheet' id='style.min-css' href='http://trlic.com/wp-content/themes/organicfood/css/style.min.css?ver=1.0.0' type='text/css' media='all' /> <link rel='stylesheet' id='style-rtl-css' href='http://trlic.com/wp-content/themes/organicfood/style-rtl.css?ver=1.0.0' type='text/css' media='all' /> <link rel='stylesheet' id='shortcodes-css' href='http://trlic.com/wp-content/themes/organicfood/framework/shortcodes/shortcodes.css?ver=1.0.0' type='text/css' media='all' /> <link rel='stylesheet' id='uikit.gradient.min-css' href='http://trlic.com/wp-content/themes/organicfood/css/uikit.gradient.min.css?ver=1.0.0' type='text/css' media='all' /> <link rel='stylesheet' id='uikit.almost-flat.min-css' href='http://trlic.com/wp-content/themes/organicfood/css/uikit.almost-flat.min.css?ver=1.0.0' type='text/css' media='all' /> <link rel='stylesheet' id='uikit.min-css' href='http://trlic.com/wp-content/themes/organicfood/css/uikit.min.css?ver=1.0.0' type='text/css' media='all' /> <link rel='stylesheet' id='style-css' href='http://trlic.com/wp-content/themes/organicfood/style.css?ver=1.0.0' type='text/css' media='all' /> <link rel='stylesheet' id='js_composer_front-css' href='http://trlic.com/wp-content/plugins/js_composer/assets/css/js_composer.min.css?ver=5.4.5' type='text/css' media='all' /> <link rel='stylesheet' id='wp_custom_style-css' href='http://trlic.com/wp-content/themes/organicfood/css/wp_custom_style.css?ver=6.1.7' type='text/css' media='all' /> <style id='wp_custom_style-inline-css' type='text/css'> body{ font-family:Arial, Helvetica, sans-serif}@font-face { font-family: ; src: url(http://trlic.com/wp-content/themes/organicfood/fonts/.eot); src: url(http://trlic.com/wp-content/themes/organicfood/fonts/.eot?#iefix) format('embedded-opentype'), url(http://trlic.com/wp-content/themes/organicfood/fonts/.woff) format('woff'), url(http://trlic.com/wp-content/themes/organicfood/fonts/.ttf) format('truetype'), url(http://trlic.com/wp-content/themes/organicfood/fonts/.svg#) format('svg'); font-weight: normal; font-style: normal; } .page-title-style .page-title, h3.cs-pricing-title, .comment-body .fn, .home .ww-fancy-box .ww-title-main{ font-family:} body.csbody{ background-image: url('http://trlic.com/wp-content/uploads/2015/04/pozadina-t1.jpg'); } .header-site-wrap{ background-image: url('http://trlic.com/wp-content/themes/organicfood/images/TitleBarbg3.jpg'); } </style> <script type='text/javascript' src='http://trlic.com/wp-includes/js/jquery/jquery.js?ver=3.6.1' id='jquery-core-js'></script> <script type='text/javascript' src='http://trlic.com/wp-includes/js/jquery/jquery-migrate.js?ver=3.3.2' id='jquery-migrate-js'></script> <script type='text/javascript' src='http://trlic.com/wp-content/plugins/rt-prettyphoto/js/jquery.prettyPhoto.js?ver=6.1.7' id='rt-wpp-plugin-active-js'></script> <script type='text/javascript' src='http://trlic.com/wp-content/plugins/rt-prettyphoto/js/wpp-active.js?ver=6.1.7' id='rt-wpp-plugin-script-active-js'></script> <script type='text/javascript' id='ays-pb-js-extra'> /* <![CDATA[ */ var pbLocalizeObj = {"icons":{"close_icon":"<svg class=\"ays_pb_material_close_icon\" xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"36px\" viewBox=\"0 0 24 24\" width=\"36px\" fill=\"#000000\" alt=\"Pop-up Close\"><path d=\"M0 0h24v24H0z\" fill=\"none\"\/><path d=\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z\"\/><\/svg>","close_circle_icon":"<svg class=\"ays_pb_material_close_circle_icon\" xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"24\" viewBox=\"0 0 24 24\" width=\"36\" alt=\"Pop-up Close\"><path d=\"M0 0h24v24H0z\" fill=\"none\"\/><path d=\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z\"\/><\/svg>","volume_up_icon":"<svg class=\"ays_pb_fa_volume\" xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"24\" viewBox=\"0 0 24 24\" width=\"36\"><path d=\"M0 0h24v24H0z\" fill=\"none\"\/><path d=\"M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z\"\/><\/svg>","volume_mute_icon":"<svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" height=\"24\" viewBox=\"0 0 24 24\" width=\"24\"><path d=\"M0 0h24v24H0z\" fill=\"none\"\/><path d=\"M7 9v6h4l5 5V4l-5 5H7z\"\/><\/svg>"}}; /* ]]> */ </script> <script type='text/javascript' src='http://trlic.com/wp-content/plugins/ays-popup-box/public/js/ays-pb-public.js?ver=3.4.3' id='ays-pb-js'></script> <script type='text/javascript' src='http://trlic.com/wp-content/plugins/essential-grid/public/assets/js/lightbox.js?ver=2.0.8' id='themepunchboxext-js'></script> <script type='text/javascript' src='http://trlic.com/wp-content/plugins/essential-grid/public/assets/js/jquery.themepunch.tools.min.js?ver=2.0.8' id='tp-tools-js'></script> <script type='text/javascript' src='http://trlic.com/wp-content/plugins/essential-grid/public/assets/js/jquery.themepunch.essential.min.js?ver=2.0.8' id='essential-grid-essential-grid-script-js'></script> <script type='text/javascript' src='http://trlic.com/wp-content/themes/organicfood/js/bootstrap.min.js?ver=3.2.0' id='bootstrap-min-js-js'></script> <script type='text/javascript' src='http://trlic.com/wp-content/themes/organicfood/js/jquery_cookie.min.js?ver=6.1.7' id='jquery-cookie-js'></script> <script type='text/javascript' src='http://trlic.com/wp-content/themes/organicfood/js/jsapi.js?ver=1.0.0' id='jsapi-js'></script> <script type='text/javascript' src='http://trlic.com/wp-content/themes/organicfood/framework/shortcodes/shortcodes.js?ver=1.0.0' id='shortcodes-js'></script> <script type='text/javascript' src='http://trlic.com/wp-content/themes/organicfood/js/uikit.min.js?ver=1.0.0' id='uikit.min-js'></script> <script type='text/javascript' src='http://trlic.com/wp-content/themes/organicfood/js/exp.parallax.js?ver=1.0.0' id='exp.parallax-js'></script> <script type='text/javascript' src='http://trlic.com/wp-content/themes/organicfood/js/main.js?ver=1.0.0' id='main-js'></script> <link rel="https://api.w.org/" href="http://trlic.com/wp-json/" /><link rel="alternate" type="application/json" href="http://trlic.com/wp-json/wp/v2/pages/919" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://trlic.com/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://trlic.com/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 6.1.7" /> <link rel="canonical" href="http://trlic.com/" /> <link rel='shortlink' href='http://trlic.com/' /> <link rel="alternate" type="application/json+oembed" href="http://trlic.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Ftrlic.com%2F" /> <link rel="alternate" type="text/xml+oembed" href="http://trlic.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Ftrlic.com%2F&format=xml" /> <style type='text/css'> /* Begin Royal PrettyPhoto Styles*/ @import url(http://fonts.googleapis.com/css?family=Autour+One|Meie+Script|Armata|Rum+Raisin|Sonsie+One|Kavoon|Denk+One|Gravitas+One|Racing+Sans+One|Nosifer|Ropa+Sans|Offside|Titan+One|Paytone+One|Audiowide|Righteous|Faster+One|Russo+One|Germania+One|Krona+One|Emblema+One|Creepster|Delius+Unicase|Wallpoet|Sansita+One|Monoton|Kenia|Monofett); div.ppt { display: none; } .pp_nav { } .pp_social { } .pp_gallery { } div.ppt{ font-family:; color:; } a.pp_next, a.pp_previous { } div.pp_default .pp_expand, .pp_fade a.pp_expand, a.pp_expand, div.facebook .pp_expand, div.light_square .pp_expand, div.dark_square .pp_expand, div.dark_rounded .pp_expand, div.light_rounded .pp_expand { } /* End Royal PrettyPhoto Styles*/ </style> <link type="image/x-icon" href="http://trlic.com/wp-content/uploads/2015/05/favicon.png" rel="shortcut icon"><meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/> <!--[if lte IE 9]><link rel="stylesheet" type="text/css" href="http://trlic.com/wp-content/plugins/js_composer/assets/css/vc_lte_ie9.min.css" media="screen"><![endif]--><style type="text/css" data-type="vc_shortcodes-custom-css">.vc_custom_1527753162638{padding-top: 35px !important;padding-bottom: 45px !important;}.vc_custom_1412332948665{padding-top: 45px !important;padding-bottom: 45px !important;}.vc_custom_1412335491364{padding-bottom: 65px !important;}.vc_custom_1411620034103{padding-top: 35px !important;padding-bottom: 35px !important;}</style><noscript><style type="text/css"> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript> </head> <body class="home page-template page-template-page-titlebar page-template-page-titlebar-php page page-id-919 csbody boxed wpb-js-composer js-comp-ver-5.4.5 vc_responsive"> <div id="wrapper"> <div class="header-wrapper"> <div class="header header-v1"> <header id="header-top"> <div class="container"> <div class="row"> <div class="header-top clearfix"> <div class='header-top-1 col-xs-12 col-sm-6 col-md-4 col-lg-4 aligncenter-sm'> <div id="text-3" class="header-top-widget-col widget_text"> <div class="textwidget">014/463-300, [email protected]</div> <div style="clear:both;"></div></div> </div><!-- --><div class='header-top-2 col-xs-12 col-sm-6 col-md-8 col-lg-8 aligncenter-sm'> <div id="cs_social_widget-4" class=" header-top-widget-col widget_cs_social_widget"> <ul class='cs-social'> <li> <a target="_blank" data-uk-tooltip="{pos:'bottom'}" title="Facebook" href="https://www.facebook.com/ZzTrlic"> <i class="fa fa-facebook"></i> </a> </li> <li> <a target="_blank" data-uk-tooltip="{pos:'bottom'}" title="Instagram" href="https://www.instagram.com/trlicpreradamesa/"> <i class="fa fa-instagram"></i> </a> </li> </ul> <div style="clear:both;"></div></div> </div> </div> </div> </div> </header> <header id="cshero-header"> <div class="menubar menu-toggle-class" data-scroll-toggle-class=""> <div class="menubar-inner"> <div class="container"> <div class="row"> <div class="col-md-4"> <button class="btn-menubar">Menu</button> <a class="menubar-brand" href="http://trlic.com"> <img src="http://trlic.com/wp-content/uploads/2015/04/trlic-logo1.png" alt="Zemljoradnička zadruga Trlić" style="max-height: 100px" class="normal-logo logo-v1"/> </a> </div> <div class="col-xs-12 col-sm-12 col-md-8 col-lg-8"> <div class="menu-list"><ul id="nav" class="menu-list-right"><li id="menu-item-2389" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-919 current_page_item menu-item-2389"><a href="http://trlic.com/" aria-current="page">Početna</a></li> <li id="menu-item-2677" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2677"><a href="http://trlic.com/o-nama/">O nama</a></li> <li id="menu-item-2583" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2583"><a href="#">Proizvodi</a> <ul class="sub-menu"> <li id="menu-item-2584" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2584"><a href="#">Dimljeni proizvodi od mesa</a> <ul class="sub-menu"> <li id="menu-item-2743" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2743"><a href="http://trlic.com/dimljena-bela-slanina/">Dimljena bela slanina</a></li> <li id="menu-item-2742" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2742"><a href="http://trlic.com/dimljena-svinjska-spic-rebra/">Dimljena svinjska špic rebra</a></li> <li id="menu-item-2752" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2752"><a href="http://trlic.com/dimljena-tirolska-plecka/">Dimljena tirolska plećka</a></li> <li id="menu-item-2744" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2744"><a href="http://trlic.com/dimnjeni-svinjski-vrat/">Dimljeni svinjski vrat</a></li> <li id="menu-item-2763" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2763"><a href="http://trlic.com/dimljeno-komadno-svinjsko-meso/">Dimljeno komadno svinjsko meso</a></li> <li id="menu-item-2762" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2762"><a href="http://trlic.com/panceta/">Pančeta</a></li> </ul> </li> <li id="menu-item-2585" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2585"><a href="#">Fermentisane suve kobasice</a> <ul class="sub-menu"> <li id="menu-item-2788" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2788"><a href="http://trlic.com/cajna-kobasica/">Čajna kobasica</a></li> <li id="menu-item-2787" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2787"><a href="http://trlic.com/budimska-kobasica/">Budimska kobasica</a></li> <li id="menu-item-2786" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2786"><a href="http://trlic.com/sremacka-kobasica/">Sremačka kobasica</a></li> <li id="menu-item-2785" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2785"><a href="http://trlic.com/kulen/">Kulen</a></li> </ul> </li> <li id="menu-item-2586" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2586"><a href="#">Fino usitnjene barene kobasice</a> <ul class="sub-menu"> <li id="menu-item-2826" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2826"><a href="http://trlic.com/francuska-kobasica/">Francuska kobasica</a></li> <li id="menu-item-2825" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2825"><a href="http://trlic.com/pileca-pariska-kobasica/">Pileća pariska kobasica</a></li> <li id="menu-item-2824" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2824"><a href="http://trlic.com/pileca-prsa-u-omotu/">Pileća prsa u omotu</a></li> <li id="menu-item-2823" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2823"><a href="http://trlic.com/posebna-kobasica/">Posebna kobasica</a></li> <li id="menu-item-2822" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2822"><a href="http://trlic.com/safalada/">Safalada</a></li> <li id="menu-item-2821" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2821"><a href="http://trlic.com/virsla/">Viršla</a></li> <li id="menu-item-2820" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2820"><a href="http://trlic.com/pasteta-sa-jetrom-i-mesom/">Pašteta sa jetrom i mesom</a></li> </ul> </li> <li id="menu-item-2587" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2587"><a href="#">Grubo usitnjene barene kobasice</a> <ul class="sub-menu"> <li id="menu-item-2956" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2956"><a href="http://trlic.com/alpska-kobasica/">Alpska kobasica</a></li> <li id="menu-item-2955" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2955"><a href="http://trlic.com/domaca-ljuta-kobasica/">Domaća ljuta kobasica</a></li> <li id="menu-item-2954" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2954"><a href="http://trlic.com/dunavska-kobasica/">Dunavska kobasica</a></li> <li id="menu-item-2953" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2953"><a href="http://trlic.com/novosadska-kobasica/">Novosadska kobasica</a></li> <li id="menu-item-2952" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2952"><a href="http://trlic.com/rostiljska-kobasica/">Roštiljska kobasica</a></li> <li id="menu-item-2951" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2951"><a href="http://trlic.com/slovenacka-kobasica/">Slovenačka kobasica</a></li> <li id="menu-item-2950" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2950"><a href="http://trlic.com/srpska-kobasica/">Srpska kobasica</a></li> <li id="menu-item-2949" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2949"><a href="http://trlic.com/tost-narezak/">Tost narezak</a></li> </ul> </li> <li id="menu-item-2588" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2588"><a href="#">Konzerve od mesa</a> <ul class="sub-menu"> <li id="menu-item-2850" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2850"><a href="http://trlic.com/pizza-sunka-u-omotu/">Pizza šunka u omotu</a></li> <li id="menu-item-2849" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2849"><a href="http://trlic.com/praska-sunka-u-omotu/">Praška šunka u omotu</a></li> <li id="menu-item-2848" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2848"><a href="http://trlic.com/sendvic-sunka/">Sendvič sunka</a></li> <li id="menu-item-2847" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2847"><a href="http://trlic.com/stisnjena-sunka-u-omotu/">Stišnjena šunka u omotu</a></li> </ul> </li> </ul> </li> <li id="menu-item-2691" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2691"><a href="http://trlic.com/cenovnik/">Cenovnik</a></li> <li id="menu-item-2612" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2612"><a href="http://trlic.com/prodavnice/">Prodajni objekti</a></li> <li id="menu-item-2640" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2640"><a href="http://trlic.com/kontakt/">Kontakt</a></li> </ul></div> </div> </div> </div> </div> </div> </header> </div> </div> <div id="primary" class="content-area"> <div class="no-container"> <div class="row"> <div class="col-sx-12 col-sm-12 col-md-12 col-lg-12"> <main id="main" class="site-main" role="main"> <article id="post-919" class="post-919 page type-page status-publish hentry"> <div class="entry-content"> <div class="ww-default wpb_row clearfix vc_row-fluid"><div class="ww-container" ><div class="row"> <div class="vc_col-sm-12 wpb_column column_container "> <div class="wpb_wrapper"> <div class="wpb_single_image wpb_content_element vc_align_left"> <figure class="wpb_wrapper vc_figure"> <div class="vc_single_image-wrapper vc_box_border_grey"><img width="1493" height="499" src="http://trlic.com/wp-content/uploads/2015/04/slajd-02.jpg" class="vc_single_image-img attachment-full" alt="" decoding="async" loading="lazy" srcset="http://trlic.com/wp-content/uploads/2015/04/slajd-02.jpg 1493w, http://trlic.com/wp-content/uploads/2015/04/slajd-02-300x100.jpg 300w, http://trlic.com/wp-content/uploads/2015/04/slajd-02-1024x342.jpg 1024w" sizes="(max-width: 1493px) 100vw, 1493px" /></div> </figure> </div> </div> </div> </div></div></div><div class="ww-default wpb_row clearfix vc_row-fluid vc_custom_1527753162638"><div class="ww-container" ><div class="row"> <div class="vc_col-sm-6 wpb_column column_container "> <div class="wpb_wrapper"> <h3 class="headline underline " style="color: #666666"> Zemljoradnička zadruga Trlić </h3> <div class="wpb_tabs wpb_content_element style2" data-interval="0"> <div class="wpb_wrapper wpb_tour_tabs_wrapper ui-tabs vc_clearfix"> <ul class="wpb_tabs_nav ui-tabs-nav vc_clearfix style2"><li><a href="#tab-1409363933-1-29">Trlić</a></li><li><a href="#tab-1409365068265-2-5">Proizvodi</a></li><li><a href="#tab-1409367981615-2-8">Prodaja</a></li></ul> <div id="tab-1409363933-1-29" class="wpb_tab ui-tabs-panel wpb_ui-tabs-hide vc_clearfix"> <div class="vc_row wpb_row vc_inner vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-6"><div class="vc_column-inner "><div class="wpb_wrapper"> <div class="wpb_single_image wpb_content_element vc_align_left"> <figure class="wpb_wrapper vc_figure"> <div class="vc_single_image-wrapper vc_box_border_grey"><img width="283" height="271" src="http://trlic.com/wp-content/uploads/2014/08/trlic-logo.jpg" class="vc_single_image-img attachment-full" alt="" decoding="async" loading="lazy" /></div> </figure> </div> </div></div></div><div class="wpb_column vc_column_container vc_col-sm-6"><div class="vc_column-inner "><div class="wpb_wrapper"> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <p>Pre 20 godina Zemljoradnička zadruga Trlić počela je sa tovom bikova da bi prerasla u jednu od najvećih klanica u Zapadnoj Srbiji i mesto gde stočari mogu da predaju svoju stoku.</p> <p>ZZ Trlić vrši uzgoj krupne i sitne stoke za klanje u zadrugarskom odnosu sa svojim zadrugarima na domicijelnom geografskom području Kolubare i Tamnave.</p> <p><a class="wpb_button wpb_btn-primary wpb_btn-medium" href="http://209.182.200.208/~trliccom/o-nama/">o nama »</a></p> </div> </div> </div></div></div></div> </div> <div id="tab-1409365068265-2-5" class="wpb_tab ui-tabs-panel wpb_ui-tabs-hide vc_clearfix"> <div class="vc_row wpb_row vc_inner vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-6"><div class="vc_column-inner "><div class="wpb_wrapper"> <div class="wpb_single_image wpb_content_element vc_align_left"> <figure class="wpb_wrapper vc_figure"> <div class="vc_single_image-wrapper vc_box_border_grey"><img width="283" height="271" src="http://trlic.com/wp-content/uploads/2014/08/proizvodi-t.jpg" class="vc_single_image-img attachment-full" alt="" decoding="async" loading="lazy" /></div> </figure> </div> </div></div></div><div class="wpb_column vc_column_container vc_col-sm-6"><div class="vc_column-inner "><div class="wpb_wrapper"> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <p><span class="style4 style5">U ponudi junećeg i svinjskog mesa ističe se kvalitet strukture i precizna obrada.</span></p> <p><span class="style4 style5">Proizvodni pogon „prerada mesa“ nudi oko 100 proizvoda od mesa savremenom opremom neodustajući od tradicionalnih zanatskih veština vrhunskih majstora.</span></p> <p><a class="wpb_button wpb_btn-primary wpb_btn-medium" href="http://localhost/trlic/dimnjeni-svinjski-vrat/">proizvodi »</a></p> </div> </div> </div></div></div></div> </div> <div id="tab-1409367981615-2-8" class="wpb_tab ui-tabs-panel wpb_ui-tabs-hide vc_clearfix"> <div class="vc_row wpb_row vc_inner vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-6"><div class="vc_column-inner "><div class="wpb_wrapper"> <div class="wpb_single_image wpb_content_element vc_align_left"> <figure class="wpb_wrapper vc_figure"> <div class="vc_single_image-wrapper vc_box_border_grey"><img width="283" height="271" src="http://trlic.com/wp-content/uploads/2014/08/maloprodaja.jpg" class="vc_single_image-img attachment-full" alt="" decoding="async" loading="lazy" /></div> </figure> </div> </div></div></div><div class="wpb_column vc_column_container vc_col-sm-6"><div class="vc_column-inner "><div class="wpb_wrapper"> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <p><span class="style31"><span class="style30">Sve naše proizvode možete nabaviti na teritoriji cele Srbije zahvaljujuci mreži distributivnih centara i prodajnih objekata, a kontakte možete ostvariti, u zavisnosti na teritoriji na kojoj se nalazite, preko naših trgovačkih putnika.</span></span></p> <p><a class="wpb_button wpb_btn-primary wpb_btn-medium" href="prodavnice">mapa prodavnica »</a></p> </div> </div> </div></div></div></div> </div> </div> </div> </div> </div> <div class="vc_col-sm-6 wpb_column column_container "> <div class="wpb_wrapper"> <div class="vc_row wpb_row vc_inner vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"> <h3 class="headline underline " style="color: #666666"> Promo video ZZ “Trlić” </h3> <div class="wpb_video_widget wpb_content_element vc_clearfix vc_video-aspect-ratio-169 vc_video-el-width-100 vc_video-align-left" > <div class="wpb_wrapper"> <div class="wpb_video_wrapper"><iframe width="669" height="376" src="https://www.youtube.com/embed/NuLsUF3GM38?feature=oembed" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></div> </div> </div> </div></div></div></div> </div> </div> </div></div></div><div class="ww-default wpb_row clearfix vc_row-fluid"><div class="ww-container" ><div class="row"> <div class="vc_col-sm-6 wpb_column column_container "> <div class="wpb_wrapper"> <div class="vc_row wpb_row vc_inner vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-6"><div class="vc_column-inner "><div class="wpb_wrapper"> <h3 class="headline underline " style="color: #666666"> Vikned akcija </h3> <div class="wpb_single_image wpb_content_element vc_align_left"> <figure class="wpb_wrapper vc_figure"> <a href="http://trlic.com/pdf/vikend-2019-08-30.pdf" target="_blank" class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img " src="http://trlic.com/wp-content/uploads/2019/08/vikend-2019-08-30-283x142.jpg" width="283" height="142" alt="vikend-2019-08-30" title="vikend-2019-08-30" /></a> </figure> </div> </div></div></div><div class="wpb_column vc_column_container vc_col-sm-6"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="vc_empty_space" style="height: 100px" ><span class="vc_empty_space_inner"></span></div> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <p><strong>30. avgust – 1. septembar</strong><br /> U ovoj vikend akciji vas očekuje veliki broj artikala po super cenama…</p> <p><a class="wpb_button wpb_btn-primary wpb_btn-midle" href="http://trlic.com/pdf/vikend-2019-08-30.pdf" target="_blank" rel="noopener">PDF »</a></p> </div> </div> </div></div></div></div> </div> </div> <div class="vc_col-sm-6 wpb_column column_container "> <div class="wpb_wrapper"> <div class="vc_row wpb_row vc_inner vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-6"><div class="vc_column-inner "><div class="wpb_wrapper"> <h3 class="headline underline " style="color: #666666"> Mesečna akcija </h3> <div class="wpb_single_image wpb_content_element vc_align_left"> <figure class="wpb_wrapper vc_figure"> <a href="http://trlic.com/pdf/mesecna-2019-09.pdf" target="_blank" class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img " src="http://trlic.com/wp-content/uploads/2019/08/mesecna-2019-09-283x142.jpg" width="283" height="142" alt="mesecna-2019-09" title="mesecna-2019-09" /></a> </figure> </div> </div></div></div><div class="wpb_column vc_column_container vc_col-sm-6"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="vc_empty_space" style="height: 100px" ><span class="vc_empty_space_inner"></span></div> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <p><strong>septembar 2019.</strong><br /> Preuzmite najnoviji katalog sa septembarskom ponudom proizvoda na akciji…</p> <p><a class="wpb_button wpb_btn-primary wpb_btn-midle" href="http://trlic.com/pdf/mesecna-2019-09.pdf" target="_blank" rel="noopener">PDF »</a></p> </div> </div> </div></div></div></div> </div> </div> </div></div></div><div class="ww-default wpb_row clearfix vc_row-fluid vc_custom_1412332948665"><div class="ww-container" ><div class="row"> <div class="vc_col-sm-12 wpb_column column_container "> <div class="wpb_wrapper"> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <h3 style="text-align: center; line-height: 32px;">Pogledajte najnoviji cenovnik naših proizvoda! <a class="readmore" href="http://trlic.com/cenovnik/" target="" rel="noopener"> Cenovnik »</a></h3> </div> </div> </div> </div> </div></div></div><div class="ww-default wpb_row clearfix vc_row-fluid vc_custom_1412335491364"><div class="ww-container" ><div class="row"> <div class="vc_col-sm-12 wpb_column column_container "> <div class="wpb_wrapper"> <h3 class="headline underline " style="color: #666666"> Sertifikati </h3> <div class="vc_row wpb_row vc_inner vc_row-fluid vc_custom_1411620034103"><div class="wpb_column vc_column_container vc_col-sm-4"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="vc_empty_space" style="height: 10px" ><span class="vc_empty_space_inner"></span></div> <div class="wpb_single_image wpb_content_element vc_align_left"> <figure class="wpb_wrapper vc_figure"> <div class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img " src="http://trlic.com/wp-content/uploads/2014/08/sertifikat-v-300x262.png" width="300" height="262" alt="sertifikat-v" title="sertifikat-v" /></div> </figure> </div> </div></div></div><div class="wpb_column vc_column_container vc_col-sm-8"><div class="vc_column-inner "><div class="wpb_wrapper"> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <p style="text-align: justify;"><strong>CERTOP ISO 22000:2005</strong><br /> ISO 22000:2005 ili <em>Food Safety management systems</em> je prvi međunarodni standard za upravljanje bezbednošću hrane. Reguliše zahteve upravljanja bezbednošću hrane i povećava zadovoljstvo kupaca smanjenjem opasnosti u vezi sa bezbednošću hrane.</p> <p><strong>CERTOP HACCP</strong><br /> Analiza rizika i kritične kontrolne tačke – HACCP (Hazard Analysis and Critical Control Point), je sistemski preventivni pristup bezbednosti hrane i odnosi se na fizičke, hemijske i biološke opasnosti, kao preventivni postupak, kojim proizvođač posmatra, vrši kontrolu, identifikuje i analizira izvesne kritične tačke u proizvodnji hrane, na kojima najverovatnije može doći do njihove kontaminacije.</p> <p><a class="wpb_button wpb_btn-primary wpb_btn-large" href="http://209.182.200.208/~trliccom/o-nama/" target=" " rel="noopener">detaljnije o kompaniji »</a></p> </div> </div> </div></div></div></div> </div> </div> </div></div></div><div class="ww-default wpb_row clearfix vc_row-fluid"><div class="ww-container" ><div class="row"> <div class="vc_col-sm-12 wpb_column column_container "> <div class="wpb_wrapper"> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <p></p> </div> </div> </div> </div> </div></div></div> </div><!-- .entry-content --> <footer class="entry-footer"> </footer><!-- .entry-footer --> </article><!-- #post-## --> </main><!-- #main --> </div> </div> </div> </div><!-- #primary --> <footer id="footer-bottom"> <div class="container"> <div class="row"> <div class="footer-bottom"> <div class='footer-bottom-1 col-xs-12 col-sm-6 col-md-6 col-lg-6'><div id="text-5" class="slidingbar-widget-col widget_text"> <div class="textwidget"><p>2019 © Zemljoradnička zadruga Trlić – <a href="https://cyberteam.rs/" target="_blank" rel="noopener">Izrada sajtova Agencija Cyber Team</a></p> </div> <div style="clear:both;"></div></div></div><div class='footer-bottom-2 col-xs-12 col-sm-6 col-md-6 col-lg-6'></div> </div> </div> </div> </footer> </div> <div class='ays-pb-modals av_pop_modals_1' style='min-width: 100%;'> <input type='hidden' value='fadeIn' id='ays_pb_modal_animate_in_1'> <input type='hidden' value='fadeOutUpBig' id='ays_pb_modal_animate_out_1'> <input type='hidden' value='1000' id='ays_pb_animation_close_speed_1'> <input id='ays-pb-modal-checkbox_1' class='ays-pb-modal-check' type='checkbox' /> <div class='ays-pb-modal ays-pb-modal_1 ' data-ays-flag='false' style=';width: 400px; height: 500px; background-color: #ffffff; color: #000000 !important; border: 1px Dotted #ffffff; border-radius: 4px;font-family:Inherit;;' > <h2 style='color: #000000 !important;font-family:Inherit;'>Konkurs za posao</h2> <div class='ays_pb_description' style='font-size:13px'><p><strong>Prijave slati na [email protected]</strong></p> </div><hr/><div class='ays_content_box' style='padding: 20px'><p>1. U toku je konkurs za radno mesto sanitarnog tehničara ili inženjera sa iskustvom.</p> <p>2. U toku je konkurs za radno mesto tehnologa ili veterinara sa iskustvom u vođenju proizvodnje mesa i mesnih proizvoda.</p> <p>3. U toku je konkurs za radno mesto tehnologa sa iskustvom u vođenju i praćenju HASAP sistema.</p> </div> <div class='ays-pb-dismiss-ad ays_pb_display_none' data-dismiss='' data-id='1'> <button id='ays_pb_dismiss_ad'> Dismiss ad </button> </div> <p class='ays_pb_timer ays_pb_timer_1'>This will close in <span data-seconds='0' data-ays-seconds='0'>0</span> seconds</p> <label for='ays-pb-modal-checkbox_1' class='ays-pb-modal-close ays-pb-modal-close_1 ays-pb-close-button-delay ays_pb_pause_sound_1' style='color: #000000 !important; font-family:Inherit;top: 10px; right: 10px;;transform:scale(1)' data-toggle='tooltip' title=''><svg class="ays_pb_material_close_icon" xmlns="https://www.w3.org/2000/svg" height="36px" viewBox="0 0 24 24" width="36px" fill="#000000" alt="Pop-up Close"><path d="M0 0h24v24H0z" fill="none"/><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg></label> </div> <script> (function($){ })(jQuery); </script><script> jQuery(document).find('.ays-pb-modal_1').css({'top': '0', 'right': '0', 'bottom': '0', 'left': '0'}); </script><div id='ays-pb-screen-shade_1' overlay='overlay_1'></div> <input type='hidden' class='ays_pb_delay_1' value='300'/> <input type='hidden' class='ays_pb_scroll_1' value='0'/> <input type='hidden' class='ays_pb_abt_1' value='pageLoaded'/> </div> <style> .ays-pb-modal_1{ } .ays-pb-modal_1, .av_pop_modals_1 { display:none; } .ays-pb-modal-check:checked ~ #ays-pb-screen-shade_1 { opacity: 0.5; pointer-events: auto; } .ays_cmd_window { background-color: rgba( 255,255,255,0.85 ); } .ays_cmd_window-cursor .ays_cmd_i-cursor-underscore { background-color: black; } .ays_cmd_window-cursor .ays_cmd_i-cursor-indicator { background-color: transparent; } .ays-pb-modal_1 .ays_fa-close-button:before{ content: 'x'; } .ays-pb-modal_1 .ays_pb_description > *, .ays-pb-modal_1 .ays_pb_timer, .ays-pb-modal_1 .ays_content_box p, .ays-pb-modal_1 .ays-pb-dismiss-ad > button#ays_pb_dismiss_ad{ color: #000000; font-family: Inherit; } .ays-pb-modal_1 .close-image-btn{ color: #000000 !important; } .ays-pb-modal_1 .close-image-btn:hover, .ays-pb-modal_1 .close-lil-btn:hover, .ays-pb-modal_1 .close-template-btn:hover{ color: #000000 !important; } .ays-pb-modal_1 .ays_pb_material_close_circle_icon{ fill: #000000 !important; } .ays-pb-modal_1 .ays_pb_material_close_circle_icon:hover{ fill: #000000 !important; } .ays-pb-modal_1 .ays_pb_material_close_icon{ fill: #000000 !important; } .ays-pb-modal_1 .ays_pb_material_close_icon:hover{ fill: #000000 !important; } #ays-pb-screen-shade_1 { opacity: 0; background: #000; position: absolute; left: 0; right: 0; top: 0; bottom: 0; pointer-events: none; transition: opacity 0.8s; ; } .ays-pb-modal_1.fadeIn{ animation-duration: 1s !important; } .ays-pb-modal_1.fadeOutUpBig { animation-duration: 1s !important; } .ays-pb-disable-scroll-on-popup{ overflow-y: hidden !important; } .ays_lil_window .ays_lil_main, .ays_window.ays-pb-modal_1 .ays_pb_description, .ays_win98_window.ays-pb-modal_1 .ays_pb_description, .ays_cmd_window.ays-pb-modal_1 .ays_pb_description, .ays_winxp_window.ays-pb-modal_1 .ays_pb_description, .ays_ubuntu_window.ays-pb-modal_1 .ays_pb_description{ } .ays-pb-modals .ays-pb-modal_1 .ays_pb_description + hr{ } .ays-pb-modals.av_pop_modals_1 .ays-pb-modal_1 .ays_lil_head, .ays-pb-modals.av_pop_modals_1 .ays-pb-modal_1 .ays_topBar, .ays-pb-modals.av_pop_modals_1 .ays-pb-modal_1 .ays_cmd_window-header, .ays-pb-modals.av_pop_modals_1 .ays-pb-modal_1 .ays_ubuntu_topbar, .ays-pb-modals.av_pop_modals_1 .ays-pb-modal_1 .ays_ubuntu_tools, .ays-pb-modal_1 .ays_winxp_title-bar, .ays-pb-modals.av_pop_modals_1 .ays-pb-modal_1 .ays_win98_head, .ays-pb-modal_1 .ays_cmd_window-header, .ays-pb-modals.av_pop_modals_1 .ays-pb-modal_1 .ays_cmd_window-cursor, .ays-pb-modals.av_pop_modals_1 .ays-pb-modal_1 .ays_ubuntu_folder-info.ays_pb_timer_1, .ays_cmd_window-content .ays_pb_timer.ays_pb_timer_1{ } .ays_cmd_window-content .ays_pb_timer.ays_pb_timer_1{ } .ays-pb-modals.av_pop_modals_1 .ays-pb-modal_1 .ays_pb_description ~ ays-pb-modal .ays_pb_description{ } .ays-pb-modal_1 .ays-pb-modal-close_1:hover .close-lil-btn { transform: rotate(180deg) scale(1) !important; } @media screen and (max-width: 768px){ .ays-pb-modal_1{ width: 100% !important; max-width: 100% !important; height : 500px !important; box-sizing: border-box; } .ays-pb-modal_1 .ays_pb_description > p{ font-size: 13px !important; word-break: break-all; word-wrap: break-word; } .ays-pb-modal_1.ays_template_window p.ays_pb_timer.ays_pb_timer_1{ } .ays-pb-modal_1.ays_template_window footer.ays_template_footer{ } .ays-pb-modal_1.ays_template_window div.ays_bg_image_box{ } } </style> <script> (function( $ ) { 'use strict'; $(document).ready(function(){ $(document).find('.ays-pb-modals').appendTo($(document.body)); let ays_pb_scrollTop_1 = parseInt($(document).find('.ays_pb_scroll_1').val()), ays_pb_delayOpen_1 = parseInt($(document).find('.ays_pb_delay_1').val()), time_pb_1 = $(document).find('.ays_pb_timer_1 span').data('seconds'), ays_pb_effectIn_1 = $(document).find('#ays_pb_modal_animate_in_1').val(), ays_pb_animation_close_speed = $(document).find('#ays_pb_animation_close_speed_1').val(), ays_pb_animation_close_seconds = (ays_pb_animation_close_speed / 1000); if( ays_pb_delayOpen_1 == 0 && ays_pb_scrollTop_1 == 0){ $(document).find('.av_pop_modals_1').css('display','block'); } ays_pb_animation_close_speed = parseFloat(ays_pb_animation_close_speed) - 50; $(document).find('.ays_music_sound').css({'display':'none'}); if(time_pb_1 !== undefined){ if(time_pb_1 !== 0){ $(document).find('#ays-pb-modal-checkbox_1').trigger('click'); if(ays_pb_scrollTop_1 == 0){ var ays_pb_flag = true; $(document).find('.ays-pb-modal_1').css({ 'animation-duration': ays_pb_animation_close_seconds + 's' }); let timer_pb_1 = setInterval(function(){ let newTime_pb_1 = time_pb_1--; let ays_pb_effectOut_1 = $(document).find('#ays_pb_modal_animate_out_1').val(); $(document).find('.ays_pb_timer_1 span').text(newTime_pb_1); if(newTime_pb_1 <= 0){ $(document).find('.ays-pb-modal-close_1').trigger('click'); $(document).find('.ays-pb-modal_1').attr('class', 'ays-pb-modal ays-pb-modal_1 '+ays_pb_effectOut_1); if(ays_pb_effectOut_1 != 'none'){ setTimeout(function(){ $(document).find('.ays-pb-modal_1').css('display', 'none'); $(document).find('.ays-pb-modal_1').attr('data-ays-flag','true'); }, ays_pb_animation_close_speed); }else{ $(document).find('.ays-pb-modal_1').css('display', 'none'); $(document).find('.ays-pb-modal_1').attr('data-ays-flag','true'); } clearInterval(timer_pb_1); } $(document).find('.ays-pb-modal-close_1').one('click', function(){ $(document).find('.av_pop_modals_1').css('pointer-events', 'none'); $(document).find('.ays-pb-modal_1').attr('class', 'ays-pb-modal ays-pb-modal_1 '+ays_pb_effectOut_1); $(this).parents('.ays-pb-modals').find('iframe').each(function(){ var key = /https:\/\/www.youtube.com/; var src = $(this).attr('src'); $(this).attr('src', $(this).attr('src')); }); $(this).parents('.ays-pb-modals').find('video.wp-video-shortcode').each(function(){ if(typeof $(this).get(0) != 'undefined'){ if ( ! $(this).get(0).paused ) { $(this).get(0).pause(); } } }); $(this).parents('.ays-pb-modals').find('audio.wp-audio-shortcode').each(function(){ if(typeof $(this).get(0) != 'undefined'){ if ( ! $(this).get(0).paused ) { $(this).get(0).pause(); } } }); var close_sound_src = $(document).find('#ays_pb_close_sound_1').attr('src'); if('1' && typeof close_sound_src !== 'undefined' && 'off' === 'on'){ if('1' !== 0){ var playPromise = $(document).find('#ays_pb_close_sound_1').get(0).play(); if (playPromise !== undefined) { playPromise.then(function() { audio.pause(); }).catch(function(error) { }); } } } if(ays_pb_effectOut_1 != 'none'){ setTimeout(function(){ $(document).find('.ays-pb-modal_1').css('display', 'none'); $(document).find('.av_pop_modals_1').css('display', 'none'); $(document).find('.ays-pb-modal_1').attr('data-ays-flag','true'); if($('#ays_pb_close_sound_1').get(0) != undefined){ if(!$('#ays_pb_close_sound_1').get(0).paused){ $(document).find('.ays-pb-modal_1').css('display', 'none'); var audio = $('#ays_pb_close_sound_1').get(0); audio.pause(); audio.currentTime = 0; } } }, ays_pb_animation_close_speed); }else{ $(document).find('.ays-pb-modal_1').css('display', 'none'); $(document).find('.av_pop_modals_1').css('display', 'none'); $(document).find('.ays-pb-modal_1').attr('data-ays-flag','true'); if($('#ays_pb_close_sound_1').get(0) != undefined){ if(!$('#ays_pb_close_sound_1').get(0).paused){ $(document).find('.ays-pb-modal_1').css('display', 'none'); var audio = $('#ays_pb_close_sound_1').get(0); audio.pause(); audio.currentTime = 0; } } } $(document).find('#ays-pb-screen-shade_1').css({'opacity': '0', 'display': 'none'}); clearInterval(timer_pb_1); }); $(document).on('keydown', function(event) { if('1' && ays_pb_flag){ if (event.keyCode == 27) { $(document).find('.ays-pb-modal-close_1').trigger('click'); } } ays_pb_flag = false; }); },1000); if('1' && 'On' == 'On'){ $(document).find('.av_pop_modals_1').on('click', function(e) { var pb_parent = $(this); var pb_div = $(this).find('.ays-pb-modal_1'); if (!pb_div.is(e.target) && pb_div.has(e.target).length === 0){ $(document).find('.ays-pb-modal-close_1').click(); } }); } } } else { $(document).find('.ays_pb_timer_1').css('display','none'); $(document).find('.ays-pb-modal_1').css({ 'animation-duration': ays_pb_animation_close_seconds + 's' }); $(document).find('.ays-pb-modal-close_1').one('click', function(){ let ays_pb_effectOut_1 = $(document).find('#ays_pb_modal_animate_out_1').val(); $(document).find('.av_pop_modals_1').css('pointer-events', 'none'); $(document).find('.ays-pb-modal_1').attr('class', 'ays-pb-modal ays-pb-modal_1 '+ays_pb_effectOut_1); $(this).parents('.ays-pb-modals').find('iframe').each(function(){ var key = /https:\/\/www.youtube.com/; var src = $(this).attr('src'); $(this).attr('src', $(this).attr('src')); }); $(this).parents('.ays-pb-modals').find('video.wp-video-shortcode').each(function(){ if(typeof $(this).get(0) != 'undefined'){ if ( ! $(this).get(0).paused ) { $(this).get(0).pause(); } } }); $(this).parents('.ays-pb-modals').find('audio.wp-audio-shortcode').each(function(){ if(typeof $(this).get(0) != 'undefined'){ if ( ! $(this).get(0).paused ) { $(this).get(0).pause(); } } }); if(ays_pb_effectOut_1 != 'none'){ setTimeout(function(){ $(document).find('.ays-pb-modal_1').css('display', 'none'); $(document).find('.av_pop_modals_1').css('display', 'none'); $(document).find('.ays-pb-modal_1').attr('data-ays-flag','true'); if($('#ays_pb_close_sound_1').get(0) != undefined){ if(!$('#ays_pb_close_sound_1').get(0).paused){ $(document).find('.ays-pb-modal_1').css('display', 'none'); var audio = $('#ays_pb_close_sound_1').get(0); audio.pause(); audio.currentTime = 0; } } }, ays_pb_animation_close_speed); }else{ $(document).find('.ays-pb-modal_1').css('display', 'none'); $(document).find('.av_pop_modals_1').css('display', 'none'); $(document).find('.ays-pb-modal_1').attr('data-ays-flag','true'); if($('#ays_pb_close_sound_1').get(0) != undefined){ if(!$('#ays_pb_close_sound_1').get(0).paused){ $(document).find('.ays-pb-modal_1').css('display', 'none'); var audio = $('#ays_pb_close_sound_1').get(0); audio.pause(); audio.currentTime = 0; } } } $(document).find('#ays-pb-screen-shade_1').css({'opacity': '0', 'display': 'none'}); }); } } let count = 0; if( ays_pb_scrollTop_1 !== 0 ){ $(window).scroll(function() { if(($(this).scrollTop() >= ays_pb_scrollTop_1) && (count === 0)) { count++; if( ays_pb_delayOpen_1 !== 0 ){ $(document).find('.ays-pb-modal_1').css('animation-delay', ays_pb_delayOpen_1/1000); setTimeout(function(){ $(document).find('.av_pop_modals_1').css('display','block'); $(document).find('.ays-pb-modal_1').addClass(ays_pb_effectIn_1); $(document).find('.ays-pb-modal_1').css('display', 'block'); $(document).find('#ays-pb-screen-shade_1').css({'opacity': '0.500000'}); $(document).find('.ays-pb-modal-check_1').prop('checked', true); }, ays_pb_delayOpen_1); }else{ $(document).find('.av_pop_modals_1').css('display','block'); $(document).find('.ays-pb-modal_1').addClass(ays_pb_effectIn_1); $(document).find('.ays-pb-modal_1').css('display', 'block'); $(document).find('#ays-pb-screen-shade_1').css({'opacity': '0.500000'}); $(document).find('.ays-pb-modal-check_1').prop('checked', true); } if (0 != 0 && 'off' != 'on') { let close_button_delay = 0; if (300 != 0) { close_button_delay += Math.floor(300); } $(document).find('.ays-pb-modal-close_1').css({'display': 'none'}); setTimeout(function(){ $(document).find('.ays-pb-modal-close_1').css({'display': 'block'}); }, close_button_delay ); } if(0 != 0){ $(document).find('.ays-pb-modal_1').css({ 'animation-duration': ays_pb_animation_close_seconds + 's' }); let timer_pb_1 = setInterval(function(){ let newTime_pb_1 = time_pb_1--; let ays_pb_effectOut_1 = $(document).find('#ays_pb_modal_animate_out_1').val(); $(document).find('.ays_pb_timer_1 span').text(newTime_pb_1); if(newTime_pb_1 <= 0){ $(document).find('.ays-pb-modal-close_1').trigger('click'); $(document).find('.ays-pb-modal_1').attr('class', 'ays-pb-modal ays-pb-modal_1 '+ays_pb_effectOut_1); if(ays_pb_effectOut_1 != 'none'){ setTimeout(function(){ $(document).find('.ays-pb-modal_1').css('display', 'none'); $(document).find('.ays-pb-modal_1').attr('data-ays-flag','true'); }, ays_pb_animation_close_speed); }else{ $(document).find('.ays-pb-modal_1').css('display', 'none'); $(document).find('.ays-pb-modal_1').attr('data-ays-flag','true'); } clearInterval(timer_pb_1); } $(document).find('.ays-pb-modal-close_1').one('click', function(){ $(document).find('.av_pop_modals_1').css('pointer-events', 'none'); $(document).find('.ays-pb-modal_1').attr('class', 'ays-pb-modal ays-pb-modal_1 '+ays_pb_effectOut_1); $(this).parents('.ays-pb-modals').find('iframe').each(function(){ var key = /https:\/\/www.youtube.com/; var src = $(this).attr('src'); $(this).attr('src', $(this).attr('src')); }); $(this).parents('.ays-pb-modals').find('video.wp-video-shortcode').each(function(){ if(typeof $(this).get(0) != 'undefined'){ if ( ! $(this).get(0).paused ) { $(this).get(0).pause(); } } }); $(this).parents('.ays-pb-modals').find('audio.wp-audio-shortcode').each(function(){ if(typeof $(this).get(0) != 'undefined'){ if ( ! $(this).get(0).paused ) { $(this).get(0).pause(); } } }); if(ays_pb_effectOut_1 != 'none'){ setTimeout(function(){ $(document).find('.ays-pb-modal_1').css('display', 'none'); $(document).find('.av_pop_modals_1').css('display', 'none'); $(document).find('.ays-pb-modal_1').attr('data-ays-flag','true'); if($('#ays_pb_close_sound_1').get(0) != undefined){ if(!$('#ays_pb_close_sound_1').get(0).paused){ $(document).find('.ays-pb-modal_1').css('display', 'none'); var audio = $('#ays_pb_close_sound_1').get(0); audio.pause(); audio.currentTime = 0; } } }, ays_pb_animation_close_speed); }else{ $(document).find('.ays-pb-modal_1').css('display', 'none'); $(document).find('.av_pop_modals_1').css('display', 'none'); $(document).find('.ays-pb-modal_1').attr('data-ays-flag','true'); if($('#ays_pb_close_sound_1').get(0) != undefined){ if(!$('#ays_pb_close_sound_1').get(0).paused){ $(document).find('.ays-pb-modal_1').css('display', 'none'); var audio = $('#ays_pb_close_sound_1').get(0); audio.pause(); audio.currentTime = 0; } } } $(document).find('#ays-pb-screen-shade_1').css({'opacity': '0', 'display': 'none'}); clearInterval(timer_pb_1); }); var ays_pb_flag = true; $(document).on('keydown', function(event) { if('1' && ays_pb_flag){ if (event.keyCode == 27) { $(document).find('.ays-pb-modal-close_1').trigger('click'); ays_pb_flag = false; } } }); },1000); } } }); }else{ if( ays_pb_delayOpen_1 !== 0 ){ $(document).find('.ays-pb-modal_1').css('animation-delay', ays_pb_delayOpen_1/1000); setTimeout(function(){ $(document).find('.av_pop_modals_1').css('display','block'); $(document).find('.ays-pb-modal_1').addClass(ays_pb_effectIn_1); $(document).find('.ays-pb-modal_1').css('display', 'block'); $(document).find('#ays-pb-screen-shade_1').css({'opacity': '0.500000'}); $(document).find('.ays-pb-modal-check_1').attr('checked', 'checked'); if(''){ $(document).find('body').removeClass('pb_enable_scroll'); $(document).find('body').addClass('pb_disable_scroll'); $(document).find('html').removeClass('pb_enable_scroll'); $(document).find('html').addClass('pb_disable_scroll'); } }, ays_pb_delayOpen_1); } else { if($(document).find('.ays_pb_abt_1').val() != 'clickSelector'){ $(document).find('.av_pop_modals_1').css('display','block'); $(document).find('.ays-pb-modal_1').addClass(ays_pb_effectIn_1); $(document).find('.ays-pb-modal_1').css('display', 'block'); $(document).find('#ays-pb-screen-shade_1').css({'opacity': '0.500000'}); $(document).find('.ays-pb-modal-check_1').attr('checked', 'checked'); if(''){ $(document).find('body').removeClass('pb_enable_scroll'); $(document).find('body').addClass('pb_disable_scroll'); $(document).find('html').removeClass('pb_enable_scroll'); $(document).find('html').addClass('pb_disable_scroll'); } } } } if ('On' != 'On'){ $(document).find('#ays-pb-screen-shade_1').css({'opacity': '0', 'display': 'none !important', 'pointer-events': 'none', 'background': 'none'}); $(document).find('.ays-pb-modal_1').css('pointer-events', 'auto'); $(document).find('.av_pop_modals_1').css('pointer-events','none'); }; if($(document).find('.ays-pb-modals video').hasClass('wp-video-shortcode')){ var videoWidth = $(document).find('.ays-pb-modals video.wp-video-shortcode').attr('width'); var videoHeight = $(document).find('.ays-pb-modals video.wp-video-shortcode').attr('height'); setTimeout(function(){ $(document).find('.ays-pb-modals .wp-video').removeAttr('style'); $(document).find('.ays-pb-modals .mejs-container').removeAttr('style'); $(document).find('.ays-pb-modals video.wp-video-shortcode').removeAttr('style'); $(document).find('.ays-pb-modals .wp-video').css({'width': '100%'}); $(document).find('.ays-pb-modals .mejs-container').css({'width': '100%','height': videoHeight + 'px'}); $(document).find('.ays-pb-modals video.wp-video-shortcode').css({'width': '100%','height': videoHeight + 'px'}); },1000); } if($(document).find('.ays-pb-modals iframe').attr('style') != ''){ setTimeout(function(){ $(document).find('.ays-pb-modals iframe').removeAttr('style'); },500); } if(0 == 0){ if('1' && 'On' == 'On'){ $(document).find('.av_pop_modals_1').on('click', function(e) { var pb_parent = $(this); var pb_div = $(this).find('.ays-pb-modal_1'); if (!pb_div.is(e.target) && pb_div.has(e.target).length === 0){ $(document).find('.ays-pb-modal-close_1').click(); } }); } var ays_pb_flag = true; $(document).on('keydown', function(event) { if('1' && ays_pb_flag){ if (event.keyCode == 27) { $(document).find('.ays-pb-modal-close_1').trigger('click'); ays_pb_flag = false; } } }); } jQuery(document).on('click', '.ays-pb-modal-close_1', function() { $(document).find('body').removeClass('pb_disable_scroll'); $(document).find('body').addClass('pb_enable_scroll'); $(document).find('html').removeClass('pb_disable_scroll'); $(document).find('html').addClass('pb_enable_scroll'); }); }); })( jQuery ); </script><a href=""><div id="royal_prettyphoto_tab" class="royal_prettyphoto_contents royal_prettyphoto_left"></div></a><style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <link rel='stylesheet' id='ays-pb-css' href='http://trlic.com/wp-content/plugins/ays-popup-box/public/css/ays-pb-public.css?ver=3.4.3' type='text/css' media='all' /> <script type='text/javascript' src='http://trlic.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=5.7.3' id='swv-js'></script> <script type='text/javascript' id='contact-form-7-js-extra'> /* <![CDATA[ */ var wpcf7 = {"api":{"root":"http:\/\/trlic.com\/wp-json\/","namespace":"contact-form-7\/v1"}}; /* ]]> */ </script> <script type='text/javascript' src='http://trlic.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=5.7.3' id='contact-form-7-js'></script> <script type='text/javascript' src='https://www.google.com/recaptcha/api.js?render=6LcfioMUAAAAAAUKzy7dzYvRor-cudOUhYwXkUYK&ver=3.0' id='google-recaptcha-js'></script> <script type='text/javascript' src='http://trlic.com/wp-includes/js/dist/vendor/regenerator-runtime.js?ver=0.13.9' id='regenerator-runtime-js'></script> <script type='text/javascript' src='http://trlic.com/wp-includes/js/dist/vendor/wp-polyfill.js?ver=3.15.0' id='wp-polyfill-js'></script> <script type='text/javascript' id='wpcf7-recaptcha-js-extra'> /* <![CDATA[ */ var wpcf7_recaptcha = {"sitekey":"6LcfioMUAAAAAAUKzy7dzYvRor-cudOUhYwXkUYK","actions":{"homepage":"homepage","contactform":"contactform"}}; /* ]]> */ </script> <script type='text/javascript' src='http://trlic.com/wp-content/plugins/contact-form-7/modules/recaptcha/index.js?ver=5.7.3' id='wpcf7-recaptcha-js'></script> <script type='text/javascript' src='http://trlic.com/wp-content/plugins/js_composer/assets/js/dist/js_composer_front.min.js?ver=5.4.5' id='wpb_composer_front_js-js'></script> <script type='text/javascript' src='http://trlic.com/wp-includes/js/jquery/ui/core.js?ver=1.13.2' id='jquery-ui-core-js'></script> <script type='text/javascript' src='http://trlic.com/wp-includes/js/jquery/ui/tabs.js?ver=1.13.2' id='jquery-ui-tabs-js'></script> <script type='text/javascript' src='http://trlic.com/wp-content/plugins/js_composer/assets/lib/bower/jquery-ui-tabs-rotate/jquery-ui-tabs-rotate.min.js?ver=5.4.5' id='jquery_ui_tabs_rotate-js'></script> </body> </html>