Browse Source
blogging: remove unnecessary header link
pull/12521/head
Berkan Sasmaz
4 years ago
No known key found for this signature in database
GPG Key ID: 4E387A3A3BCC339B
2 changed files with
2 additions and
4 deletions
-
modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Detail.cshtml
-
modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/detail.js
|
|
|
@ -56,9 +56,7 @@ |
|
|
|
<section class="hero-section"> |
|
|
|
<div class="hero-articles"> |
|
|
|
<div class="hero-content"> |
|
|
|
<h1 class="mb-3"> |
|
|
|
<a asp-page="./Detail" asp-route-postUrl="@Model.Post.Url" asp-route-blogShortName="@Model.BlogShortName" id="PostTitle">@Model.Post.Title</a> |
|
|
|
</h1> |
|
|
|
<h1 class="mb-3" id="PostTitle">@Model.Post.Title</h1> |
|
|
|
|
|
|
|
<div class="article-owner"> |
|
|
|
<div class="article-infos"> |
|
|
|
|
|
|
|
@ -5,7 +5,7 @@ |
|
|
|
var re = new RegExp(/^.*\//); |
|
|
|
var rootUrl = re.exec(window.location.href); |
|
|
|
|
|
|
|
var pageHeader = $('#PostTitle').text(); |
|
|
|
var pageHeader = $('#PostTitle').text().trim(); |
|
|
|
var blogName = $('#BlogFullName').attr('name'); |
|
|
|
|
|
|
|
$('#TwitterShareLink').attr( |
|
|
|
|