-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added database objects for the Page * Adding UI and cleaning up multiple instances of EF context * Added MemoryCache for Pages since they don't change frequently * First version of EditPage * Completed the custom page display
- Loading branch information
1 parent
11166cc
commit 80c001d
Showing
3 changed files
with
5 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<p>@Localizer["sharpsite_pagenotfound"]</p> | ||
|
||
<p><a href="/">@Localizer["sharpsite_backtohome"]</a></p> |
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
} | ||
else | ||
{ | ||
<p>Page not found</p> | ||
<PageNotFound /> | ||
} | ||
|
||
@code { | ||
|
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