Skip to content

Commit

Permalink
Fix TheBlogTheme shared views (#14493)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbolon committed Oct 13, 2023
1 parent 0f5d992 commit 219096c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
11 changes: 5 additions & 6 deletions src/OrchardCore.Themes/TheBlogTheme/Views/Shared/NotFound.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
<!-- Page Header -->
<!-- Set your background image for this header on the line below. -->
<header class="masthead" style="background-image: url('{{ "~/TheBlogTheme/assets/img/post-bg.jpg" | href }}')">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="page-heading">
<div class="container position-relative px-4 px-lg-5">
<div class="row gx-4 gx-lg-5 justify-content-center">
<div class="col-md-10 col-lg-8 col-xl-7">
<div class="site-heading">
<h1>{{ "Page Not Found" | t }}</h1>
</div>
</div>
</div>
</div>
</header>
{% endzone %}
{% endzone %}
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
<!-- Page Header -->
<!-- Set your background image for this header on the line below. -->
<header class="masthead" style="background-image: url('{{ "~/TheBlogTheme/assets/img/post-bg.jpg" | href }}')">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<div class="container position-relative px-4 px-lg-5">
<div class="row gx-4 gx-lg-5 justify-content-center">
<div class="col-md-10 col-lg-8 col-xl-7">
<div class="site-heading">
{% assign search = "Search" | t %}
<h1>{% page_title search %}</h1>
Expand Down

0 comments on commit 219096c

Please sign in to comment.