global $content_width; if ( ! isset( $content_width ) ) $content_width = 640; /* pixels */ if (!function_exists('library_books_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 post thumbnails. */ function library_books_setup() { load_theme_textdomain('library-books', get_template_directory() . '/languages'); add_theme_support('automatic-feed-links'); add_theme_support('woocommerce'); add_theme_support('post-thumbnails'); add_theme_support('custom-header'); add_theme_support('title-tag'); add_theme_support('custom-logo', array( 'height' => 52, 'width' => 268, 'flex-height' => true, )); register_nav_menus(array( 'primary' => esc_html__('Primary Menu', 'library-books') , )); add_theme_support('custom-background', array( 'default-color' => 'ffffff' )); add_editor_style( 'editor-style.css' ); add_post_type_support( 'page', 'excerpt' ); } endif; // library_books_setup add_action('after_setup_theme', 'library_books_setup'); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function library_books_widgets_init() { register_sidebar(array( 'name' => esc_html__('Sidebar', 'library-books') , 'description' => esc_html__('Appears on page/post sidebar', 'library-books') , 'id' => 'sidebar-1', 'before_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__('Footer Column 1', 'library-books') , 'description' => esc_html__('Appears on footer', 'library-books') , 'id' => 'fc-1', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', )); register_sidebar(array( 'name' => esc_html__('Footer Column 2', 'library-books') , 'description' => esc_html__('Appears on footer', 'library-books') , 'id' => 'fc-2', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', )); register_sidebar(array( 'name' => esc_html__('Footer Column 3', 'library-books') , 'description' => esc_html__('Appears on footer', 'library-books') , 'id' => 'fc-3', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', )); } add_action('widgets_init', 'library_books_widgets_init'); /** * Register custom fonts. */ function library_books_font_url() { $font_url = ''; /* Translators: If there are any character that are not * supported by Roboto Condensed, trsnalate this to off, do not * translate into your own language. */ $robotocondensed = _x('on', 'robotocondensed:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Scada, translate this to off, do not translate * into your own language. */ $scada = _x('on', 'Scada:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Roboto Slab, translate this to off, do not translate * into your own language. */ $robotoslab = _x('on', 'Roboto Slab:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Merriweather, translate this to off, do not translate * into your own language. */ $merriweather = _x('on', 'Merriweather:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Roboto, translate this to off, do not translate * into your own language. */ $roboto = _x('on', 'Roboto:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Lato, translate this to off, do not translate * into your own language. */ $lato = _x('on', 'Lato:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Playfair Display, translate this to off, do not translate * into your own language. */ $playfairdisplay = _x('on', 'Playfair Display:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Assistant , translate this to off, do not translate * into your own language. */ $assistant = _x('on', 'Assistant:on or off', 'library-books'); if ('off' !== $robotocondensed) { $font_family = array(); if ('off' !== $robotocondensed) { $font_family[] = 'Roboto Condensed:300,400,600,700,800,900'; } if ('off' !== $robotoslab) { $font_family[] = 'Roboto Slab:300,400,700'; } if ('off' !== $merriweather) { $font_family[] = 'Merriweather:300,400,400i,700,700i,900,900i'; } if ('off' !== $roboto) { $font_family[] = 'Roboto:100,300,300i,400,400i,500,500i,700,700i,900,900i'; } if ('off' !== $lato) { $font_family[] = 'Lato:300,300i,400,400i,700,700i,900,900i'; } if ('off' !== $playfairdisplay) { $font_family[] = 'Playfair Display:400,400i,700,700i,900,900i'; } if ('off' !== $assistant) { $font_family[] = 'Assistant:200,300,400,600,700,800'; } $query_args = array( 'family' => urlencode(implode('|', $font_family)) , ); $font_url = add_query_arg($query_args, '//fonts.googleapis.com/css'); } return $font_url; } /** * Enqueue scripts and styles. */ function library_books_scripts() { wp_enqueue_style('library-books-font', library_books_font_url() , array()); wp_enqueue_style('library-books-basic-style', get_stylesheet_uri()); wp_enqueue_style('library-books-print-style', get_template_directory_uri() . "/print.css"); wp_enqueue_style('nivo-slider', get_template_directory_uri() . "/css/nivo-slider.css"); wp_enqueue_style('font-awesome', get_template_directory_uri() . "/css/font-awesome.css"); wp_enqueue_style('library-books-main-style', get_template_directory_uri() . "/css/responsive.css"); wp_enqueue_style('library-books-base-style', get_template_directory_uri() . "/css/style_base.css"); wp_enqueue_script('jquery-nivo', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array( 'jquery' )); wp_enqueue_script('library-books-custom-js', get_template_directory_uri() . '/js/custom.js'); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } } add_action('wp_enqueue_scripts', 'library_books_scripts'); define('LIBRARY_BOOKS_URL', 'https://www.pinnaclethemes.net/'); define('LIBRARY_BOOKS_PRO_THEME_URL', 'https://www.pinnaclethemes.net/product/library-wordpress-theme/'); define('LIBRARY_BOOKS_FREE_THEME_URL', 'https://www.pinnaclethemes.net/product/free-bookstore-wordpress-theme/'); define('LIBRARY_BOOKS_THEME_DOC', 'https://pinnaclethemes.net/themedocumentation/library-documentation/'); define('LIBRARY_BOOKS_LIVE_DEMO', 'https://www.pinnaclethemes.net/themedemos/librarybooks/'); define('LIBRARY_BOOKS_THEMES', 'https://www.pinnaclethemes.net/cool-wordpress-themes/'); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template for about theme. */ require get_template_directory() . '/inc/about-themes.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'; /** * Add a pingback url auto-discovery header for singularly identifiable articles. */ function library_books_pingback_header() { if (is_singular() && pings_open()) { printf( '' . "\n", esc_html(get_bloginfo( 'pingback_url' ) )); } } add_action('wp_head', 'library_books_pingback_header'); // Add class in body if slide option enable function library_books_body_class( $classes ) { $hideslide = get_theme_mod('hide_slides', 1); if (!is_home() && is_front_page()) { if( $hideslide == '') { $classes[] = 'visibleslide'; } } return $classes; } add_filter( 'body_class','library_books_body_class' ); // get slug by id function library_books_get_slug_by_id($id) { $post_data = get_post($id, ARRAY_A); $slug = $post_data['post_name']; return $slug; } require_once get_template_directory() . '/upgrade-pro/example-1/class-customize.php'; /** * Filter the except length to 20 words. * * @param int $length Excerpt length. * @return int (Maybe) modified excerpt length. */ function library_books_custom_excerpt_length( $excerpt_length ) { return 20; } add_filter( 'excerpt_length', 'library_books_custom_excerpt_length', 999 );{"id":3100,"date":"2024-08-02T04:20:52","date_gmt":"2024-08-02T04:20:52","guid":{"rendered":"https:\/\/booksbypatricksimpson.com\/?p=3100"},"modified":"2024-08-02T04:46:53","modified_gmt":"2024-08-02T04:46:53","slug":"village-times-august-2024","status":"publish","type":"post","link":"https:\/\/booksbypatricksimpson.com\/village-times-august-2024\/","title":{"rendered":"Village Times August 2024"},"content":{"rendered":"\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t

THE VILLAGE TIMES<\/h1>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
<\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t

Meet Demetrius Vance <\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t

by Pat Simpson (Volunteer Editor of the Village Times)<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t

\"\"\u00a0 \u00a0Hello everyone. I\u2019m new here and I hope to meet you all. My name is Demetrius Vance but you can call me \u201cD.\u201d I retired after 21 years as a mechanic in the U.S. Army Medical Corp and now I\u2019m a resident here at Independence Village of Olde Raleigh. I was once stationed at Fort Bragg, N.C. (now they call it Fort Liberty).<\/p>

\u00a0 \u00a0I\u2019ve come a long way since I was born. I was raised with my 2 brothers and 3 sisters in Tupelo Mississippi, the birthplace of Elvis Presley. My parents were Johnny and May Frances Vance. I spent most of my childhood through high school playing with the friends I grew up with in Tupelo. I went to college there as well, and earned a 4-year college degree.<\/p>

\u00a0 \u00a0My wife Pam lives in Fayetteville, N.C. We\u2019ve been married for twenty-one years and had six children together \u2013 three boys and three girls \u2013 my most important life accomplishment. The oldest is now 26 years old.<\/p>

\u00a0 \u00a0These days, I like to spend time watching TV in my room and I like the food they serve here at Independence Village \u2013 especially the pies. You say \u201cWhy do you like pies?\u201d<\/p>

And I say \u201cWhy not?\u201d<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t

\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
<\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t

Nashville\u2019s Parthenon<\/h1>

\u00a0by Pat Simpson<\/h6>

\u00a0 \u00a0Back in July of 1999, my wife Anne and I were on summer vacation at a convention in Nashville, Tennessee. the heart of the country-music scene, with its long-running Grand Ole Opry and Country Music Hall of Fame. Also on our bucket list was the city of Memphis, the home of Elvis Presley\u2019s Graceland, the rock-and-roll pioneering Sun Studio and the blues clubs of Beale Street.<\/p>

\u00a0 \u00a0During a \u201cbreak in the action\u201d we took a little walk in Nashville\u2019s nearby Centennial Park, just to see what we could see.<\/p>

\u00a0 \u00a0And what we saw we could scarce believe \u2013 even today, almost 25 years later.<\/p>

\u00a0 \u00a0There before us was what looked like the Parthenon, just like the one in Greece \u2013 and the sign out front said just that. The original Parthenon is a former temple on the Athenian Acropolis in Greece, dedicated to the goddess Athena, whom the people of Athens considered their patroness. Construction \"\" started in 447 BC when the Delian League was at the peak of its power.<\/p>

\u00a0 \u00a0 We had stumbled on to the world\u2019s only full-scale replica of the Parthenon, modeled after the original ancient Greek temple in Athens.\u00a0<\/p>

\u00a0 \u00a0 Turns out this Parthenon was originally constructed as part of the Tennessee Centennial and Exposition that was held in 1897. It\u2019s the only structure preserved from that historic event.<\/p>

\u00a0 \u00a0Why the Parthenon, you may ask? And what on earth was the Parthenon doing in Nashville?<\/p>

\u00a0 \u00a0Well, it seems that back the 19th century, Nashville earned the nickname \u201cThe Athens of the South\u201d because of the number of colleges and universities located within the city and the surrounding areas. It was also highly regarded for its public school system and commitment to education. So when the time came to commemorate the 100th anniversary of the Volunteer State\u2019s admission to the Union, an exposition committee was formed and the director suggested that the city erect a full-scale replica of the ancient Parthenon in Athens to represent the city and state at the festival.<\/p>

\u00a0 \u00a0While many of the exposition buildings were based on ancient designs, Nashville\u2019s Parthenon was the only exact replica. As the first building erected for the exposition, the Parthenon was originally constructed from plaster, wood and brick. The planners never intended that the building remain as a permanent structure after the exposition ended. However, the cost of demolition and the popularity of the building saved it from being knocked down. After standing in its original form for over 20 years, it was reconstructed in 1920 until 1925 using concrete so that it would be permanent. Today, the temple is considered the pinnacle of classical architecture.<\/p>

\u00a0 \u00a0But what made our jaws drop was what we saw inside<\/em> the Parthenon. As we entered through the massive 7-ton bronze entrance doors, the largest doors of their kind in the world, we came upon a massive statue\u00a0the likes of which we\u2019d never seen before. Towering over us was the 42-foot-tall grandeur of Athena Parthenos, the tallest indoor artistic work of its kind in the Western Hemisphere.\u00a0Tipping the scales at approximately 12 tons, the figure was re-created based on a careful study of the long-lost original statue by Phidias that had adorned the ancient temple. Athena carried a shield in her left hand and a life-sized statue of Nike, the goddess of victory, in her right hand. A 20-foot-tall serpent appeared between her body and her shield. Surrounded by smaller sculptures, it took Nashville sculptor Alan LeQuire eight years to create.<\/p>

\u00a0 \u00a0Athena became the goddess of crafts and skilled peacetime pursuits in general. She was particularly known as the patroness of spinning and weaving and, ultimately, the symbol of wisdom and righteousness. She was also the city protectress, goddess of war, handicraft, and practical reason, identified by the Romans with Minerva.<\/p>

\u00a0 \u00a0The unveiling on May 20, 1990 was a huge affair, with more than 5,700 people filing into the Parthenon to walk by and view the statue. During the unveiling ceremony, country music star Jeannie Seely sang, and King Constantine II, the exiled king \"\" of Greece, addressed the crowd, according to a front-page story in The Tennessean.<\/p>

\u00a0 “What you are doing here will remind everyone the world over of Greek history and culture,” Constantine said. “This represents the bond between the oldest democracy and the most powerful democracy in the world.”<\/p>

\u00a0 \u00a0While most were wowed by Athena, not everyone thought the goddess was so godly.<\/p>

\u00a0 \u00a0Three protested the debut of the statue, including the Rev. Mel Perry, who held signs that read “Athena = Antichrist” and “Idolatry came to Nashville in the guise of art.”<\/p>

\u00a0 \u00a0“The Bible condemns the making of images, and they made an image here,” he told The Tennessean.<\/p>

\u00a0 \u00a0Regardless, the sight of that giant statue is a sight I\u2019ll never forget.<\/p>

\u00a0 \u00a0Athena is no longer marble white, however; in 2002 She was gilded entirely in 23.75 carat Italian gold leaf. (See photo \u2013 right<\/em>).<\/p>

\u00a0<\/p>

The Pecan Tree \u2013 by Frank Howes <\/strong><\/p>

\"\"<\/strong><\/p>

\u00a0 \u00a0 When I was a boy, I used to like going to my grandfather’s farm. It was a time of plenty. He was a small farmer with a big garden and a bigger heart. I’m reminded of those times during the hot July weather.<\/p>

\u00a0 \u00a0One of the things I remember most was the pecan tree. I remember he had two Mercury automobiles that he parked under it, one black whale type that was made into 50s. He replaced that one with a blue Mercury that was made into 60s. The pecan tree was a center of activity during the summer.<\/p>

\u00a0 \u00a0During those times we prepared vegetables for year-long eating. We snapped beans, shelled butter beans, shucked corn, capped strawberries, and many other activities. I remember the pecan tree because it was so cool under it, amazing how a little bit of shade makes the day more pleasant.<\/p>

\u00a0 \u00a0This time of year, tobacco season was starting. Tobacco season began with the “croppers” pulling lugs (the lowest leaves) from the stalks. The workers hit the field shortly after daybreak. The men cropped tobacco, and the women strung it on sticks. The little ones handed tobacco to the women so they could tie it. Then they hung the tobacco temporarily on racks in preparation for putting it into the barn for curing.<\/p>

\u00a0 \u00a0My grandfather was great at curing tobacco. He turned the leaves from a light green or yellow brown to a deeper mahogany color. It was a fragrant process. When you went into the tobacco barn, the scent was incredibly delicious, even for a non-smoker. When the tobacco was cured, it was temporarily stored in a pack house. Later, it was put into a pit where the cool moist air added a little weight to the tobacco, and made the leaves pliable. After that, the tobacco was pulled from the sticks and graded and prepared for market – a long lucrative process that happened all over eastern North Carolina.<\/p>

\u00a0 \u00a0I miss my mother’s parents. I miss her loving, affection, and I miss their little farm. We still have the farm in the family, but there are no little farmers anymore.<\/p>

\u00a0<\/strong><\/p>

Baalbek \u2013 by Richard Smalto<\/strong><\/p>

\u00a0 \u00a0The greatest Roman temple ruins are not in Rome. They are located in a remote mountain area. Among the temple ruins is the temple to Jupiter, the greatest temple ever built anywhere in antiquity to honor one god. Roman rulers, over four centuries, toiled to glorify it. Emperors and generals came to it to determine their fate and legionaries, the devout and the curious to see it with their own eyes. European travelers eventually risked life and limb to confirm its existence! The site is in the mountains of Lebanon. The ruins were the remains of three imposing temples, the least one of which (the temple to Mercury), was larger than the spectacular Parthenon situated on the Acropolis which still dominates the plain of Greece. The Greeks and Romans called this place Heliopolis.<\/p>

\u00a0 \u00a0The ruins stand catatonically, upon the largest known stones in the world and a few of the columns are among the tallest from those times. There is no apparent reason why such a gigantic effort, in such an unknown place, in an unimportant province was undertaken by the Romans, except that the ground was considered hallowed by the Greeks that preceded them. It is certain however that whatever shrines the Greeks may have erected there and the Romans thereafter, those edifices were only being raised on top of earlier foundations that can only be considered colossal.<\/p>

\u00a0 \u00a0Modern scholars have tried to shed some light on the age-long worship of this place by studying archaeological evidence from nearby sites. These scholars have helped establish the conclusion the Roman Greek triad of gods stemmed from earlier Semitic beliefs which were based on a Sumerian pantheon.<\/p>

\u00a0 \u00a0Was this then a place that was worshipped from the earliest of times? Archaeologists who have studied the physical features of this site have found the Romans and Greeks built their temples upon a paved platform which existed from the earliest of times, constructed of large thick stone blocks, so tightly put together, that to this day cannot be penetrated to see the chambers that lie below them.<\/p>

\u00a0 \u00a0Large as these stones are they are not the largest slabs of granite that were being used or being processed to be used at this site.\u00a0 Above the platform, lying side by side, are three stone blocks, precisely shaped and perfectly fitted together, weighing over thousand tons each the size of which are found nowhere else in the world. Ancient historians called them Trilithon-the Marvel of the Three Stones.<\/p>

\u00a0 \u00a0Partly in the ground, lying elsewhere, is another colossal granite slab, fully shaped and perfectly cut whose length and girth are staggering. It has been estimated to weigh over 1200 tons! Wherever the \"\" leftover colossal stone was intended to be used it is a mute testimony to the gigantic size of the site in Lebanon. The stunning fact is even today there is no crane, vehicle or mechanism that can lift a weight of 1000-1200 tons, let alone carry it over valley and mountainside to place it in position many feet above the ground. Yet in ancient times, before the advent of modern machinery, such things were being done. By whom?\u00a0 Tradition says it existed from the time of Adam and was built by his son Cain as a refuge and then rebuilt by Nimrod after the flood in an effort to scale the heavens. To scale the heavens, to sustain heavy weights; for this reason there are some that say the site was built by giants to scale those heavens and is named in honor of the ancient God Baal. Perhaps this explains why natives stopped calling it Heliopolis and resumed the tradition of calling it Baalbek after the Greeks and Romans departed.<\/p>

The Honey bee \u2013 by Margie Lewin<\/strong><\/h6>

\u00a0 \u00a0Before he became known as the \u201cBeeman\u201d Brady Mullinax was a 9-year-old boy who was fascinated by honeybees. To Brady, the inner workings of the hives \"\" were mesmerizing. No matter how big the swarm, each bee had a job, a purpose that helped maintain the health of the hive. The honey bee may not be a North Carolina native, but this crucial pollinator has earned the title of state insect. Today, the honeybee remains our state insect. The North Carolina State Beekeepers Association is one of the largest and oldest of its kind in the country, with more than 5100 members. And in 2023 our Beekeepers produced nearly 500,000 pounds of honey. Enjoy a little spoonful with your next cup of hot tea.<\/strong><\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t

\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
<\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t

My Friend<\/p>\n

\u2013 by Pat Simpson<\/p>\n

God has given me a companion<\/p>\n

\u2013 an unforgettable friend.<\/p>\n

And a friend doesn’t leave a friend \u2013<\/p>\n

If the friend has a broken leg<\/p>\n

If the friend is in the hospital<\/p>\n

If the friend is having a meltdown.<\/p>\n

A friend stays a friend<\/p>\n

No matter how<\/p>\n

No matter when.<\/p>\n

I love my dear friend<\/p>\n

until the very end.<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t

\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
<\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
<\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
<\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"

THE VILLAGE TIMES Meet Demetrius Vance by Pat Simpson (Volunteer Editor of the Village Times) \u00a0 \u00a0Hello everyone. I\u2019m new here and I hope to meet you all. My name is Demetrius Vance but you can call me \u201cD.\u201d I retired after 21 years as a mechanic in the U.S. Army Medical Corp and now […]<\/a><\/p>\n","protected":false},"author":1,"featured_media":3112,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"pgc_meta":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-3100","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/3100","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/comments?post=3100"}],"version-history":[{"count":23,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/3100\/revisions"}],"predecessor-version":[{"id":3134,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/3100\/revisions\/3134"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/media\/3112"}],"wp:attachment":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/media?parent=3100"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/categories?post=3100"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/tags?post=3100"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}