/** * SoSimple functions and definitions * * @package SoSimple */ if ( ! function_exists( 'sosimple_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 sosimple_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on SoSimple, use a find and replace * to change 'sosimple' to the name of your theme in all the template files */ load_theme_textdomain( 'sosimple', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * 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( 'sosimple-featured', '656', '300', true ); add_image_size( 'sosimple-site-logo', '300', '300' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'sosimple' ), ) ); add_editor_style( array( 'editor-style.css', sosimple_fonts_url(), get_template_directory_uri() . '/genericons/genericons.css' ) ); /* * 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( 'sosimple_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; // sosimple_setup add_action( 'after_setup_theme', 'sosimple_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function sosimple_content_width() { $GLOBALS['content_width'] = apply_filters( 'sosimple_content_width', 640 ); } add_action( 'after_setup_theme', 'sosimple_content_width', 0 ); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function sosimple_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'sosimple' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h1 class="widget-title">', 'after_title' => '</h1>', ) ); } add_action( 'widgets_init', 'sosimple_widgets_init' ); /** * Enqueue scripts and styles. */ function sosimple_scripts() { wp_enqueue_style( 'sosimple-style', get_stylesheet_uri() ); wp_enqueue_style( 'sosimple-fonts', sosimple_fonts_url(), array(), null ); wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.3' ); wp_enqueue_script( 'sosimple-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true ); wp_enqueue_script( 'sosimple-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array( 'jquery' ), '1.0', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'sosimple_scripts' ); /** * Register Google Fonts */ function sosimple_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Roboto Slab, translate this to 'off'. Do not translate * into your own language. */ $font_families = array(); $heading_font_family = get_theme_mod( 'sosimple_google_fonts_heading_font', null ); $body_font_family = get_theme_mod( 'sosimple_google_fonts_body_font', null ); if ( !empty( $heading_font_family ) && $heading_font_family !== 'none' ) { $heading_font = _x( 'on', $heading_font_family . ' font: on or off', 'sosimple' ); if ( 'off' !== $heading_font ) { $font_families[] = $heading_font_family; } } if ( !empty( $body_font_family ) && $body_font_family !== 'none' && $body_font_family !== $heading_font_family ) { $body_font = _x( 'on', $body_font_family . ' font: on or off', 'sosimple' ); if ( 'off' !== $body_font ) { $font_families[] = $body_font_family; } } if ( count( $font_families ) === 4 ) { array_slice( $font_families, 2 ); } if ( !empty( $font_families ) ) { $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, '//fonts.googleapis.com/css' ); } return $fonts_url; } function sosimple_load_theme_fonts() { $heading = get_theme_mod( 'sosimple_google_fonts_heading_font' ); $body = get_theme_mod( 'sosimple_google_fonts_body_font' ); if ( ( !empty( $heading ) && $heading != 'none' ) || ( !empty( $body ) && $body != 'none' ) ) { echo '<style type="text/css">'; $imports = array(); $styles = array(); if ( !empty( $heading ) && $heading != 'none' ) { $imports[] = '@import url(//fonts.googleapis.com/css?family=' . urlencode( $heading ) . ');'; $styles[] = 'h1, h2, h3, h4, h5, h6 { font-family: "' . $heading . '" !important }'; } if ( !empty( $body ) && $body != 'none' ) { $imports[] = '@import url(//fonts.googleapis.com/css?family=' . urlencode( $body ) . ');'; $styles[] = 'body, .herotext, .herobuttons .button { font-family: "' . $body . '" !important }'; } echo implode( "\r\n", $imports ); echo implode( "\r\n", $styles ); echo '</style>'; } } add_action( 'wp_head', 'sosimple_load_theme_fonts' ); function sosimple_admin_notice__success() { $class = 'notice notice-info is-dismissible'; $message = __( 'Good Day, this is the SoSimple theme creator <b>fervillz</b>. I am thankful that you are still using my theme, in return I would like to offer you a chance to be a part of the next SoSimple update. <br> <b>What to do?</b> Just contact me on my email <a href="mailto:fervillz@gmail.com">fervillz@gmail.com</a> an write what features you wantto add on the next update. That\'s all!!', 'sosimple' ); printf( '<div class="%1$s"><p>%2$s</p></div>', $class, $message ); } add_action( 'admin_notices', 'sosimple_admin_notice__success' ); /** * Enqueue Google Fonts for custom headers */ function sosimple_admin_styles() { wp_enqueue_style( 'sosimple-fonts', sosimple_fonts_url(), array(), null ); } add_action( 'admin_print_styles-appearance_page_custom-header', 'sosimple_admin_styles' ); /** * 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'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; <!DOCTYPE html> <html lang="fr-FR"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://laguildedudelibere.fr/xmlrpc.php"> <meta name='robots' content='max-image-preview:large' /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='wp-emoji-styles-inline-css' 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; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id='wp-block-library-inline-css' type='text/css'> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([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}} /*# sourceURL=wp-block-library-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel="https://api.w.org/" href="https://laguildedudelibere.fr/index.php?rest_route=/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://laguildedudelibere.fr/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> </head> <body class="error404 wp-theme-sosimple"> <div id="page" class="hfeed site"> <a class="skip-link screen-reader-text" href="#content">Aller au contenu</a> <header id="masthead" class="site-header" role="banner"> <div class="site-branding"> <hgroup> <h1 class='site-title'><a href='https://laguildedudelibere.fr/' title='La Guilde Du Dé Libéré' rel='home'>La Guilde Du Dé Libéré</a></h1> <h2 class='site-description'>Bonjour et bienvenue sur le site de la Guilde Du Dé Libéré !</h2> </hgroup> </div><!-- .site-branding --> <nav id="site-navigation" class="main-navigation" role="navigation"> <button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false">Menu principal</button> <div class="menu-menu-container"><ul id="primary-menu" class="menu"><li id="menu-item-591" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-591"><a href="https://laguildedudelibere.fr/">Accueil</a></li> <li id="menu-item-596" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-596"><a href="https://laguildedudelibere.fr/?page_id=42">Soirées Jeux</a></li> <li id="menu-item-989" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-989"><a href="https://laguildedudelibere.fr/?page_id=669">Game Jams</a></li> <li id="menu-item-1080" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1080"><a href="https://laguildedudelibere.fr/?page_id=851">La Journée des Jeux 2025 (19/04/2025)</a></li> <li id="menu-item-594" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-594"><a href="https://laguildedudelibere.fr/?page_id=39">Ludothèque</a></li> <li id="menu-item-595" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-595"><a href="https://laguildedudelibere.fr/?page_id=244">Nos réseaux</a></li> <li id="menu-item-592" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-592"><a href="https://laguildedudelibere.fr/?page_id=48">Documents</a></li> <li id="menu-item-891" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-891"><a href="https://laguildedudelibere.fr/?page_id=646">Infos</a></li> </ul></div> </nav><!-- #site-navigation --> </header><!-- #masthead --> <div class="sosimple-breadcrumbs"> </div><!-- .sosimple-breadcrumbs --> <div id="content" class="site-content"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <section class="error-404 not-found"> <header class="page-header"> <h1 class="page-title">Oops ! Cette page n'a pas pû être trouvée.</h1> </header><!-- .page-header --> <div class="page-content"> <p>Il semble que rien n’a été trouvé à cet endroit. Peut-être devriez-vous essayer un des liens ci-dessous ou une recherche ?</p> <form role="search" method="get" id="searchform" class="searchform" action="https://laguildedudelibere.fr/"> <div> <label class="screen-reader-text" for="s">Rechercher :</label> <input type="text" value="" name="s" id="s" /> <input type="submit" id="searchsubmit" value="Rechercher" /> </div> </form> <div class="widget widget_recent_entries"> <h2 class="widgettitle">Articles récents</h2> <ul> <li> <a href="https://laguildedudelibere.fr/?p=1192">Elevate Your Gameplay Master the Thrill of the aviator game & Claim Your Winnings.</a> </li> <li> <a href="https://laguildedudelibere.fr/?p=1190">Sky Crown Casino Australia Bonuses and Promotions.1941</a> </li> <li> <a href="https://laguildedudelibere.fr/?p=1188">Legalne i wypacalne kasyna online w Polsce.2906</a> </li> <li> <a href="https://laguildedudelibere.fr/?p=1186">Win Casino online kazinoda mavjud oyinlar va funksiyalar.2484</a> </li> <li> <a href="https://laguildedudelibere.fr/?p=1181">Mostbet onlayn kazino Ozbekistonda bonus dasturi.6130 (2)</a> </li> </ul> </div>