You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
3.8 KiB
PHTML

@extends('layouts.app')
@section('content')
<div class="container">
<div class="row">
<div class="col-md-9 px-4">
<div class="px-2">
<h2 class="mt-3">A Blog Entry</h2>
<div class="mt-3 pr-2">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley
of type and scrambled it to make a type specimen book. It has survived not only five centuries,
but also the leap into electronic typesetting, remaining essentially unchanged. It was
popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages,
and more recently with desktop publishing software like Aldus PageMaker including versions of
Lorem Ipsum.
</div>
<div>
<br>
<a href="/">Continue reading...</a>
</div>
<div class="text-secondary mt-3">
<div class="d-inline-flex flex-row gap-3">
<div>
<i class="bi bi-person-fill"></i> Nisse
</div>
<div>
<i class="bi bi-calendar-week"></i> 2024-02-02
</div>
<div>
<i class="bi bi-tags-fill"></i>
<a href="/">Tag 1</a>,
<a href="/">Tag 2</a>
</div>
</div>
<div class="py-2">
<hr>
</div>
</div>
</div>
<div class="px-2">
<h2 class="mt-3">Another Blog Entry</h2>
<div class="mt-3 pr-2">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley
of type and scrambled it to make a type specimen book. It has survived not only five centuries,
but also the leap into electronic typesetting, remaining essentially unchanged. It was
popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages,
and more recently with desktop publishing software like Aldus PageMaker including versions of
Lorem Ipsum.
</div>
<div class="text-secondary mt-3">
<div class="d-inline-flex flex-row gap-3">
<div>
<i class="bi bi-person-fill"></i> Nisse
</div>
<div>
<i class="bi bi-calendar-week"></i> 2024-01-29
</div>
<div>
<i class="bi bi-tags-fill"></i>
<a href="/">Tag 2</a>,
<a href="/">Tag 3</a>
</div>
</div>
<div class="py-2">
<hr>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<h5>Categories</h5>
</div>
</div>
</div>
@endsection