85 lines
4.4 KiB
PHP
85 lines
4.4 KiB
PHP
<!doctype html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
||
<!-- SEO Meta Tags -->
|
||
<title>MARC - A Clean Blog</title>
|
||
<meta name="description" content="A clean blog to publish updates and articles. Built with Flatlogic Generator.">
|
||
<meta name="keywords" content="blog, articles, updates, content publishing, writing, authoring, SEO blog, modern blog, Built with Flatlogic Generator">
|
||
|
||
<!-- Open Graph / Facebook -->
|
||
<meta property="og:type" content="website">
|
||
<meta property="og:title" content="MARC - A Clean Blog">
|
||
<meta property="og:description" content="A clean blog to publish updates and articles. Built with Flatlogic Generator.">
|
||
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? '', ENT_QUOTES, 'UTF-8'); ?>">
|
||
|
||
<!-- Twitter -->
|
||
<meta name="twitter:card" content="summary_large_image">
|
||
<meta name="twitter:title" content="MARC - A Clean Blog">
|
||
<meta name="twitter:description" content="A clean blog to publish updates and articles. Built with Flatlogic Generator.">
|
||
<meta name="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? '', ENT_QUOTES, 'UTF-8'); ?>">
|
||
|
||
<!-- Bootstrap CSS -->
|
||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
||
|
||
<!-- Custom CSS -->
|
||
<link href="assets/css/custom.css?v=<?php echo time(); ?>" rel="stylesheet">
|
||
</head>
|
||
<body>
|
||
|
||
<div class="container">
|
||
<header class="blog-header py-3">
|
||
<div class="row flex-nowrap justify-content-between align-items-center">
|
||
<div class="col-12 text-center">
|
||
<a class="blog-title text-dark text-decoration-none" href="#">MARC</a>
|
||
</div>
|
||
</div>
|
||
</header>
|
||
</div>
|
||
|
||
<main class="container mt-4">
|
||
<div class="row g-5">
|
||
<div class="col-md-8 mx-auto">
|
||
<article class="blog-post">
|
||
<h1 class="blog-post-title">The Journey Begins: Why We Started This Blog</h1>
|
||
<p class="blog-post-meta">January 1, 2025 by <a href="#">Admin</a></p>
|
||
|
||
<p>This is the first post on our new blog. We're excited to share our thoughts, updates, and stories with you. Our goal is to create a space for meaningful content that is both informative and enjoyable to read.</p>
|
||
<hr>
|
||
<p>We believe in the power of words and the stories they can tell. This blog is a commitment to that belief. Here, we will explore various topics, dive deep into subjects that matter, and hopefully, spark a conversation with you, our reader.</p>
|
||
|
||
<img src="https://images.pexels.com/photos/262508/pexels-photo-262508.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" class="img-fluid my-4" alt="A person writing in a notebook, symbolizing the start of a blogging journey.">
|
||
|
||
<h2>Our Vision for the Future</h2>
|
||
<p>Looking ahead, we plan to cover a wide range of topics. Here’s a little preview of what you can expect:</p>
|
||
<ul>
|
||
<li>In-depth articles on industry trends.</li>
|
||
<li>Tutorials and how-to guides.</li>
|
||
<li>Opinion pieces and thought leadership.</li>
|
||
<li>Company news and updates.</li>
|
||
</ul>
|
||
|
||
<blockquote>
|
||
<p>“The beautiful thing about writing is that you don't have to get it right the first time, unlike, say, a brain surgeon.”</p>
|
||
<footer>— Robert Cormier</footer>
|
||
</blockquote>
|
||
|
||
<p>We invite you to join us on this journey. Subscribe to our newsletter, follow us on social media, or just check back here for new posts. We're glad to have you.</p>
|
||
</article>
|
||
</div>
|
||
</div>
|
||
</main>
|
||
|
||
<footer class="blog-footer mt-5">
|
||
<p>Built for <a href="https://flatlogic.com">Flatlogic</a> by an AI Engineer.</p>
|
||
<p>
|
||
<a href="#">Back to top</a>
|
||
</p>
|
||
</footer>
|
||
|
||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
|
||
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
||
</body>
|
||
</html> |