Compare commits
6 Commits
Author | SHA1 | Date |
---|---|---|
tribikram | b24c9d15bc | 2 years ago |
tribikram | e6dc967c53 | 2 years ago |
tribikram | dbb6f10011 | 2 years ago |
tribikram | c9f9f1c831 | 2 years ago |
tribikram | b5227762b8 | 2 years ago |
tribikram | 4027e76485 | 2 years ago |
Before Width: | Height: | Size: 577 B After Width: | Height: | Size: 577 B |
Before Width: | Height: | Size: 458 B After Width: | Height: | Size: 458 B |
Before Width: | Height: | Size: 796 B After Width: | Height: | Size: 796 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
@ -0,0 +1,74 @@ |
|||||||
|
@extends('layout.app') |
||||||
|
@section('title') |
||||||
|
<title>News & Updates</title> |
||||||
|
@endsection |
||||||
|
@section('content') |
||||||
|
<section class="news-banner-section"> |
||||||
|
<div class="news-banner-desc"> |
||||||
|
<h2>News & Updates</h2> |
||||||
|
</div> |
||||||
|
</section> |
||||||
|
<section class="news-update-section"> |
||||||
|
<div class="news-update-head"> |
||||||
|
<h5>What’s New <hr></h5> |
||||||
|
<h3>News & Updates</h3> |
||||||
|
</div> |
||||||
|
<div class="row mt-4"> |
||||||
|
<div class="col-md-6"> |
||||||
|
<div class="featured-news-image"> |
||||||
|
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt=""> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div class="col-md-6"> |
||||||
|
<div class="featured-news-desc"> |
||||||
|
<h3>Recognition of Prior Learning (RPL)</h3> |
||||||
|
<h5>Dec 08, 2022</h5> |
||||||
|
<p>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...</p> |
||||||
|
<a href="/news_detail">Read More</a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div class="row g-4"> |
||||||
|
<div class="col-md-4"> |
||||||
|
<div class="news-page-card"> |
||||||
|
<a href="/news_detail"> |
||||||
|
<div class="news-card-img"> |
||||||
|
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt=""> |
||||||
|
</div> |
||||||
|
<div class="news-card-desc"> |
||||||
|
<h4>Lorem Ipsum is simply dummy text of the printing</h4> |
||||||
|
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p> |
||||||
|
</div> |
||||||
|
</a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div class="col-md-4"> |
||||||
|
<div class="news-page-card"> |
||||||
|
<a href="/news_detail"> |
||||||
|
<div class="news-card-img"> |
||||||
|
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt=""> |
||||||
|
</div> |
||||||
|
<div class="news-card-desc"> |
||||||
|
<h4>Lorem Ipsum is simply dummy text of the printing</h4> |
||||||
|
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p> |
||||||
|
</div> |
||||||
|
</a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div class="col-md-4"> |
||||||
|
<div class="news-page-card"> |
||||||
|
<a href="/news_detail"> |
||||||
|
<div class="news-card-img"> |
||||||
|
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt=""> |
||||||
|
</div> |
||||||
|
<div class="news-card-desc"> |
||||||
|
<h4>Lorem Ipsum is simply dummy text of the printing</h4> |
||||||
|
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p> |
||||||
|
</div> |
||||||
|
</a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</section> |
||||||
|
|
||||||
|
@endsection |
@ -1,38 +1,113 @@ |
|||||||
@extends('layout.app') |
@extends('layout.app') |
||||||
@section('title') |
@section('title') |
||||||
<title>News & Updates</title> |
<title>Recognition of Prior Learning (RPL)</title> |
||||||
@endsection |
@endsection |
||||||
@section('content') |
@section('content') |
||||||
<section class="news-banner-section"> |
<section class="bloghead-section"> |
||||||
<div class="news-banner-desc"> |
<div class="blog-header"> |
||||||
<h2>News & Updates</h2> |
<h2>Recognition of Prior Learning (RPL)</h2> |
||||||
|
<div class="blog-social"> |
||||||
|
<p>Dec 09, 2022 . 2 min read</p> |
||||||
|
<div class="blog-share"> |
||||||
|
<h5>Share on</h5> |
||||||
|
<a href="https://www.facebook.com/people/A-Plus-Australia-Agency/100063871244808/" target="_blank"><img src="{{url('frontend/icons/facebook-icon.svg')}}" alt=""></a> |
||||||
|
<a href="" target="_blank"><img src="{{url('frontend/icons/twiter-link.svg')}}" alt=""></a> |
||||||
|
<a href="https://au.linkedin.com/company/a-plus-australia-agency?trk=public_profile_topcard-current-company" target="_blank"><img src="{{url('frontend/icons/linkdin-link.svg')}}" alt=""></a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
</div> |
</div> |
||||||
</section> |
<div class="blog-desc mt-4"> |
||||||
<section class="news-update-section"> |
<div class="blog-featured-img"> |
||||||
<div class="news-update-head"> |
<img src="{{url('frontend/images/test-desc.png')}}" class="w-100" alt=""> |
||||||
<h5>What’s New <hr></h5> |
</div> |
||||||
<h3>News & Updates</h3> |
<div class="blog-content mt-4"> |
||||||
|
<p>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 popularized in the 1960s with the release of Letterset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. 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 popularized in the 1960s with the release of Letterset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> |
||||||
|
<h5>Where does it come from?</h5> |
||||||
|
<p>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 popularized in the 1960s with the release of Letterset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. 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 popularized in the 1960s with the release of Letterset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> |
||||||
|
</div> |
||||||
</div> |
</div> |
||||||
<div class="row mt-4"> |
</section> |
||||||
<div class="col-md-6"> |
<section class="related-article"> |
||||||
<div class="featured-news-image"> |
<h3>Related Articles</h3> |
||||||
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt=""> |
<div class="row g-4"> |
||||||
|
<div class="col-md-4"> |
||||||
|
<div class="news-page-card"> |
||||||
|
<a href="/news_detail"> |
||||||
|
<div class="news-card-img"> |
||||||
|
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt=""> |
||||||
|
</div> |
||||||
|
<div class="news-card-desc"> |
||||||
|
<h4>Lorem Ipsum is simply dummy text of the printing</h4> |
||||||
|
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p> |
||||||
|
</div> |
||||||
|
</a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div class="col-md-4"> |
||||||
|
<div class="news-page-card"> |
||||||
|
<a href="/news_detail"> |
||||||
|
<div class="news-card-img"> |
||||||
|
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt=""> |
||||||
|
</div> |
||||||
|
<div class="news-card-desc"> |
||||||
|
<h4>Lorem Ipsum is simply dummy text of the printing</h4> |
||||||
|
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p> |
||||||
|
</div> |
||||||
|
</a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div class="col-md-4"> |
||||||
|
<div class="news-page-card"> |
||||||
|
<a href="/news_detail"> |
||||||
|
<div class="news-card-img"> |
||||||
|
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt=""> |
||||||
|
</div> |
||||||
|
<div class="news-card-desc"> |
||||||
|
<h4>Lorem Ipsum is simply dummy text of the printing</h4> |
||||||
|
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p> |
||||||
|
</div> |
||||||
|
</a> |
||||||
</div> |
</div> |
||||||
</div> |
</div> |
||||||
<div class="col-md-6"> |
<div class="col-md-4"> |
||||||
<div class="featured-news-desc"> |
<div class="news-page-card"> |
||||||
<h3>Recognition of Prior Learning (RPL)</h3> |
<a href="/news_detail"> |
||||||
<h5>Dec 08, 2022</h5> |
<div class="news-card-img"> |
||||||
<p>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...</p> |
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt=""> |
||||||
<a href="/">Read More</a> |
</div> |
||||||
|
<div class="news-card-desc"> |
||||||
|
<h4>Lorem Ipsum is simply dummy text of the printing</h4> |
||||||
|
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p> |
||||||
|
</div> |
||||||
|
</a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div class="col-md-4"> |
||||||
|
<div class="news-page-card"> |
||||||
|
<a href="/news_detail"> |
||||||
|
<div class="news-card-img"> |
||||||
|
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt=""> |
||||||
|
</div> |
||||||
|
<div class="news-card-desc"> |
||||||
|
<h4>Lorem Ipsum is simply dummy text of the printing</h4> |
||||||
|
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p> |
||||||
|
</div> |
||||||
|
</a> |
||||||
</div> |
</div> |
||||||
</div> |
</div> |
||||||
<div class="col-md-4"> |
<div class="col-md-4"> |
||||||
<div class="news-page-card"> |
<div class="news-page-card"> |
||||||
|
<a href="/news_detail"> |
||||||
|
<div class="news-card-img"> |
||||||
|
<img src="{{url('frontend/images/test-img.png')}}" class="img-fluid" alt=""> |
||||||
|
</div> |
||||||
|
<div class="news-card-desc"> |
||||||
|
<h4>Lorem Ipsum is simply dummy text of the printing</h4> |
||||||
|
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's...</p> |
||||||
|
</div> |
||||||
|
</a> |
||||||
</div> |
</div> |
||||||
</div> |
</div> |
||||||
</div> |
</div> |
||||||
</section> |
</section> |
||||||
|
|
||||||
@endsection |
@endsection |