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":2907,"date":"2024-05-02T18:09:42","date_gmt":"2024-05-02T18:09:42","guid":{"rendered":"https:\/\/booksbypatricksimpson.com\/?p=2907"},"modified":"2024-05-02T18:26:28","modified_gmt":"2024-05-02T18:26:28","slug":"village-times-may-2024","status":"publish","type":"post","link":"https:\/\/booksbypatricksimpson.com\/village-times-may-2024\/","title":{"rendered":"Village Times May 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

Independence Village of Olde Raleigh\nResident Newsletter<\/h2>\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

Say \u201cHello\u201d to our new move-ins:\nBetsey Brown, Vicki and Jesse Hales, and Rose Baker.\n<\/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\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 Domenica Mossa<\/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<\/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

\"\" My name is Domenica, which translates to \u201cSunday\u201d or \u201cSabbath Day\u201d in English. But along with my native Italian, I speak Spanish and fluent English.<\/p>

\u00a0 \u00a0 Named after my grandmother, I was born in\"\" 1950 and grew up in the ancient Italian city of Bari (pop. 300K+), once part of the Roman Republic.<\/p>

\u00a0 \u00a0My mother was Antonia Scanera, whose occupation was raising our busy family. My father was Enrico Scaleia, who ran a bar business for many years.\u00a0<\/p>

\u00a0 \u00a0I had a beautiful childhood with my friends and family.\u00a0 We would eat together, ride bicycles together and play together, sometimes playing hide and seek in the city streets for hours.<\/p>

\u00a0 \u00a0Not long after I \"\" graduated with them from high school, my life took a sudden turn.<\/p>

\u00a0 \u00a0My father decided there was greater opportunity for him and his family in the United States.\u00a0 So with the help of his uncle and aunt, who already lived in New York City, he made the leap \u2013 and took us all with him. I was only 18 when I left Italy with my family for our new home in New York City \u2013 the most memorable event of my life. I had four brothers: one now living in New York City, one in Toronto, Canada and one in Italy. My fourth brother died at his home back in Italy.<\/p>

\u00a0 \u00a0I followed a career in bank administration, working for the Bank of New York, eventually for the Bank of Montreal and the bank of Tokyo as well.\u00a0<\/p>

\u00a0 \u00a0I worked by day and learned English at night at New York\u2019s Berlitz Language School. I wish that I had also gotten my college degree back in those days.<\/p>

\u00a0 \u00a0Along the way I met Nick Mossa, who gave me my last name and two sons: Enrico (who lives and works in Texas) and Frank (who lives and works right here in Raleigh). Between them I have four grandchildren: 2 boys and 2 girls.\u00a0 Unfortunately Nick and I parted ways and the marriage didn\u2019t last. Sometimes I regret that decision and wish the marriage had<\/em> lasted.\u00a0 Even so, I consider having my two sons as my most important life accomplishment.<\/p>

\u00a0 \u00a0When it became time for me to retire it was my son Frank who introduced me to Independence Village where I have lived a simple life for the last four years. I like to play Bingo with my new friends and believe in being a good person and avoiding bad people. I\u2019m known for being good at Italian cooking but when given the opportunity I like to go bowling and dine out and \u2013 dance! More than anything else \u2013 and if I could \u2013 I\u2019d like to dance \u2013 especially the Twist!<\/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

When I\u2019m an Old Lady \u2013 submitted by Joby Gilbert<\/strong><\/p>

When I’m an old lady, I’ll live with each kid,<\/p>

And bring so much happiness..just as they did.<\/p>

I want to pay back all the joy they’ve provided.<\/p>

Returning each deed! Oh, they’ll be so excited!<\/p>

(When I’m an old lady and live with my kids)<\/p>

I’ll write on the wall with reds, whites and blues,<\/p>

And I’ll bounce on the furniture…wearing my shoes.<\/p>

I’ll drink from the carton and then leave it out.<\/p>

I’ll stuff all the toilets and oh, how they’ll shout!<\/p>

(When I’m and old lady and live with my kids)<\/p>

When they’re on the phone and just out of reach,<\/p>

I’ll get into things like sugar and bleach.<\/p>

Oh, they’ll snap their fingers and then shake their head,<\/p>

And when that is done, I’ll hide under the bed!<\/p>

(When I’m an old lady and live with my kids)<\/p>

When they cook dinner and call me to eat,<\/p>

I’ll not eat my green beans or salad or meat,<\/p>

I’ll gag on my okra, spill milk on the table,<\/p>

And when they get angry..I’ll run..if I’m able!<\/p>

(When I’m an old lady and live with my kids)<\/p>

I’ll sit close to the TV, through the channels I’ll click,<\/p>

I’ll cross both eyes just to see if they stick.<\/p>

I’ll take off my socks and throw one away,<\/p>

And play in the mud til the end of the day!<\/p>

(When I’m an old lady and live with my kids)<\/p>

And later in bed, I’ll lay back and sigh,<\/p>

I’ll thank God in prayer and then close my eyes.<\/p>

My kids will look down with a smile slowly creeping,<\/p>

And say with a groan, “She’s so sweet when she’s sleeping!<\/p>

God Bless All Mom’s and Grandma’s Everywhere!<\/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

An Awesome Anticipation-by Richard Smalto<\/strong><\/p>

\u00a0 \u00a0 Are we unique? Are we alone? These were the questions addressed in 1976 in a book entitled the 12th<\/sup> Planet. The book presented ancient evidence regarding the biblical Nephilim and their planet called Nibiru.\u00a0<\/p>

\u00a0 \u00a0Advances in Science since 1976 have gone a long way in corroborating ancient knowledge but what about the ancient answer to the key questions? Has modern science confirmed the existence of one more planet in our Solar System and has it found other intelligent beings outside Earth?<\/p>

\u00a0 \u00a0That a search has been going on is a matter of record. That it has intensified in recent years is self-evident. But what is not known from the public record is world leaders have known for some \"\" time there is another planet in our Solar System and that we are not alone. <\/strong><\/p>

\u00a0 \u00a0Until recently these reflections have been seen as imaginative exercise in futility. But what have our world leaders said about these reflections.\u00a0 At a Geneva meeting in 1987 Gorbachev and Reagan agreed that if the earth faced and invasion by extraterrestrials the two powers would \u201cjoin forces to repel such an invasion.\u201d\u00a0 <\/strong>President Reagan spoke again of the extraterrestrial threat in his address in 1987 to the General Assembly of the United Nations.\u00a0 Speaking of our need to turn swords into plowshares he said:<\/p>

\u00a0 \u00a0\u201cIn our obsession with antagonisms for the moment we often forget how much unites all the members of humanity. Perhaps we need some outside, universal threat to recognize this common bond. I occasionally think how quickly our differences would vanish if we were facing an alien threat from outside this world.\u201d<\/strong><\/p>

\u00a0 \u00a0Much more is known about this subject but has been withheld from public consumption. This especially true of the planet Mars. Space vehicles have been \u201clost forever<\/strong> or vanished completely\u201d<\/strong> attempting to explore the surface of Mars which show traces of being inhabited currently and in the past. For example If it was and is now a space station for extraterrestrials then it could provide a cohesive and plausible explanation for UFOs.<\/p>

\u00a0 \u00a0Although not generally known there has been a Star Wars incident! In 1989, a Russian space vehicle Phobos 2, when aligning with the Martian moonlet, was disabled halfway through transmission. It was disabled by \u201csomething that should not be there\u201d <\/strong>rushing toward it which crashed into it abruptly ending transmission.<\/p>

\u00a0 \u00a0Recently it was announced that Scientists had found evidence indicating that there is another planet in our solar system.<\/p>

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

\"\"The Impact of Female Farmers \u2013 by Margie Lewin<\/strong><\/p>

\u00a0 \u00a0 A new kind of farm is flourishing in Wake County, under the care of its women farmers. The pastoral pioneers sow more of than just seeds in the soil; they cultivate a community conscious of the richness that comes with shopping locally and embracing the land\u2019s yield. This dedication lies not only in agriculture, but in education and connection as well. From the delicious goods harvested and sold by Stoney Acres, N.C.; and Jean’s Neighborhood Market; to the sun dappled grapevines of Cloe’s Family Vineyards, these women-run farms are rewriting the narrative of North Carolina agriculture. They don’t just harvest crops \u2013 they harvest relationships, nurturing a dialogue with their neighbors about the value of local produce and the strength it weaves within the social fabric. \u201cThere’s something for everyone!” And the market serves as a physical reminder of the community\u2019s roots in sustainable living and the joys of seasonal festivities<\/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

A Love Story (in 2 parts) \u2013 by Pat Simpson<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t

(part 1) A Sonnet <\/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

\nWhen first we met, we were but passing friends\n
\nBut I could hear, and I could breathe and see.\n
\nThat, knowing not how love begins or ends,\n
\nThat something could and, dare I say, would be.\n
\nBeside her I did sit, and I did ask,\n
\n“Would you consider to a picnic go?\n
\nMy love for you no longer can I mask.\n
\nIt came upon me sudden. Yes, ’tis so.”\n
\nAnd thus began our love affair,\n
\nIt’s in her eyes where love and life begin,\n
\nA timeless love that takes us here to there,\n
\nAccompanied by bows on sweet violins.\n
\nCan anything on earth bring love back down?\n
\nNo, dear, it’s sailed too far above the ground!\n<\/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

(part 2) For a Little While<\/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

\nWe walked side by side hand in hand, my love \u2013 for a little while\n
\nAnd we looked into each other’s eyes \u2013 for a little while\n
\nWe had a love that would not end \u2013 for a little while\n
\nAnd we shared our love together \u2013 for a little while\n
\nWe loved and laughed amidst great times \u2013 for a little while\n
\nWhen you got sick it did not last \u2013 just for a little while\n
\nThen you were gone and now I\u2019m alone \u2013 for a little while.\n
\n\u201cWhere is she Lord?\u201d I\u2019ll ask in heaven.\n
\nI hope to be by her side again\n
\nMaybe in a canoe for two\n
\nOn a lake with a glorious view\n
\nAt least for a little while.\n<\/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

\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\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<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"

THE VILLAGE TIMES Independence Village of Olde Raleigh Resident Newsletter Say \u201cHello\u201d to our new move-ins: Betsey Brown, Vicki and Jesse Hales, and Rose Baker. Meet Domenica Mossa by Pat Simpson My name is Domenica, which translates to \u201cSunday\u201d or \u201cSabbath Day\u201d in English. But along with my native Italian, I speak Spanish and fluent […]<\/a><\/p>\n","protected":false},"author":1,"featured_media":2919,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"pgc_meta":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-2907","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/2907","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=2907"}],"version-history":[{"count":56,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/2907\/revisions"}],"predecessor-version":[{"id":2975,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/2907\/revisions\/2975"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/media\/2919"}],"wp:attachment":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/media?parent=2907"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/categories?post=2907"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/tags?post=2907"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}