/
home
/
sjslayjy
/
public_html
/
theweavenest
/
resources
/
views
/
front
/
Upload File
HOME
@extends('front.layout_alt') @section('page_title', 'product_cat') @section('content') <style> .post-thumb { display: flex; justify-content: center; align-items: center; height: 300px; /* Set a fixed height for the image container */ overflow: hidden; /* Hide any overflow */ border: 2px solid #ddd; /* Add a border around the image container */ padding: 10px; /* Add padding inside the border */ position: relative; /* Position relative for shop-now text */ } .post-thumb img { width: 100%; /* Ensures the image takes up the full width of its container */ height: 100%; /* Ensures the image takes up the full height of its container */ object-fit: cover; /* Ensures the image covers the given dimensions without distortion */ } .post { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 20px; } .post-title { margin-top: 15px; text-align: center; /* Center-align the title text */ } .post-meta ul { list-style: none; padding: 0; } .post-meta ul li { display: inline; margin-right: 10px; } .post-content { margin-top: 20px; } .post-social-share { text-align: center; margin-top: 20px; } .social-media-icons ul { list-style: none; padding: 0; } .social-media-icons ul li { display: inline; margin: 0 10px; } .shop-now { position: absolute; bottom: 10px; /* Position at the bottom of the image */ left: 50%; transform: translateX(-50%); background-color: salmon; color: white; padding: 5px 10px; font-weight: bold; border-radius: 5px; } </style> <section class="page-header"> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="content"> <h1 class="page-name">Blog</h1> <ol class="breadcrumb"> <li><a href="index.html">Home</a></li> <li class="active">blog</li> </ol> </div> </div> </div> </div> </section> <section class="page-wrapper"> <div class="container"> <div class="row"> <div class="col-md-12"> <h2 class="post-title">{{ $post->title }}</h2> <div class="post post-single"> <div class="post-thumb"> <img class="img-responsive" src="{{ asset('storage/media/category/' . $post->image) }}" alt="{{ $post->title }}"> </div> <div class="post-meta"> <ul> <li><i class="tf-ion-ios-calendar"></i> 20, MAR 2017</li> <li><i class="tf-ion-android-person"></i> POSTED BY ADMIN</li> <li><a href="#!"><i class="tf-ion-ios-pricetags"></i> LIFESTYLE</a>,<a href="#!"> TRAVEL</a>, <a href="#!">FASHION</a></li> <li><a href="#!"><i class="tf-ion-chatbubbles"></i> 4 COMMENTS</a></li> </ul> </div> <div class="post-content post-excerpt"> <p>{{ $post->description }}</p> <!-- Additional post content goes here --> </div> </div> </div> </div> </div> </section> @endsection