mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-09-25 02:39:06 +00:00
Combine a bunch of helpers together, shuffle some things around
This commit is contained in:
parent
71a97894ad
commit
330c01317d
61 changed files with 327 additions and 371 deletions
|
@ -1,5 +1,5 @@
|
|||
@using LBPUnion.ProjectLighthouse.Extensions
|
||||
@using LBPUnion.ProjectLighthouse.Helpers
|
||||
@using LBPUnion.ProjectLighthouse.Helpers.Extensions
|
||||
@using LBPUnion.ProjectLighthouse.Types
|
||||
@using LBPUnion.ProjectLighthouse.Types.Settings
|
||||
@model LBPUnion.ProjectLighthouse.Servers.Website.Pages.Layouts.BaseLayout
|
||||
|
@ -25,7 +25,7 @@
|
|||
}
|
||||
|
||||
Model.IsMobile = Model.Request.IsMobile();
|
||||
long timeStarted = TimestampHelper.TimestampMillis;
|
||||
long timeStarted = TimeHelper.TimestampMillis;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
@ -179,7 +179,7 @@
|
|||
<p>Model.Title: @Model.Title</p>
|
||||
<p>Model.Description: @Model.Description</p>
|
||||
<p>Model.User.UserId: @(Model.User?.UserId.ToString() ?? "(not logged in)")</p>
|
||||
<p>Render time: ~@(TimestampHelper.TimestampMillis - timeStarted)ms</p>
|
||||
<p>Render time: ~@(TimeHelper.TimestampMillis - timeStarted)ms</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue