first commit
This commit is contained in:
0
resources/views/wri/partials/_footer.blade.php
Normal file
0
resources/views/wri/partials/_footer.blade.php
Normal file
0
resources/views/wri/partials/_header.blade.php
Normal file
0
resources/views/wri/partials/_header.blade.php
Normal file
65
resources/views/wri/partials/footer.blade.php
Normal file
65
resources/views/wri/partials/footer.blade.php
Normal file
@ -0,0 +1,65 @@
|
||||
<div class="footer">
|
||||
|
||||
<!--begin container -->
|
||||
<div class="container">
|
||||
|
||||
<!--begin row -->
|
||||
<div class="row">
|
||||
|
||||
<!--begin col-md-12 -->
|
||||
<div class="col-md-12 text-center">
|
||||
|
||||
<p>Copyright © 2023 WRI Educational Consultancy.</p>
|
||||
|
||||
<!--begin footer_social -->
|
||||
<ul class="footer_social">
|
||||
|
||||
<li>
|
||||
<a href="#">
|
||||
<i class="fab fa-twitter"></i>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="#">
|
||||
<i class="fab fa-pinterest"></i>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="#">
|
||||
<i class="fab fa-facebook-square"></i>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="#">
|
||||
<i class="fab fa-instagram"></i>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="#">
|
||||
<i class="fab fa-skype"></i>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="#">
|
||||
<i class="fab fa-dribble"></i>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
<!--end footer_social -->
|
||||
|
||||
</div>
|
||||
<!--end col-md-6 -->
|
||||
|
||||
</div>
|
||||
<!--end row -->
|
||||
|
||||
</div>
|
||||
<!--end container -->
|
||||
|
||||
</div>
|
59
resources/views/wri/partials/header.blade.php
Normal file
59
resources/views/wri/partials/header.blade.php
Normal file
@ -0,0 +1,59 @@
|
||||
<header class="header">
|
||||
|
||||
<!--begin navbar-fixed-top -->
|
||||
<nav class="navbar navbar-default navbar-fixed-top">
|
||||
|
||||
<!--begin container -->
|
||||
<div class="container">
|
||||
|
||||
<!--begin navbar -->
|
||||
<nav class="navbar navbar-expand-lg">
|
||||
|
||||
<!--begin logo -->
|
||||
<a class="navbar-brand" href="#">
|
||||
<img src="{!! template('images/logo.png')!!}" alt="">
|
||||
</a>
|
||||
<!--end logo -->
|
||||
|
||||
<!--begin navbar-toggler -->
|
||||
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"><i class="fas fa-bars"></i></span>
|
||||
</button>
|
||||
<!--end navbar-toggler -->
|
||||
|
||||
<!--begin navbar-collapse -->
|
||||
<div class="navbar-collapse collapse" id="navbarCollapse" style="">
|
||||
|
||||
<!--begin navbar-nav -->
|
||||
<ul class="navbar-nav ml-auto">
|
||||
|
||||
<li><a href="#home">Home</a></li>
|
||||
|
||||
<li><a href="#about">About Us</a></li>
|
||||
|
||||
<li><a href="#whyuk">Why UK?</a></li>
|
||||
|
||||
<li><a href="#aboutuk">About UK</a></li>
|
||||
<li><a href="#faqs">FAQs</a></li>
|
||||
<li><a href="#successstories">Success Stories</a></li>
|
||||
|
||||
<li><a href="#contact">Contact</a></li>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
<!--end navbar-nav -->
|
||||
|
||||
</div>
|
||||
<!--end navbar-collapse -->
|
||||
|
||||
</nav>
|
||||
<!--end navbar -->
|
||||
|
||||
</div>
|
||||
<!--end container -->
|
||||
|
||||
</nav>
|
||||
<!--end navbar-fixed-top -->
|
||||
|
||||
</header>
|
57
resources/views/wri/partials/seo.blade.php
Normal file
57
resources/views/wri/partials/seo.blade.php
Normal file
@ -0,0 +1,57 @@
|
||||
<?php // dd($data); ?>
|
||||
<title>
|
||||
<?php if (isset($data)) {
|
||||
echo ($data->seo_title != "") ? $data->seo_title : $data->title;
|
||||
echo " | " . SITEVARS->title;
|
||||
} else {
|
||||
echo SITEVARS->seo_title;
|
||||
}
|
||||
?>
|
||||
</title>
|
||||
<meta name="description" content="<?php
|
||||
if (isset($data)) {
|
||||
echo ($data->seo_descriptions != "") ? $data->seo_descriptions : SITEVARS->seo_description;
|
||||
} else {
|
||||
echo SITEVARS->seo_description;
|
||||
}
|
||||
?>">
|
||||
<meta name="keywords" content="<?php
|
||||
if (isset($data)) {
|
||||
echo ($data->seo_keywords != "") ? $data->seo_keywords : SITEVARS->seo_keywords;
|
||||
} else {
|
||||
echo SITEVARS->seo_keywords;
|
||||
}
|
||||
|
||||
?>">
|
||||
<meta name="author" content="Bibhuti Solution Pvt. Ltd.">
|
||||
<meta name="subject" content="<?php
|
||||
if (isset($data)) {
|
||||
echo ($data->seo_descriptions != "") ? $data->seo_descriptions : SITEVARS->seo_description;
|
||||
} else {
|
||||
echo SITEVARS->seo_description;
|
||||
}
|
||||
|
||||
?>">
|
||||
<meta property="og:title" content="<?php if (isset($data)) {
|
||||
echo ($data->seo_title != "") ? $data->seo_title : $data->title;
|
||||
echo " | " . SITEVARS->title;
|
||||
} else {
|
||||
echo SITEVARS->seo_title;
|
||||
}
|
||||
?>">
|
||||
<meta property="og:description" content="<?php
|
||||
if (isset($data)) {
|
||||
echo ($data->seo_descriptions != "") ? $data->seo_descriptions : SITEVARS->seo_description;
|
||||
} else {
|
||||
echo SITEVARS->seo_description;
|
||||
}
|
||||
|
||||
?>">
|
||||
<meta property="og:image" content="<?php echo site_url(SITEVARS->og_image); ?>">
|
||||
<meta property="og:url" content="<?php echo site_url(); ?>">
|
||||
<meta property="og:site_name" content="<?php echo SITEVARS->title; ?>">
|
||||
<?php if(isset($data))
|
||||
{
|
||||
echo $data->og_tags;
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user