-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b27de96
commit a390aa8
Showing
9 changed files
with
59 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
@using Microsoft.Extensions.Options | ||
@using BloggerWay.Entities.Concrete | ||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers | ||
@inject IOptionsSnapshot<WebsiteInfo> WebsiteInfo | ||
@{ | ||
var websiteInfo = WebsiteInfo.Value; | ||
} | ||
<footer style="background-color:#182539"> | ||
<div class="container"> | ||
<div class="footer-content"> | ||
<div class="row"> | ||
<div class="col-lg-4 col-md-6 col-sm-6"> | ||
<div class="ft-logo"> | ||
<h1><a asp-controller="Home" asp-action="Index">@websiteInfo.MenuTitle</a></h1> | ||
</div> | ||
</div> | ||
<div class="col-lg-4 col-md-6 col-sm-6"> | ||
</div> | ||
<div class="col-lg-4 col-md-12"> | ||
<ul class="ft-links"> | ||
<li><a asp-controller="Home" asp-action="Index">Anasayfa</a></li> | ||
<li><a asp-controller="Home" asp-action="About">Hakkımızda</a></li> | ||
<li><a asp-controller="Home" asp-action="Contact">İletişim</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
|
||
<section class="bottom-strip"> | ||
<div class="container"> | ||
<p style="color:aliceblue">©@DateTime.Now.Year @websiteInfo.MenuTitle Tüm Hakları Saklıdır.</p> | ||
</div> | ||
</section> | ||
|
||
<div class="search-page"> | ||
<form> | ||
<div class="container"> | ||
<div class="form-field"> | ||
<input type="text" name="search" placeholder="Enter Your Keywords"> | ||
<button type="submit"><i class="la la-search"></i></button> | ||
</div> | ||
</div> | ||
</form> | ||
<a href="#" title="" class="close-search"><i class="la la-close"></i></a> | ||
</div> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters