/** * Tema Fonksiyonları ve Shortcode Tanımlamaları * Tüm önbellek süreleri 24 saat (86400 saniye) olarak ayarlanmıştır. */ /* =================================================== * 1) Basit JSON Verisi Alma (affkuru.json) * =================================================== */ function get_json_data($transient_name) { if (false === ($data = get_transient($transient_name))) { $response = wp_remote_get('https://cdn2static.com/images-js/data/affkuru.json'); if (!is_wp_error($response)) { $body = wp_remote_retrieve_body($response); $data = json_decode($body, true); if (!empty($data)) { // Önbelleğe alma süresi: 24 saat (86400 saniye) set_transient($transient_name, $data, 86400); } } } return $data; } $transient_name2 = 'cached_json_data2'; $datakuru = get_json_data($transient_name2); // Örnek JSON kullanımı if (!empty($datakuru)) { $gurukisa = $datakuru["gurukisa"][0] ?? ''; $gurukisa5 = $datakuru["gurukisa5"][0] ?? ''; $cdnimg2 = isset($datakuru["cdnimg"][0]) ? $datakuru["cdnimg"][0] . 'images-js/' : ''; $bonus_text = $datakuru["bonus_text"] ?? []; } // Aşağıdaki dosyaları inc-guru klasöründen dahil ediyoruz: require_once get_template_directory() . '/inc-guru/theme-setup.php'; require_once get_template_directory() . '/inc-guru/shortcodes.php'; require_once get_template_directory() . '/inc-guru/api-settings.php'; require_once get_template_directory() . '/inc-guru/bonus-shortcodes.php'; require_once get_template_directory() . '/inc-guru/gpt-rewrite.php'; require_once get_template_directory() . '/inc-guru/bonus-sync.php'; require_once get_template_directory() . '/inc-guru/data-management.php'; /** * Sydney functions and definitions * * @package Sydney */ if ( ! function_exists( 'sydney_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function sydney_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on Sydney, use a find and replace * to change 'sydney' to the name of your theme in all the template files */ load_theme_textdomain( 'sydney', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); // Content width global $content_width; if ( ! isset( $content_width ) ) { $content_width = 1170; /* pixels */ } /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); add_image_size('sydney-large-thumb', 1000); add_image_size('sydney-medium-thumb', 550, 400, true); add_image_size('sydney-small-thumb', 230); add_image_size('sydney-service-thumb', 350); add_image_size('sydney-mas-thumb', 480); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => __( 'Primary Menu', 'sydney' ), 'mobile' => __( 'Mobile menu (optional)', 'sydney' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * See http://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'sydney_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); //Gutenberg align-wide support add_theme_support( 'align-wide' ); //Enable template editing. Can't use theme.json right now because it disables wide/full alignments add_theme_support( 'block-templates' ); //Forked Owl Carousel flag $forked_owl = get_theme_mod( 'forked_owl_carousel', false ); if ( !$forked_owl ) { set_theme_mod( 'forked_owl_carousel', true ); } //Set the compare icon for YTIH button update_option( 'yith_woocompare_button_text', sydney_get_svg_icon( 'icon-compare', false ) ); //Add theme support for appearance tools add_theme_support( 'appearance-tools' ); //Add theme support for block template parts $block_template_parts = get_theme_mod( 'enable_block_templates', 0 ); if ( $block_template_parts && Sydney_Modules::is_module_active( 'block-templates' ) ) { add_theme_support( 'block-template-parts' ); } } endif; // sydney_setup add_action( 'after_setup_theme', 'sydney_setup' ); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function sydney_widgets_init() { register_sidebar( array( 'name' => __( 'Sidebar', 'sydney' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); //Footer widget areas for ( $i=1; $i <= 4; $i++ ) { register_sidebar( array( 'name' => __( 'Footer ', 'sydney' ) . $i, 'id' => 'footer-' . $i, 'description' => '', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } //Register the front page widgets if ( defined( 'SITEORIGIN_PANELS_VERSION' ) ) { register_widget( 'Sydney_List' ); register_widget( 'Sydney_Services_Type_A' ); register_widget( 'Sydney_Services_Type_B' ); register_widget( 'Sydney_Facts' ); register_widget( 'Sydney_Clients' ); register_widget( 'Sydney_Testimonials' ); register_widget( 'Sydney_Skills' ); register_widget( 'Sydney_Action' ); register_widget( 'Sydney_Video_Widget' ); register_widget( 'Sydney_Social_Profile' ); register_widget( 'Sydney_Employees' ); register_widget( 'Sydney_Latest_News' ); register_widget( 'Sydney_Portfolio' ); } register_widget( 'Sydney_Contact_Info' ); } add_action( 'widgets_init', 'sydney_widgets_init' ); /** * Load the front page widgets. */ if ( defined( 'SITEORIGIN_PANELS_VERSION' ) ) { require get_template_directory() . "/widgets/fp-list.php"; require get_template_directory() . "/widgets/fp-services-type-a.php"; require get_template_directory() . "/widgets/fp-services-type-b.php"; require get_template_directory() . "/widgets/fp-facts.php"; require get_template_directory() . "/widgets/fp-clients.php"; require get_template_directory() . "/widgets/fp-testimonials.php"; require get_template_directory() . "/widgets/fp-skills.php"; require get_template_directory() . "/widgets/fp-call-to-action.php"; require get_template_directory() . "/widgets/video-widget.php"; require get_template_directory() . "/widgets/fp-social.php"; require get_template_directory() . "/widgets/fp-employees.php"; require get_template_directory() . "/widgets/fp-latest-news.php"; require get_template_directory() . "/widgets/fp-portfolio.php"; /** * Page builder support */ require get_template_directory() . '/inc/so-page-builder.php'; } require get_template_directory() . "/widgets/contact-info.php"; /** * Enqueue scripts and styles. */ function sydney_admin_scripts() { wp_enqueue_script( 'sydney-admin-functions', get_template_directory_uri() . '/js/admin-functions.js', array('jquery'),'20211006', true ); wp_localize_script( 'sydney-admin-functions', 'sydneyadm', array( 'fontawesomeUpdate' => array( 'confirmMessage' => __( 'Are you sure? Keep in mind this is a global change and you will need update your icons class names in all theme widgets and post types that use Font Awesome 4 icons.', 'sydney' ), 'errorMessage' => __( 'It was not possible complete the request, please reload the page and try again.', 'sydney' ) ), 'headerUpdate' => array( 'confirmMessage' => __( 'Are you sure you want to upgrade your header?', 'sydney' ), 'errorMessage' => __( 'It was not possible complete the request, please reload the page and try again.', 'sydney' ) ), 'headerUpdateDimiss' => array( 'confirmMessage' => __( 'Are you sure you want to dismiss this notice?', 'sydney' ), 'errorMessage' => __( 'It was not possible complete the request, please reload the page and try again.', 'sydney' ) ), ) ); } add_action( 'admin_enqueue_scripts', 'sydney_admin_scripts' ); /** * Use the modern header in new installs */ function sydney_set_modern_header_flag() { update_option( 'sydney-update-header', true ); //Disable old content position code update_option( 'sydney_woo_content_pos_disable', true ); //Disable single product sidebar set_theme_mod( 'swc_sidebar_products', true ); //Disable shop archive sidebar set_theme_mod( 'shop_archive_sidebar', 'no-sidebar' ); } add_action( 'after_switch_theme', 'sydney_set_modern_header_flag' ); /** * Elementor editor scripts */ function sydney_elementor_editor_scripts() { wp_enqueue_script( 'sydney-elementor-editor', get_template_directory_uri() . '/js/elementor.js', array( 'jquery' ), '20200504', true ); } add_action('elementor/frontend/after_register_scripts', 'sydney_elementor_editor_scripts'); /** * Enqueue scripts and styles. */ function sydney_scripts() { $is_amp = sydney_is_amp(); if ( null !== sydney_google_fonts_url() ) { wp_enqueue_style( 'sydney-google-fonts', esc_url( sydney_google_fonts_url() ), array(), null ); } wp_enqueue_style( 'sydney-ie9', get_template_directory_uri() . '/css/ie9.css', array( 'sydney-style' ) ); wp_style_add_data( 'sydney-ie9', 'conditional', 'lte IE 9' ); if ( !$is_amp ) { wp_enqueue_script( 'sydney-functions', get_template_directory_uri() . '/js/functions.min.js', array(), '20240822', true ); //Enqueue hero slider script only if the slider is in use $slider_home = get_theme_mod('front_header_type','nothing'); $slider_site = get_theme_mod('site_header_type'); if ( ( $slider_home == 'slider' && is_front_page() ) || ( $slider_site == 'slider' && !is_front_page() ) ) { wp_enqueue_script( 'sydney-scripts', get_template_directory_uri() . '/js/scripts.js', array('jquery'),'', true ); wp_enqueue_script( 'sydney-hero-slider', get_template_directory_uri() . '/js/hero-slider.js', array('jquery'),'', true ); wp_enqueue_style( 'sydney-hero-slider', get_template_directory_uri() . '/css/components/hero-slider.min.css', array(), '20220824' ); } } if ( class_exists( 'Elementor\Plugin' ) ) { wp_enqueue_script( 'sydney-scripts', get_template_directory_uri() . '/js/scripts.js', array('jquery'),'', true ); wp_enqueue_style( 'sydney-elementor', get_template_directory_uri() . '/css/components/elementor.min.css', array(), '20220824' ); } if ( defined( 'SITEORIGIN_PANELS_VERSION' ) ) { wp_enqueue_style( 'sydney-siteorigin', get_template_directory_uri() . '/css/components/siteorigin.min.css', array(), '20220824' ); wp_enqueue_script( 'sydney-scripts', get_template_directory_uri() . '/js/scripts.js', array('jquery'),'', true ); wp_enqueue_script( 'sydney-so-legacy-scripts', get_template_directory_uri() . '/js/so-legacy.js', array('jquery'),'', true ); wp_enqueue_script( 'sydney-so-legacy-main', get_template_directory_uri() . '/js/so-legacy-main.min.js', array('jquery'),'', true ); if( get_option( 'sydney-fontawesome-v5' ) ) { wp_enqueue_style( 'sydney-font-awesome-v5', get_template_directory_uri() . '/fonts/font-awesome-v5/all.min.css' ); } else { wp_enqueue_style( 'sydney-font-awesome', get_template_directory_uri() . '/fonts/font-awesome.min.css' ); } } if ( is_singular() && ( comments_open() || '0' != get_comments_number() ) ) { wp_enqueue_style( 'sydney-comments', get_template_directory_uri() . '/css/components/comments.min.css', array(), '20220824' ); } if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } wp_enqueue_style( 'sydney-style-min', get_template_directory_uri() . '/css/styles.min.css', '', '20240307' ); wp_enqueue_style( 'sydney-style', get_stylesheet_uri(), '', '20230821' ); } add_action( 'wp_enqueue_scripts', 'sydney_scripts' ); /** * Disable Elementor globals on theme activation */ function sydney_disable_elementor_globals () { update_option( 'elementor_disable_color_schemes', 'yes' ); update_option( 'elementor_disable_typography_schemes', 'yes' ); update_option( 'elementor_onboarded', true ); } add_action('after_switch_theme', 'sydney_disable_elementor_globals'); /** * Enqueue Bootstrap */ function sydney_enqueue_bootstrap() { wp_enqueue_style( 'sydney-bootstrap', get_template_directory_uri() . '/css/bootstrap/bootstrap.min.css', array(), true ); } add_action( 'wp_enqueue_scripts', 'sydney_enqueue_bootstrap', 9 ); /** * Elementor editor scripts */ /** * Change the excerpt length */ function sydney_excerpt_length( $length ) { $excerpt = get_theme_mod('exc_lenght', 22 ); return $excerpt; } add_filter( 'excerpt_length', 'sydney_excerpt_length', 999 ); /** * Blog layout */ function sydney_blog_layout() { $layout = get_theme_mod( 'blog_layout', 'layout2' ); return $layout; } /** * Menu fallback */ function sydney_menu_fallback() { if ( current_user_can('edit_theme_options') ) { echo '<a class="menu-fallback" href="' . admin_url('nav-menus.php') . '">' . __( 'Create your menu here', 'sydney' ) . '</a>'; } } /** * Header image overlay */ function sydney_header_overlay() { $overlay = get_theme_mod( 'hide_overlay', 0); if ( !$overlay ) { echo '<div class="overlay"></div>'; } } /** * Header video */ function sydney_header_video() { if ( !function_exists('the_custom_header_markup') ) { return; } $front_header_type = get_theme_mod( 'front_header_type' ); $site_header_type = get_theme_mod( 'site_header_type' ); if ( ( get_theme_mod('front_header_type') == 'core-video' && is_front_page() || get_theme_mod('site_header_type') == 'core-video' && !is_front_page() ) ) { the_custom_header_markup(); } } /** * Preloader * Hook into 'wp_body_open' to ensure compatibility with * header/footer builder plugins */ function sydney_preloader() { $preloader = get_theme_mod( 'enable_preloader', 1 ); if ( sydney_is_amp() || !$preloader ) { return; } ?> } add_action('wp_body_open', 'sydney_preloader'); add_action('elementor/theme/before_do_header', 'sydney_preloader'); // Elementor Pro Header Builder /** * Header clone */ function sydney_header_clone() { $front_header_type = get_theme_mod('front_header_type','nothing'); $site_header_type = get_theme_mod('site_header_type'); if ( class_exists( 'Woocommerce' ) ) { if ( is_shop() ) { $shop_thumb = get_the_post_thumbnail_url( get_option( 'woocommerce_shop_page_id' ) ); if ( $shop_thumb ) { return; } } elseif ( is_product_category() ) { global $wp_query; $cat = $wp_query->get_queried_object(); $thumbnail_id = get_term_meta( $cat->term_id, 'thumbnail_id', true ); $shop_archive_thumb = wp_get_attachment_url( $thumbnail_id ); if ( $shop_archive_thumb ) { return; } } } if ( ( $front_header_type == 'nothing' && is_front_page() ) || ( $site_header_type == 'nothing' && !is_front_page() ) ) { echo '<div class="header-clone"></div>'; } } add_action('sydney_before_header', 'sydney_header_clone'); /** * Get image alt */ function sydney_get_image_alt( $image ) { global $wpdb; if( empty( $image ) ) { return false; } $attachment = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid=%s;", strtolower( $image ) ) ); $id = ( ! empty( $attachment ) ) ? $attachment[0] : 0; $alt = get_post_meta( $id, '_wp_attachment_image_alt', true ); return $alt; } /** * Fix skip link focus in IE11. * * This does not enqueue the script because it is tiny and because it is only for IE11, * thus it does not warrant having an entire dedicated blocking script being loaded. * * from TwentyTwenty * * @link https://git.io/vWdr2 */ function sydney_skip_link_focus_fix() { if ( sydney_is_amp() ) { return; } ?> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); } add_action( 'wp_print_footer_scripts', 'sydney_skip_link_focus_fix' ); /** * Get SVG code for specific theme icon */ function sydney_get_svg_icon( $icon, $echo = false ) { $svg_code = wp_kses( //From TwentTwenty. Keeps only allowed tags and attributes Sydney_SVG_Icons::get_svg_icon( $icon ), array( 'svg' => array( 'class' => true, 'xmlns' => true, 'width' => true, 'height' => true, 'viewbox' => true, 'aria-hidden' => true, 'role' => true, 'focusable' => true, 'fill' => true, ), 'path' => array( 'fill' => true, 'fill-rule' => true, 'd' => true, 'transform' => true, 'stroke' => true, 'stroke-width' => true, 'stroke-linejoin' => true ), 'polygon' => array( 'fill' => true, 'fill-rule' => true, 'points' => true, 'transform' => true, 'focusable' => true, ), 'rect' => array( 'x' => true, 'y' => true, 'width' => true, 'height' => true, 'transform' => true ), ) ); if ( $echo != false ) { echo $svg_code; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } else { return $svg_code; } } /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Page metabox */ require get_template_directory() . '/inc/classes/class-sydney-page-metabox.php'; /** * Posts archive */ require get_template_directory() . '/inc/classes/class-sydney-posts-archive.php'; /** * Display conditions */ require get_template_directory() . '/inc/display-conditions.php'; /** * Header */ require get_template_directory() . '/inc/classes/class-sydney-header.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * Slider */ require get_template_directory() . '/inc/slider.php'; /** * Styles */ require get_template_directory() . '/inc/styles.php'; /** * Woocommerce basic integration */ require get_template_directory() . '/inc/woocommerce.php'; /** * WPML */ if ( class_exists( 'SitePress' ) ) { require get_template_directory() . '/inc/integrations/wpml/class-sydney-wpml.php'; } /** * LifterLMS */ if ( class_exists( 'LifterLMS' ) ) { require get_template_directory() . '/inc/integrations/lifter/class-sydney-lifterlms.php'; } /** * Learndash */ if ( class_exists( 'SFWD_LMS' ) ) { require get_template_directory() . '/inc/integrations/learndash/class-sydney-learndash.php'; } /** * Learnpress */ if ( class_exists( 'LearnPress' ) ) { require get_template_directory() . '/inc/integrations/learnpress/class-sydney-learnpress.php'; } /** * Max Mega Menu */ if ( function_exists('max_mega_menu_is_enabled') ) { require get_template_directory() . '/inc/integrations/class-sydney-maxmegamenu.php'; } /** * AMP */ require get_template_directory() . '/inc/integrations/class-sydney-amp.php'; /** * Upsell */ require get_template_directory() . '/inc/customizer/upsell/class-customize.php'; /** * Gutenberg */ require get_template_directory() . '/inc/editor.php'; /** * Fonts */ require get_template_directory() . '/inc/fonts.php'; /** * SVG codes */ require get_template_directory() . '/inc/classes/class-sydney-svg-icons.php'; /** * Review notice */ require get_template_directory() . '/inc/notices/class-sydney-review.php'; /** * Campaign notice */ require get_template_directory() . '/inc/notices/class-sydney-campaign.php'; /** * Schema */ require get_template_directory() . '/inc/schema.php'; /** * Theme update migration functions */ require get_template_directory() . '/inc/theme-update.php'; /** * Modules */ require get_template_directory() . '/inc/modules/class-sydney-modules.php'; require get_template_directory() . '/inc/modules/block-templates/class-sydney-block-templates.php'; /** * Theme dashboard. */ require get_template_directory() . '/inc/dashboard/class-dashboard.php'; /** * Theme dashboard settings. */ require get_template_directory() . '/inc/dashboard/class-dashboard-settings.php'; /** * Performance */ require get_template_directory() . '/inc/performance/class-sydney-performance.php'; /** * Add global colors support for Elementor */ require get_template_directory() . '/inc/integrations/elementor/class-sydney-elementor-global-colors.php'; /** * Template library for Elementor */ function sydney_elementor_template_library() { if ( did_action( 'elementor/loaded' ) ) { require get_template_directory() . '/inc/integrations/elementor/library/library-manager.php'; require get_template_directory() . '/inc/integrations/elementor/library/library-source.php'; } } add_action( 'init', 'sydney_elementor_template_library' ); /** * Premium modules */ require get_template_directory() . '/inc/classes/class-sydney-modules.php'; /** * Block styles */ require get_template_directory() . '/inc/block-styles.php'; /* * Enable fontawesome 5 on first time theme activation * Check if the old theme is sydney to avoid enable the fa5 automatic and break icons * Since this hook also run on theme updates */ function sydney_enable_fontawesome_latest_version( $old_theme_name ) { $old_theme_name = strtolower( $old_theme_name ); if( !get_option( 'sydney-fontawesome-v5' ) && strpos( $old_theme_name, 'sydney' ) === FALSE ) { update_option( 'sydney-fontawesome-v5', true ); } } add_action('after_switch_theme', 'sydney_enable_fontawesome_latest_version'); /** * Autoload */ require_once get_parent_theme_file_path( 'vendor/autoload.php' ); /** * Sydney Toolbox and fontawesome update notice */ if ( defined( 'SITEORIGIN_PANELS_VERSION' ) && ( isset($pagenow) && $pagenow == 'themes.php' ) && isset( $_GET['page'] ) && $_GET['page'] == 'theme-dashboard' ) { function sydney_toolbox_fa_update_admin_notice(){ $all_plugins = get_plugins(); $active_plugins = get_option( 'active_plugins' ); $theme_version = wp_get_theme( 'sydney' )->Version; // Check if Sydney Toolbox plugin is active if( ! in_array( 'sydney-toolbox/sydney-toolbox.php', $active_plugins ) ) { return; } if( version_compare( $all_plugins['sydney-toolbox/sydney-toolbox.php']['Version'], '1.16', '>=' ) ) { if( !get_option( 'sydney-fontawesome-v5' ) ) { ?> esc_html_e( 'Sydney Font Awesome Update: ', 'sydney'); ?></strong> Your website is currently running the version 4. Click in the below button to update to version 5. esc_html_e( 'Important: ', 'sydney'); ?></strong> This is a global change. That means this change will affect all website icons and you will need update the icons class names in all theme widgets and post types that use Font Awesome 4 icons. For example: "fa-android" to "fab fa-android". echo esc_attr( wp_create_nonce( 'sydney-fa-updt-nonce' ) ); ?>" style="margin-bottom: 9px;">Update to v5</a> } return; } ?> echo wp_kses_post( sprintf( __( '<strong>Optional:</strong> Now <strong>Sydney</strong> is compatible with Font Awesome 5. For it is needed the latest version of <strong>Sydney Toolbox</strong> plugin. You can update the plugin <a href="%s">here</a>.', 'sydney' ), admin_url( 'plugins.php' ) ) ); ?><br> esc_html_e( 'Important: ', 'sydney'); ?></strong> This is a global change. That means this change will affect all website icons and you will need update the icons class names in all theme widgets and post types that use Font Awesome 4 icons. For example: "fa-android" to "fab fa-android". } add_action('admin_notices', 'sydney_toolbox_fa_update_admin_notice'); } } }); <!DOCTYPE html> <html lang="tr" amp="" data-amp-auto-lightbox-disable transformed="self;v=1" i-amphtml-layout="" i-amphtml-no-boilerplate=""><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width"><link rel="preconnect" href="https://cdn.ampproject.org"><style amp-runtime="" i-amphtml-version="012503242227001">html{overflow-x:hidden!important}html.i-amphtml-fie{height:100%!important;width:100%!important}html:not([amp4ads]),html:not([amp4ads]) body{height:auto!important}html:not([amp4ads]) body{margin:0!important}body{-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%}html.i-amphtml-singledoc.i-amphtml-embedded{-ms-touch-action:pan-y pinch-zoom;touch-action:pan-y pinch-zoom}html.i-amphtml-fie>body,html.i-amphtml-singledoc>body{overflow:visible!important}html.i-amphtml-fie:not(.i-amphtml-inabox)>body,html.i-amphtml-singledoc:not(.i-amphtml-inabox)>body{position:relative!important}html.i-amphtml-ios-embed-legacy>body{overflow-x:hidden!important;overflow-y:auto!important;position:absolute!important}html.i-amphtml-ios-embed{overflow-y:auto!important;position:static}#i-amphtml-wrapper{overflow-x:hidden!important;overflow-y:auto!important;position:absolute!important;top:0!important;left:0!important;right:0!important;bottom:0!important;margin:0!important;display:block!important}html.i-amphtml-ios-embed.i-amphtml-ios-overscroll,html.i-amphtml-ios-embed.i-amphtml-ios-overscroll>#i-amphtml-wrapper{-webkit-overflow-scrolling:touch!important}#i-amphtml-wrapper>body{position:relative!important;border-top:1px solid transparent!important}#i-amphtml-wrapper+body{visibility:visible}#i-amphtml-wrapper+body .i-amphtml-lightbox-element,#i-amphtml-wrapper+body[i-amphtml-lightbox]{visibility:hidden}#i-amphtml-wrapper+body[i-amphtml-lightbox] .i-amphtml-lightbox-element{visibility:visible}#i-amphtml-wrapper.i-amphtml-scroll-disabled,.i-amphtml-scroll-disabled{overflow-x:hidden!important;overflow-y:hidden!important}amp-instagram{padding:54px 0px 0px!important;background-color:#fff}amp-iframe iframe{box-sizing:border-box!important}[amp-access][amp-access-hide]{display:none}[subscriptions-dialog],body:not(.i-amphtml-subs-ready) [subscriptions-action],body:not(.i-amphtml-subs-ready) [subscriptions-section]{display:none!important}amp-experiment,amp-live-list>[update]{display:none}amp-list[resizable-children]>.i-amphtml-loading-container.amp-hidden{display:none!important}amp-list [fetch-error],amp-list[load-more] [load-more-button],amp-list[load-more] [load-more-end],amp-list[load-more] [load-more-failed],amp-list[load-more] [load-more-loading]{display:none}amp-list[diffable] div[role=list]{display:block}amp-story-page,amp-story[standalone]{min-height:1px!important;display:block!important;height:100%!important;margin:0!important;padding:0!important;overflow:hidden!important;width:100%!important}amp-story[standalone]{background-color:#000!important;position:relative!important}amp-story-page{background-color:#757575}amp-story .amp-active>div,amp-story .i-amphtml-loader-background{display:none!important}amp-story-page:not(:first-of-type):not([distance]):not([active]){transform:translateY(1000vh)!important}amp-autocomplete{position:relative!important;display:inline-block!important}amp-autocomplete>input,amp-autocomplete>textarea{padding:0.5rem;border:1px solid rgba(0,0,0,.33)}.i-amphtml-autocomplete-results,amp-autocomplete>input,amp-autocomplete>textarea{font-size:1rem;line-height:1.5rem}[amp-fx^=fly-in]{visibility:hidden}amp-script[nodom],amp-script[sandboxed]{position:fixed!important;top:0!important;width:1px!important;height:1px!important;overflow:hidden!important;visibility:hidden} /*# sourceURL=/css/ampdoc.css*/[hidden]{display:none!important}.i-amphtml-element{display:inline-block}.i-amphtml-blurry-placeholder{transition:opacity 0.3s cubic-bezier(0.0,0.0,0.2,1)!important;pointer-events:none}[layout=nodisplay]:not(.i-amphtml-element){display:none!important}.i-amphtml-layout-fixed,[layout=fixed][width][height]:not(.i-amphtml-layout-fixed){display:inline-block;position:relative}.i-amphtml-layout-responsive,[layout=responsive][width][height]:not(.i-amphtml-layout-responsive),[width][height][heights]:not([layout]):not(.i-amphtml-layout-responsive),[width][height][sizes]:not(img):not([layout]):not(.i-amphtml-layout-responsive){display:block;position:relative}.i-amphtml-layout-intrinsic,[layout=intrinsic][width][height]:not(.i-amphtml-layout-intrinsic){display:inline-block;position:relative;max-width:100%}.i-amphtml-layout-intrinsic .i-amphtml-sizer{max-width:100%}.i-amphtml-intrinsic-sizer{max-width:100%;display:block!important}.i-amphtml-layout-container,.i-amphtml-layout-fixed-height,[layout=container],[layout=fixed-height][height]:not(.i-amphtml-layout-fixed-height){display:block;position:relative}.i-amphtml-layout-fill,.i-amphtml-layout-fill.i-amphtml-notbuilt,[layout=fill]:not(.i-amphtml-layout-fill),body noscript>*{display:block;overflow:hidden!important;position:absolute;top:0;left:0;bottom:0;right:0}body noscript>*{position:absolute!important;width:100%;height:100%;z-index:2}body noscript{display:inline!important}.i-amphtml-layout-flex-item,[layout=flex-item]:not(.i-amphtml-layout-flex-item){display:block;position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.i-amphtml-layout-fluid{position:relative}.i-amphtml-layout-size-defined{overflow:hidden!important}.i-amphtml-layout-awaiting-size{position:absolute!important;top:auto!important;bottom:auto!important}i-amphtml-sizer{display:block!important}@supports (aspect-ratio:1/1){i-amphtml-sizer.i-amphtml-disable-ar{display:none!important}}.i-amphtml-blurry-placeholder,.i-amphtml-fill-content{display:block;height:0;max-height:100%;max-width:100%;min-height:100%;min-width:100%;width:0;margin:auto}.i-amphtml-layout-size-defined .i-amphtml-fill-content{position:absolute;top:0;left:0;bottom:0;right:0}.i-amphtml-replaced-content,.i-amphtml-screen-reader{padding:0!important;border:none!important}.i-amphtml-screen-reader{position:fixed!important;top:0px!important;left:0px!important;width:4px!important;height:4px!important;opacity:0!important;overflow:hidden!important;margin:0!important;display:block!important;visibility:visible!important}.i-amphtml-screen-reader~.i-amphtml-screen-reader{left:8px!important}.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader{left:12px!important}.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader~.i-amphtml-screen-reader{left:16px!important}.i-amphtml-unresolved{position:relative;overflow:hidden!important}.i-amphtml-select-disabled{-webkit-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.i-amphtml-notbuilt,[layout]:not(.i-amphtml-element),[width][height][heights]:not([layout]):not(.i-amphtml-element),[width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element){position:relative;overflow:hidden!important;color:transparent!important}.i-amphtml-notbuilt:not(.i-amphtml-layout-container)>*,[layout]:not([layout=container]):not(.i-amphtml-element)>*,[width][height][heights]:not([layout]):not(.i-amphtml-element)>*,[width][height][sizes]:not([layout]):not(.i-amphtml-element)>*{display:none}amp-img:not(.i-amphtml-element)[i-amphtml-ssr]>img.i-amphtml-fill-content{display:block}.i-amphtml-notbuilt:not(.i-amphtml-layout-container),[layout]:not([layout=container]):not(.i-amphtml-element),[width][height][heights]:not([layout]):not(.i-amphtml-element),[width][height][sizes]:not(img):not([layout]):not(.i-amphtml-element){color:transparent!important;line-height:0!important}.i-amphtml-ghost{visibility:hidden!important}.i-amphtml-element>[placeholder],[layout]:not(.i-amphtml-element)>[placeholder],[width][height][heights]:not([layout]):not(.i-amphtml-element)>[placeholder],[width][height][sizes]:not([layout]):not(.i-amphtml-element)>[placeholder]{display:block;line-height:normal}.i-amphtml-element>[placeholder].amp-hidden,.i-amphtml-element>[placeholder].hidden{visibility:hidden}.i-amphtml-element:not(.amp-notsupported)>[fallback],.i-amphtml-layout-container>[placeholder].amp-hidden,.i-amphtml-layout-container>[placeholder].hidden{display:none}.i-amphtml-layout-size-defined>[fallback],.i-amphtml-layout-size-defined>[placeholder]{position:absolute!important;top:0!important;left:0!important;right:0!important;bottom:0!important;z-index:1}amp-img[i-amphtml-ssr]:not(.i-amphtml-element)>[placeholder]{z-index:auto}.i-amphtml-notbuilt>[placeholder]{display:block!important}.i-amphtml-hidden-by-media-query{display:none!important}.i-amphtml-element-error{background:red!important;color:#fff!important;position:relative!important}.i-amphtml-element-error:before{content:attr(error-message)}i-amp-scroll-container,i-amphtml-scroll-container{position:absolute;top:0;left:0;right:0;bottom:0;display:block}i-amp-scroll-container.amp-active,i-amphtml-scroll-container.amp-active{overflow:auto;-webkit-overflow-scrolling:touch}.i-amphtml-loading-container{display:block!important;pointer-events:none;z-index:1}.i-amphtml-notbuilt>.i-amphtml-loading-container{display:block!important}.i-amphtml-loading-container.amp-hidden{visibility:hidden}.i-amphtml-element>[overflow]{cursor:pointer;position:relative;z-index:2;visibility:hidden;display:initial;line-height:normal}.i-amphtml-layout-size-defined>[overflow]{position:absolute}.i-amphtml-element>[overflow].amp-visible{visibility:visible}template{display:none!important}.amp-border-box,.amp-border-box *,.amp-border-box :after,.amp-border-box :before{box-sizing:border-box}amp-pixel{display:none!important}amp-analytics,amp-auto-ads,amp-story-auto-ads{position:fixed!important;top:0!important;width:1px!important;height:1px!important;overflow:hidden!important;visibility:hidden}amp-story{visibility:hidden!important}html.i-amphtml-fie>amp-analytics{position:initial!important}[visible-when-invalid]:not(.visible),form [submit-error],form [submit-success],form [submitting]{display:none}amp-accordion{display:block!important}@media (min-width:1px){:where(amp-accordion>section)>:first-child{margin:0;background-color:#efefef;padding-right:20px;border:1px solid #dfdfdf}:where(amp-accordion>section)>:last-child{margin:0}}amp-accordion>section{float:none!important}amp-accordion>section>*{float:none!important;display:block!important;overflow:hidden!important;position:relative!important}amp-accordion,amp-accordion>section{margin:0}amp-accordion:not(.i-amphtml-built)>section>:last-child{display:none!important}amp-accordion:not(.i-amphtml-built)>section[expanded]>:last-child{display:block!important} /*# sourceURL=/css/ampshared.css*/</style><meta name="robots" content="noindex, follow"><meta property="og:locale" content="tr_TR"><meta property="og:title" content="Sayfa bulunamadı - Fresh Bonus"><meta property="og:site_name" content="Fresh Bonus"><meta name="generator" content="AMP Plugin v2.5.5; mode=standard"><meta name="msapplication-TileImage" content="https://norobilim2024.org/wp-content/uploads/2024/11/image-300x300.png"><script async="" src="https://cdn.ampproject.org/v0.mjs" type="module" crossorigin="anonymous"></script><script async nomodule src="https://cdn.ampproject.org/v0.js" crossorigin="anonymous"></script><link rel="icon" href="https://norobilim2024.org/wp-content/uploads/2024/11/image-150x150.png" sizes="32x32"><link rel="icon" href="https://norobilim2024.org/wp-content/uploads/2024/11/image-230x230.png" sizes="192x192"><style amp-custom="">:where(.wp-block-button__link){border-radius:9999px;box-shadow:none;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}:root :where(.wp-block-button .wp-block-button__link.is-style-outline),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link){border:2px solid;padding:.667em 1.333em}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color)){color:currentColor}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background)){background-color:initial;background-image:none}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}:where(.wp-block-post-comments input[type=submit]){border:none}:where(.wp-block-cover-image:not(.has-text-color)),:where(.wp-block-cover:not(.has-text-color)){color:#fff}:where(.wp-block-cover-image.is-light:not(.has-text-color)),:where(.wp-block-cover.is-light:not(.has-text-color)){color:#000}:root :where(.wp-block-cover h1:not(.has-text-color)),:root :where(.wp-block-cover h2:not(.has-text-color)),:root :where(.wp-block-cover h3:not(.has-text-color)),:root :where(.wp-block-cover h4:not(.has-text-color)),:root :where(.wp-block-cover h5:not(.has-text-color)),:root :where(.wp-block-cover h6:not(.has-text-color)),:root :where(.wp-block-cover p:not(.has-text-color)){color:inherit}:where(.wp-block-file){margin-bottom:1.5em}:where(.wp-block-file__button){border-radius:2em;display:inline-block;padding:.5em 1em}:where(.wp-block-file__button):is(a):active,:where(.wp-block-file__button):is(a):focus,:where(.wp-block-file__button):is(a):hover,:where(.wp-block-file__button):is(a):visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}:where(.wp-block-group.wp-block-group-is-layout-constrained){position:relative}@keyframes show-content-image{0%{visibility:hidden}99%{visibility:hidden}to{visibility:visible}}@keyframes turn-on-visibility{0%{opacity:0}to{opacity:1}}@keyframes turn-off-visibility{0%{opacity:1;visibility:visible}99%{opacity:0;visibility:visible}to{opacity:0;visibility:hidden}}@keyframes lightbox-zoom-in{0%{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) / 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}to{transform:translate(-50%,-50%) scale(1)}}@keyframes lightbox-zoom-out{0%{transform:translate(-50%,-50%) scale(1);visibility:visible}99%{visibility:visible}to{transform:translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) / 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}}:where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment)){line-height:1.1}:where(.wp-block-latest-comments:not([data-amp-original-style*=line-height] .wp-block-latest-comments__comment-excerpt p)){line-height:1.8}:root :where(.wp-block-latest-posts.is-grid){padding:0}:root :where(.wp-block-latest-posts.wp-block-latest-posts__list){padding-left:0}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)){padding:.5em 1em}:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content){padding:.5em 1em}@keyframes overlay-menu__fade-in-animation{0%{opacity:0;transform:translateY(.5em)}to{opacity:1;transform:translateY(0)}}:root :where(p.has-background){padding:1.25em 2.375em}:where(.wp-block-post-excerpt){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}:where(.wp-block-preformatted.has-background){padding:1.25em 2.375em}:where(.wp-block-search__button){border:1px solid #ccc;padding:6px 10px}:where(.wp-block-search__input){font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-transform:inherit}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){border:1px solid #949494;box-sizing:border-box;padding:4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button){padding:4px 8px}:root :where(.wp-block-separator.is-style-dots){height:auto;line-height:1;text-align:center}:root :where(.wp-block-separator.is-style-dots):before{color:currentColor;content:"···";font-family:serif;font-size:1.5em;letter-spacing:2em;padding-left:2em}:root :where(.wp-block-site-logo.is-style-rounded){border-radius:9999px}:root :where(.wp-block-social-links .wp-social-link a){padding:.25em}:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a){padding:0}:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a){padding-left:.6666666667em;padding-right:.6666666667em}:root :where(.wp-block-tag-cloud.is-style-outline){display:flex;flex-wrap:wrap;gap:1ch}:root :where(.wp-block-tag-cloud.is-style-outline a){border:1px solid;margin-right:0;padding:1ch 2ch}:root :where(.wp-block-tag-cloud.is-style-outline a):not(#_#_#_#_#_#_#_#_){font-size:unset;text-decoration:none}:root :where(.wp-block-table-of-contents){box-sizing:border-box}:where(.wp-block-term-description){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}:where(pre.wp-block-verse){font-family:inherit}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}html :where(.has-border-color){border-style:solid}html :where([data-amp-original-style*=border-top-color]){border-top-style:solid}html :where([data-amp-original-style*=border-right-color]){border-right-style:solid}html :where([data-amp-original-style*=border-bottom-color]){border-bottom-style:solid}html :where([data-amp-original-style*=border-left-color]){border-left-style:solid}html :where([data-amp-original-style*=border-width]){border-style:solid}html :where([data-amp-original-style*=border-top-width]){border-top-style:solid}html :where([data-amp-original-style*=border-right-width]){border-right-style:solid}html :where([data-amp-original-style*=border-bottom-width]){border-bottom-style:solid}html :where([data-amp-original-style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}:root{--wp--preset--aspect-ratio--square:1;--wp--preset--aspect-ratio--4-3:4/3;--wp--preset--aspect-ratio--3-4:3/4;--wp--preset--aspect-ratio--3-2:3/2;--wp--preset--aspect-ratio--2-3:2/3;--wp--preset--aspect-ratio--16-9:16/9;--wp--preset--aspect-ratio--9-16:9/16;--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--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%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 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%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--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:.44rem;--wp--preset--spacing--30:.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;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)}:root{--wp--style--global--content-size:740px;--wp--style--global--wide-size:1140px}:where(body){margin:0}:where(.wp-site-blocks) > *{margin-block-start:24px;margin-block-end:0}:where(.wp-site-blocks) > :first-child{margin-block-start:0}:where(.wp-site-blocks) > :last-child{margin-block-end:0}:root{--wp--style--block-gap:24px}:root :where(.is-layout-flow) > :first-child{margin-block-start:0}:root :where(.is-layout-flow) > :last-child{margin-block-end:0}:root :where(.is-layout-flow) > *{margin-block-start:24px;margin-block-end:0}:root :where(.is-layout-constrained) > :first-child{margin-block-start:0}:root :where(.is-layout-constrained) > :last-child{margin-block-end:0}:root :where(.is-layout-constrained) > *{margin-block-start:24px;margin-block-end:0}:root :where(.is-layout-flex){gap:24px}:root :where(.is-layout-grid){gap:24px}body{--wp--style--root--padding-top:0px;--wp--style--root--padding-right:0px;--wp--style--root--padding-bottom:0px;--wp--style--root--padding-left:0px}:root :where(.wp-block-pullquote){font-size:1.5em;line-height:1.6} /*# sourceURL=amp-custom.css */</style><link rel="profile" href="http://gmpg.org/xfn/11"><script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://norobilim2024.org/#website","url":"https://norobilim2024.org/","name":"Fresh Bonus","description":"Türkiye’nin En Güvenilir Bahis Siteleri ve Casino Bonusları","publisher":{"@id":"https://norobilim2024.org/#organization"},"alternateName":"FreshBonus","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://norobilim2024.org/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"tr"},{"@type":"Organization","@id":"https://norobilim2024.org/#organization","name":"Fresh Bonus","alternateName":"FreshBonus","url":"https://norobilim2024.org/","logo":{"@type":"ImageObject","inLanguage":"tr","@id":"https://norobilim2024.org/#/schema/logo/image/","url":"https://norobilim2024.org/wp-content/uploads/2025/03/fresh-bonus.png","contentUrl":"https://norobilim2024.org/wp-content/uploads/2025/03/fresh-bonus.png","width":1020,"height":800,"caption":"Fresh Bonus"},"image":{"@id":"https://norobilim2024.org/#/schema/logo/image/"}}]}</script><link rel="apple-touch-icon" href="https://norobilim2024.org/wp-content/uploads/2024/11/image-230x230.png"><link rel="canonical" href="https://norobilim2024.org/b/12663"></head><body> </body></html>