| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/coaching_sites/usbusinessfundingsolutions.com/ |
Upload File : |
<?php
require_once __DIR__ . '/includes/functions.php';
$pageTitle = 'Funding News - US Business Funding Solutions';
$pageDescription = 'Latest grant awards, funding announcements, and success stories from across the funding landscape.';
$activePage = 'funding-news.php';
/** Page content. Swap in a database query or feed here if this ever goes dynamic. */
$newsCategories = [
['icon' => 'building-office', 'name' => 'Government Grants', 'count' => 45],
['icon' => 'academic-cap', 'name' => 'Education', 'count' => 32],
['icon' => 'currency-dollar', 'name' => 'Community Development', 'count' => 28],
['icon' => 'newspaper', 'name' => 'Arts & Culture', 'count' => 18],
];
$featuredNews = [
[
'title' => 'Vanderhoef: $2.6 M in Block Grants Awarded',
'summary' => 'County Executive C. Scott Vanderhoef announced the recipients of the 2012 Community Development Block Grant Awards. $2,656,071 in HUD grants were awarded to Rockland not-for-profit organizations.',
'category' => 'Government Grants',
'amount' => '$2.6M',
'date' => '2024-01-15',
'type' => 'Community Development',
],
[
'title' => 'Fed Grants Awarded To Begin Addressing Bullying And Safe Schools',
'summary' => 'The U.S. Department of Education announced the awarding of $38.8 million in grants to 11 states from a new Safe and Supportive School program.',
'category' => 'Education',
'amount' => '$38.8M',
'date' => '2024-01-10',
'type' => 'Federal Program',
],
[
'title' => 'Fisher School of Pharmacy receives $1.4 million grant',
'summary' => 'The Wegmans School of Pharmacy at St. John Fisher College has received a $1.4 million grant to outfit laboratory facilities and equipment from the Higher Education Capital Matching Grants Program.',
'category' => 'Higher Education',
'amount' => '$1.4M',
'date' => '2024-01-08',
'type' => 'Infrastructure',
],
];
$recentNews = [
[
'title' => 'Arts grants awarded',
'summary' => 'The Jackson County Cultural Coalition, funded by the Oregon Cultural Trust, will give $17,000 in grants to 16 cultural organizations at its annual awards ceremony.',
'category' => 'Arts & Culture',
'amount' => '$17K',
'date' => '2024-01-05',
],
[
'title' => 'Berkshire Bank announces $2 million in grants',
'summary' => 'Berkshire Bank Foundation awarded a total of $1,518,133 in grants to non-profit organizations in Massachusetts, New York, Connecticut and Vermont during 2014.',
'category' => 'Community Development',
'amount' => '$2M',
'date' => '2024-01-03',
],
[
'title' => 'Eastlake, Mentor among communities getting grants to clean up Lake Erie shoreline',
'summary' => "Eastlake and Mentor will share in a state grant program designed to spruce up the Lake Erie shoreline. Eastlake's $1,017 grant will go toward cleanup efforts.",
'category' => 'Environmental',
'amount' => '$1K+',
'date' => '2024-01-01',
],
[
'title' => 'Orange Beach Arts Center gets grants',
'summary' => "A grant of $3000, awarded to The Hot Shop, will provide financial assistance for artists' fees and hot glass studio expenses involved with Glass Art Educational Programs.",
'category' => 'Arts Education',
'amount' => '$3K',
'date' => '2023-12-28',
],
];
require __DIR__ . '/includes/header.php';
?>
<!-- ============================================================= hero -->
<section class="section section--top">
<div class="container">
<div class="center stack-xl animate-fade-in">
<div class="stack">
<h1 class="title-xl">
Latest <span class="gradient-text">Funding News</span>
</h1>
<p class="lead lead--lg measure">
Stay informed about the latest grant awards, funding opportunities, and success stories from across
the funding landscape.
</p>
</div>
<div class="button-row button-row--center">
<a class="btn btn--lg btn--gradient" href="contact.php">Subscribe to Updates</a>
<a class="btn btn--lg btn--outline-primary" href="#categories">View All Categories</a>
</div>
</div>
</div>
</section>
<!-- ======================================================= categories -->
<section class="section section--muted" id="categories">
<div class="container">
<div class="center stack animate-fade-in" style="margin-bottom: 3rem">
<h2 class="title-lg">Funding Categories</h2>
<p class="lead lead--lg measure">
Browse funding news by category to find opportunities relevant to your industry
</p>
</div>
<div class="grid grid--4">
<?php foreach ($newsCategories as $category): ?>
<article class="card card--lift reveal" style="cursor: pointer">
<div class="card__header center">
<div class="icon-tile icon-tile--center"><?= icon($category['icon']) ?></div>
<div class="stack-sm">
<h3 class="card__title card__title--sm"><?= $category['name'] ?></h3>
<div><span class="badge badge--primary"><?= (int) $category['count'] ?> Updates</span></div>
</div>
</div>
</article>
<?php endforeach; ?>
</div>
</div>
</section>
<!-- ==================================================== featured news -->
<section class="section">
<div class="container">
<div class="center stack animate-fade-in" style="margin-bottom: 4rem">
<h2 class="title-lg">Featured Grant Awards</h2>
<p class="lead lead--lg measure">Major funding announcements and success stories</p>
</div>
<div class="grid grid--3 grid--gap-lg">
<?php foreach ($featuredNews as $article): ?>
<article class="card card--lift reveal">
<div class="card__header">
<div style="display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem">
<span class="badge badge--success"><?= $article['category'] ?></span>
<div class="news-amount">
<div class="news-amount__value"><?= e($article['amount']) ?></div>
<div class="news-amount__type"><?= e($article['type']) ?></div>
</div>
</div>
<h3 class="card__title card__title--md"><?= e($article['title']) ?></h3>
<div class="meta-date">
<?= icon('calendar-days') ?>
<span><?= date('n/j/Y', strtotime($article['date'])) ?></span>
</div>
</div>
<div class="card__body stack">
<p class="text-body"><?= e($article['summary']) ?></p>
<a class="btn btn--full btn--outline" href="contact.php">
Read Full Article
<?= icon('external') ?>
</a>
</div>
</article>
<?php endforeach; ?>
</div>
</div>
</section>
<!-- ====================================================== recent news -->
<section class="section section--muted">
<div class="container">
<div class="center stack animate-fade-in" style="margin-bottom: 4rem">
<h2 class="title-lg">Recent Funding News</h2>
<p class="lead lead--lg measure">Latest updates from the funding community</p>
</div>
<div class="stack-lg">
<?php foreach ($recentNews as $article): ?>
<article class="card card--hover reveal">
<div class="card__body card__body--pad">
<div class="news-row">
<div class="stack-sm">
<div class="news-row__meta">
<span class="badge badge--outline"><?= $article['category'] ?></span>
<div class="meta-date">
<?= icon('calendar-days') ?>
<span><?= date('n/j/Y', strtotime($article['date'])) ?></span>
</div>
<span class="badge badge--accent"><?= e($article['amount']) ?></span>
</div>
<h3 class="title-sm font-semibold"><?= e($article['title']) ?></h3>
<p class="text-muted"><?= e($article['summary']) ?></p>
</div>
<div class="news-row__action">
<a class="btn btn--outline" href="contact.php">
Read More
<?= icon('external') ?>
</a>
</div>
</div>
</div>
</article>
<?php endforeach; ?>
</div>
<div class="center" style="margin-top: 3rem">
<a class="btn btn--lg btn--outline-primary" href="contact.php">Load More Articles</a>
</div>
</div>
</section>
<!-- ======================================================= newsletter -->
<section class="section section--primary">
<div class="container">
<div class="center stack-xl">
<div class="newsletter-icon"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M12 7.5h1.5m-1.5 3h1.5m-7.5 3h7.5m-7.5 3h7.5m3-9h3.375c.621 0 1.125.504 1.125 1.125V18a2.25 2.25 0 0 1-2.25 2.25M16.5 7.5V18a2.25 2.25 0 0 0 2.25 2.25M16.5 7.5V4.875c0-.621-.504-1.125-1.125-1.125H4.125C3.504 3.75 3 4.254 3 4.875V18a2.25 2.25 0 0 0 2.25 2.25h13.5M6 7.5h3v3H6v-3Z" /></svg></div>
<div class="stack">
<h2 class="title-lg">Stay Updated on Funding Opportunities</h2>
<p class="lead lead--lg measure on-primary">
Subscribe to our funding news updates and never miss an opportunity that could benefit your business.
Get curated funding alerts delivered directly to your inbox.
</p>
</div>
<div class="button-row button-row--center">
<a class="btn btn--lg btn--on-primary" href="contact.php">Subscribe to Funding Alerts</a>
<a class="btn btn--lg btn--ghost-on-primary" href="contact.php">Contact Our Team</a>
</div>
</div>
</div>
</section>
<?php require __DIR__ . '/includes/footer.php'; ?>