Skip to content

Instantly share code, notes, and snippets.

@minons1
Last active June 26, 2021 20:10
Show Gist options
  • Save minons1/16eba8a2fae1fc54c23fefb17038b78a to your computer and use it in GitHub Desktop.
Save minons1/16eba8a2fae1fc54c23fefb17038b78a to your computer and use it in GitHub Desktop.
<?= $this->extend('layout') ?>
<?= $this->section('css') ?>
<link rel="stylesheet" href="css/blog_style.css">
<?= $this->endSection() ?>
<?= $this->section('js') ?>
<?= $this->endSection() ?>
<?= $this->section('title') ?>
Blog
<?= $this->endSection() ?>
<?= $this->section('content') ?>
<div class="card card-image" id="banner">
<h2 class="mx-auto my-auto text-white">Read About My Story</h2></div>
<div class="container-fluid">
<div class="row py-5 text-center">
<div class="col-2"></div>
<div class="col-8 border-bottom" id="story">
<h1><strong>Newest Story</strong></h1>
</div>
<div class="col-2"></div>
</div>
</div>
<?= $this->endSection() ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment