<?php
$page_title       = 'MenUp365 Blog | Brotherhood, Faith, Fitness & Finance for Men';
$page_description = 'Read articles on men\'s accountability, brotherhood, faith, fitness, and financial growth. Real talk for men who show up.';
$page_canonical   = 'https://menup365.com/blog/';
$page_active_nav  = 'blog';
$page_extra_css   = '/assets/css/blog.css';
$page_og_image    = 'https://menup365.com/assets/images/blog/four-pillars.jpg';
$page_schema = [
  '@context' => 'https://schema.org',
  '@graph' => [
    [
      '@type' => 'CollectionPage',
      '@id'   => 'https://menup365.com/blog/#collection',
      'name'  => 'MenUp365 Blog',
      'url'   => 'https://menup365.com/blog/',
      'description' => $page_description,
      'isPartOf' => ['@id' => 'https://menup365.com/#website'],
      'publisher' => ['@id' => 'https://menup365.com/#organization'],
    ],
    [
      '@type' => 'BreadcrumbList',
      'itemListElement' => [
        ['@type' => 'ListItem', 'position' => 1, 'name' => 'Home', 'item' => 'https://menup365.com/'],
        ['@type' => 'ListItem', 'position' => 2, 'name' => 'Blog', 'item' => 'https://menup365.com/blog/'],
      ],
    ],
  ],
];
include __DIR__ . '/../includes/header.php';

$blog_posts_data = [
  ['slug'=>'why-men-need-accountability-groups','title'=>'Why Every Man Needs an Accountability Group','excerpt'=>'Most men are doing life alone. Here\'s why accountability changes everything and how to find the right group.','category'=>'Brotherhood','date'=>'2026-04-01','read_time'=>'6 min read','image'=>'/assets/images/blog/accountability-group.jpg'],
  ['slug'=>'building-brotherhood-in-the-modern-world','title'=>'Building Brotherhood in the Modern World','excerpt'=>'Real brotherhood doesn\'t happen by accident. It takes intentionality, vulnerability, and men who actually show up.','category'=>'Community','date'=>'2026-03-28','read_time'=>'7 min read','image'=>'/assets/images/blog/brotherhood-modern.jpg'],
  ['slug'=>'4-pillars-of-a-balanced-life','title'=>'The 4 Pillars of a Balanced Life for Men','excerpt'=>'Faith, family, fitness, and finance. The four pillars that keep a man grounded, growing, and leading with purpose.','category'=>'Growth','date'=>'2026-03-25','read_time'=>'8 min read','image'=>'/assets/images/blog/four-pillars.jpg'],
  ['slug'=>'how-to-stay-consistent-as-a-man','title'=>'How to Stay Consistent as a Man (When Motivation Fades)','excerpt'=>'Motivation is temporary. Discipline is what separates men who talk about change from men who live it.','category'=>'Discipline','date'=>'2026-03-22','read_time'=>'6 min read','image'=>'/assets/images/blog/consistency.jpg'],
  ['slug'=>'what-is-a-mens-community','title'=>'What Is a Men\'s Community (And Why You Need One)','excerpt'=>'A men\'s community isn\'t a social club. It\'s a lifeline. Here\'s what it actually looks like and why it matters.','category'=>'Community','date'=>'2026-03-19','read_time'=>'7 min read','image'=>'/assets/images/blog/mens-community.jpg'],
  ['slug'=>'faith-and-manhood-finding-your-foundation','title'=>'Faith and Manhood: Finding Your Foundation','excerpt'=>'A man without a foundation is a man without direction. Here\'s how faith anchors everything else.','category'=>'Faith','date'=>'2026-03-16','read_time'=>'7 min read','image'=>'/assets/images/blog/faith-foundation.jpg'],
  ['slug'=>'fitness-habits-every-man-should-build','title'=>'5 Fitness Habits Every Man Should Build','excerpt'=>'Fitness isn\'t about looking good. It\'s about building the discipline and mental toughness that carries into every area of life.','category'=>'Fitness','date'=>'2026-03-13','read_time'=>'6 min read','image'=>'/assets/images/blog/fitness-habits.jpg'],
  ['slug'=>'financial-accountability-for-men','title'=>'Financial Accountability for Men: Take Control of Your Money','excerpt'=>'Most men avoid their finances. The ones who win? They face the numbers, build a plan, and stay accountable.','category'=>'Finance','date'=>'2026-03-10','read_time'=>'8 min read','image'=>'/assets/images/blog/financial-accountability.jpg'],
  ['slug'=>'how-mentorship-changes-mens-lives','title'=>'How Mentorship Changes Men\'s Lives','excerpt'=>'Behind every strong man is another man who invested in him. Mentorship isn\'t optional — it\'s essential.','category'=>'Brotherhood','date'=>'2026-03-07','read_time'=>'7 min read','image'=>'/assets/images/blog/mentorship.jpg'],
  ['slug'=>'joining-menup365-what-to-expect','title'=>'Joining MenUp365: What to Expect on Day One','excerpt'=>'Thinking about joining? Here\'s exactly what happens when you become a MenUp365 member.','category'=>'MenUp365','date'=>'2026-03-04','read_time'=>'5 min read','image'=>'/assets/images/blog/what-to-expect.jpg'],
];
?>

<div class="page-header">
  <div class="container">
    <span class="section-label">Blog</span>
    <h1 class="page-header__title">From the <span class="text-gold">Brotherhood</span></h1>
    <p class="page-header__subtitle">Real talk on faith, family, fitness, finance, and what it means to be a man who shows up.</p>
  </div>
</div>

<section class="section light-section">
  <div class="container">
    <div class="grid grid-3 stagger">
      <?php foreach ($blog_posts_data as $blog_post): ?>
        <?php include __DIR__ . '/../includes/blog-card.php'; ?>
      <?php endforeach; ?>
    </div>
  </div>
</section>

<section class="section gold-section">
  <div class="container">
    <div class="cta-band reveal">
      <h2 class="cta-band__title">Want More?</h2>
      <p class="cta-band__text">Join the brotherhood and get weekly encouragement, event invites, and exclusive content.</p>
      <a href="/membership" class="btn-dark btn-lg">Join MenUp365</a>
    </div>
  </div>
</section>

<?php include __DIR__ . '/../includes/footer.php'; ?>
