/** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ /** * Define some constats */ if( ! defined( 'ILOVEWP_AUTHOR' ) ) { define( 'ILOVEWP_AUTHOR', 'https://www.ilovewp.com' ); } if( ! defined( 'ILOVEWP_THEME_URL' ) ) { define( 'ILOVEWP_THEME_URL', 'https://www.ilovewp.com/themes/faith/' ); } if( ! defined( 'ILOVEWP_VERSION' ) ) { define( 'ILOVEWP_VERSION', '1.1.0' ); } if( ! defined( 'ILOVEWP_DIR' ) ) { define( 'ILOVEWP_DIR', trailingslashit( get_template_directory() ) ); } if( ! defined( 'ILOVEWP_DIR_URI' ) ) { define( 'ILOVEWP_DIR_URI', trailingslashit( get_template_directory_uri() ) ); } /** * Faith functions and definitions. * * @link https://codex.wordpress.org/Functions_File_Explained * * @package Faith */ if ( ! function_exists( 'faith_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 faith_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on Faith, use a find and replace * to change 'faith' to the name of your theme in all the template files. */ load_theme_textdomain( 'faith', 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 https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 240, 150, true ); // Featured Post Main Thumbnail on the front page & single page template add_image_size( 'faith-large-thumbnail', 1600, 500, true ); add_image_size( 'faith-normal-thumbnail', 480, 300, true ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'faith' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'gallery', 'caption', ) ); add_theme_support( 'custom-logo', array( 'height' => 100, 'width' => 400, 'flex-width' => true, 'flex-height' => true, ) ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style( array( 'css/editor-style.css', faith_fonts_url() ) ); add_action( 'customize_controls_print_styles', 'faith_customizer_stylesheet' ); // Theme Activation Notice global $pagenow; if ( is_admin() && isset( $_GET['activated'] ) ) { add_action( 'admin_notices', 'faith_activation_notice' ); } } endif; // faith_setup add_action( 'after_setup_theme', 'faith_setup' ); add_filter( 'image_size_names_choose', 'faith_custom_sizes' ); function faith_custom_sizes( $sizes ) { return array_merge( $sizes, array( 'faith-large-thumbnail' => __( 'Featured Image: Slideshow Size', 'faith' ), 'post-thumbnail' => __( 'Featured Image: Thumbnail', 'faith' ), ) ); } /** * 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 faith_content_width() { $GLOBALS['content_width'] = apply_filters( 'faith_content_width', 780 ); } add_action( 'after_setup_theme', 'faith_content_width', 0 ); /* Custom Excerpt Length ==================================== */ add_filter( 'excerpt_length', 'faith_new_excerpt_length' ); function faith_new_excerpt_length( $length ) { return is_admin() ? $length : 30; } /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function faith_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Main Sidebar', 'faith' ), 'id' => 'sidebar-main', 'description' => esc_html__( 'This is the main sidebar area that appears on all pages.', 'faith' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<p class="widget-title">', 'after_title' => '</p>', ) ); register_sidebar( array( 'name' => esc_html__( 'Homepage: Left Column', 'faith' ), 'id' => 'home-col-1', 'description' => esc_html__( 'Works best with a standard Text Widget. The widget title will be wrapped in a <h1></h1> tag.', 'faith' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h1 class="site-home-title">', 'after_title' => '</h1>', ) ); register_sidebar( array( 'name' => esc_html__( 'Homepage: Right Column', 'faith' ), 'id' => 'home-col-2', 'description' => esc_html__( 'Works best with a widget like Recent Posts.', 'faith' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<p class="widget-title">', 'after_title' => '</p>', ) ); register_sidebar( array( 'name' => esc_html__( 'Site Header', 'faith' ), 'id' => 'site-header', 'description' => esc_html__( 'Works best with a search widget.', 'faith' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<p class="widget-title">', 'after_title' => '</p>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer: Column 1', 'faith' ), 'id' => 'sidebar-footer-1', 'description' => esc_html__( 'This is displayed in the footer of the website. By default has a width of 275px.', 'faith' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<p class="widget-title">', 'after_title' => '</p>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer: Column 2', 'faith' ), 'id' => 'sidebar-footer-2', 'description' => esc_html__( 'This is displayed in the footer of the website. By default has a width of 275px.', 'faith' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<p class="widget-title">', 'after_title' => '</p>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer: Column 3', 'faith' ), 'id' => 'sidebar-footer-3', 'description' => esc_html__( 'This is displayed in the footer of the website. By default has a width of 275px.', 'faith' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<p class="widget-title">', 'after_title' => '</p>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer: Column 4', 'faith' ), 'id' => 'sidebar-footer-4', 'description' => esc_html__( 'This is displayed in the footer of the website. By default has a width of 275px.', 'faith' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<p class="widget-title">', 'after_title' => '</p>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer: Column 5', 'faith' ), 'id' => 'sidebar-footer-5', 'description' => esc_html__( 'This is displayed in the footer of the website. By default has a width of 275px.', 'faith' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<p class="widget-title">', 'after_title' => '</p>', ) ); } add_action( 'widgets_init', 'faith_widgets_init' ); /** * Add a pingback url auto-discovery header for singularly identifiable articles. */ function faith_pingback_header() { if ( is_singular() && pings_open() ) { printf( '<link rel="pingback" href="%s">' . "\n", get_bloginfo( 'pingback_url' ) ); } } add_action( 'wp_head', 'faith_pingback_header' ); if ( ! function_exists( 'faith_fonts_url' ) ) : /** * Register Google fonts for Faith. * * Create your own faith_fonts_url() function to override in a child theme. * * @since Faith 1.0 * * @return string Google fonts URL for the theme. */ function faith_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* translators: If there are characters in your language that are not supported by Lato, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Lato font: on or off', 'faith' ) ) { $fonts[] = 'Lato:400,400i,700,700i'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => urlencode( implode( '|', $fonts ) ), 'subset' => urlencode( $subsets ), ), '//fonts.googleapis.com/css' ); } return $fonts_url; } endif; /** * Enqueue scripts and styles. */ function faith_scripts() { wp_enqueue_style( 'faith-style', get_stylesheet_uri() ); // Add Dashicons font. wp_enqueue_style( 'dashicons' ); // Add Genericons font. wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.3.1' ); wp_enqueue_script( 'jquery-slicknav', get_template_directory_uri() . '/js/jquery.slicknav.min.js', array('jquery'), true ); wp_enqueue_script( 'jquery-superfish', get_template_directory_uri() . '/js/superfish.min.js', array('jquery'), true ); wp_enqueue_script( 'jquery-flexslider', get_template_directory_uri() . '/js/jquery.flexslider.js', array('jquery'), true ); // wp_enqueue_script( 'faith-scripts', get_template_directory_uri() . '/js/faith.js', array( 'jquery' ), '20160820', true ); wp_register_script( 'faith-scripts', get_template_directory_uri() . '/js/faith.js', array( 'jquery' ), '20160820', true ); /* Contains the strings used in our JavaScript file */ $faithStrings = array ( 'slicknav_menu_home' => _x( 'Click for Menu', 'The main label for the expandable mobile menu', 'faith' ) ); wp_localize_script( 'faith-scripts', 'faithStrings', $faithStrings ); wp_enqueue_script( 'faith-scripts' ); // Loads our default Google Webfont wp_enqueue_style( 'faith-webfonts', faith_fonts_url(), array(), null, null ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'faith_scripts' ); if ( ! function_exists( 'wp_body_open' ) ) { function wp_body_open() { do_action( 'wp_body_open' ); } } /** * Implement the Custom Header feature. */ require get_parent_theme_file_path( '/inc/custom-header.php' ); /** * Custom template tags for this theme. */ require get_parent_theme_file_path() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_parent_theme_file_path() . '/inc/extras.php'; /** * Customizer additions. */ require get_parent_theme_file_path() . '/inc/customizer.php'; /* Include Additional Options and Components ================================== */ require_once( get_template_directory() . '/ilovewp-admin/helper-functions.php'); //require only in admin! if(is_admin()){ require_once('ilovewp-admin/ilovewp-theme-notices.php'); require_once('ilovewp-admin/ilovewp-theme-settings.php'); } <!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel='dns-prefetch' href='//s.w.org' /> <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":{"concatemoji":"https:\/\/uuln.eyebenders.org\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.0.11"}}; /*! This file is auto-generated */ !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode,e=(p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0),i.toDataURL());return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([129777,127995,8205,129778,127999],[129777,127995,8203,129778,127999])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.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='wp-notification-bars-css' href='https://uuln.eyebenders.org/wp-content/plugins/wp-notification-bars/public/css/wp-notification-bars-public.css?ver=1.0.5' type='text/css' media='all' /> <link rel='stylesheet' id='mec-select2-style-css' href='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/select2/select2.min.css?ver=6.0.11' type='text/css' media='all' /> <link rel='stylesheet' id='mec-font-icons-css' href='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/css/iconfonts.css?ver=6.0.11' type='text/css' media='all' /> <link rel='stylesheet' id='mec-frontend-style-css' href='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/css/frontend.min.css?ver=5.12.0' type='text/css' media='all' /> <link rel='stylesheet' id='mec-tooltip-style-css' href='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/tooltip/tooltip.css?ver=6.0.11' type='text/css' media='all' /> <link rel='stylesheet' id='mec-tooltip-shadow-style-css' href='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/tooltip/tooltipster-sideTip-shadow.min.css?ver=6.0.11' type='text/css' media='all' /> <link rel='stylesheet' id='mec-featherlight-style-css' href='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/featherlight/featherlight.css?ver=6.0.11' type='text/css' media='all' /> <link rel='stylesheet' id='mec-google-fonts-css' href='//fonts.googleapis.com/css?family=Montserrat%3A400%2C700%7CRoboto%3A100%2C300%2C400%2C700&ver=6.0.11' type='text/css' media='all' /> <link rel='stylesheet' id='mec-lity-style-css' href='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/lity/lity.min.css?ver=6.0.11' type='text/css' media='all' /> <link rel='stylesheet' id='tribe-common-skeleton-style-css' href='https://uuln.eyebenders.org/wp-content/plugins/the-events-calendar/common/src/resources/css/common-skeleton.min.css?ver=4.12.7' type='text/css' media='all' /> <link rel='stylesheet' id='tribe-tooltip-css' href='https://uuln.eyebenders.org/wp-content/plugins/the-events-calendar/common/src/resources/css/tooltip.min.css?ver=4.12.7' type='text/css' media='all' /> <link rel='stylesheet' id='wp-block-library-css' href='https://uuln.eyebenders.org/wp-includes/css/dist/block-library/style.min.css?ver=6.0.11' 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;}.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;} </style> <link rel='stylesheet' id='contact-form-7-css' href='https://uuln.eyebenders.org/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.2.2' type='text/css' media='all' /> <link rel='stylesheet' id='wpcf-slick-css' href='https://uuln.eyebenders.org/wp-content/plugins/wp-carousel-free/public/css/slick.min.css?ver=2.1.11' type='text/css' media='all' /> <link rel='stylesheet' id='wp-carousel-free-fontawesome-css' href='https://uuln.eyebenders.org/wp-content/plugins/wp-carousel-free/public/css/font-awesome.min.css?ver=2.1.11' type='text/css' media='all' /> <link rel='stylesheet' id='wp-carousel-free-css' href='https://uuln.eyebenders.org/wp-content/plugins/wp-carousel-free/public/css/wp-carousel-free-public.min.css?ver=2.1.11' type='text/css' media='all' /> <script type='text/javascript' src='https://uuln.eyebenders.org/wp-includes/js/jquery/jquery.min.js?ver=3.6.0' id='jquery-core-js'></script> <script type='text/javascript' src='https://uuln.eyebenders.org/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script> <script type='text/javascript' src='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/js/jquery.typewatch.js?ver=6.0.11' id='mec-typekit-script-js'></script> <script type='text/javascript' src='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/featherlight/featherlight.js?ver=6.0.11' id='mec-featherlight-script-js'></script> <script type='text/javascript' src='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/select2/select2.full.min.js?ver=6.0.11' id='mec-select2-script-js'></script> <script type='text/javascript' id='mec-frontend-script-js-extra'> /* <![CDATA[ */ var mecdata = {"day":"day","days":"days","hour":"hour","hours":"hours","minute":"minute","minutes":"minutes","second":"second","seconds":"seconds","elementor_edit_mode":"no","recapcha_key":"","ajax_url":"https:\/\/uuln.eyebenders.org\/wp-admin\/admin-ajax.php","fes_nonce":"ddc2e2ef5a","current_year":"2026","current_month":"04","datepicker_format":"mm\/dd\/yy&m\/d\/Y"}; /* ]]> */ </script> <script type='text/javascript' src='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/js/frontend.js?ver=5.12.0' id='mec-frontend-script-js'></script> <script type='text/javascript' src='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/tooltip/tooltip.js?ver=6.0.11' id='mec-tooltip-script-js'></script> <script type='text/javascript' src='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/js/events.js?ver=5.12.0' id='mec-events-script-js'></script> <script type='text/javascript' src='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/lity/lity.min.js?ver=6.0.11' id='mec-lity-script-js'></script> <script type='text/javascript' src='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/colorbrightness/colorbrightness.min.js?ver=6.0.11' id='mec-colorbrightness-script-js'></script> <script type='text/javascript' src='https://uuln.eyebenders.org/wp-content/plugins/modern-events-calendar-lite/assets/packages/owl-carousel/owl.carousel.min.js?ver=6.0.11' id='mec-owl-carousel-script-js'></script> <script type='text/javascript' src='https://uuln.eyebenders.org/wp-content/plugins/wp-notification-bars/public/js/wp-notification-bars-public.js?ver=1.0.5' id='wp-notification-bars-js'></script> <link rel="https://api.w.org/" href="https://uuln.eyebenders.org/wp-json/" /><link rel="alternate" type="application/json" href="https://uuln.eyebenders.org/wp-json/wp/v2/pages/178" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://uuln.eyebenders.org/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://uuln.eyebenders.org/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 6.0.11" /> <link rel="canonical" href="https://uuln.eyebenders.org/" /> <link rel='shortlink' href='https://uuln.eyebenders.org/' /> <link rel="alternate" type="application/json+oembed" href="https://uuln.eyebenders.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fuuln.eyebenders.org%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://uuln.eyebenders.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fuuln.eyebenders.org%2F&format=xml" /> <meta name="tec-api-version" content="v1"><meta name="tec-api-origin" content="https://uuln.eyebenders.org"><link rel="https://theeventscalendar.com/" href="https://uuln.eyebenders.org/wp-json/tribe/events/v1/" /><link rel="icon" href="https://uuln.eyebenders.org/wp-content/uploads/2020/09/cropped-icon-UULN-32x32.png" sizes="32x32" /> <link rel="icon" href="https://uuln.eyebenders.org/wp-content/uploads/2020/09/cropped-icon-UULN-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://uuln.eyebenders.org/wp-content/uploads/2020/09/cropped-icon-UULN-180x180.png" /> <meta name="msapplication-TileImage" content="https://uuln.eyebenders.org/wp-content/uploads/2020/09/cropped-icon-UULN-270x270.png" /> <style type="text/css" id="wp-custom-css"> .page-id-178 .title-page {display:none !important;} .page-id-178 header {margin-top:-40px!important;} .copy-ilovewp {display:none;} header {padding:-0px !important} header {margin:0px !important} .site-header {background-repeat:center center no-repeat ;background-image: url('/wp-content/uploads/2020/09/header-background.jpg'); -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } #site-header-navigation {background-color:#f7f3f0;margin:0px !important;padding:10px !important;} .ilovewp-hero-blankfill {background-color:#79aad2 !important;} .tribe-list-widget li {margin-bottom:-20px !important;} .tribe-list-widget li{padding:0px !important;} .tribe-events-widget-link {display:none;} @media only screen and (min-width:768px){ #mtsnb-406 {top:300px; z-index:0; margin-top:-40px !important;} #site-content {width:1100px !important;} } .has-small-font-size { line-height:20px; } .tribe-event-duration { display:none; } </style> </head> <body class="home page-template page-template-page-templates page-template-fullwidth page-template-page-templatesfullwidth-php page page-id-178 wp-custom-logo tribe-no-js"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-dark-grayscale"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 0.49803921568627" /><feFuncG type="table" tableValues="0 0.49803921568627" /><feFuncB type="table" tableValues="0 0.49803921568627" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-grayscale"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 1" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0 1" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-purple-yellow"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.54901960784314 0.98823529411765" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0.71764705882353 0.25490196078431" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-blue-red"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 1" /><feFuncG type="table" tableValues="0 0.27843137254902" /><feFuncB type="table" tableValues="0.5921568627451 0.27843137254902" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-midnight"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 0" /><feFuncG type="table" tableValues="0 0.64705882352941" /><feFuncB type="table" tableValues="0 1" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-magenta-yellow"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.78039215686275 1" /><feFuncG type="table" tableValues="0 0.94901960784314" /><feFuncB type="table" tableValues="0.35294117647059 0.47058823529412" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-purple-green"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.65098039215686 0.40392156862745" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0.44705882352941 0.4" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-blue-orange"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.098039215686275 1" /><feFuncG type="table" tableValues="0 0.66274509803922" /><feFuncB type="table" tableValues="0.84705882352941 0.41960784313725" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg> <div id="container"> <a class="skip-link screen-reader-text" href="#site-main">Skip to content</a> <header class="site-header clearfix" role="banner"> <div class="wrapper wrapper-header clearfix"> <div class="site-branding clearfix">