Skip to content

Commit

Permalink
Fix Support page layout
Browse files Browse the repository at this point in the history
  • Loading branch information
dougwaldron committed Jan 14, 2025
1 parent 6a767e5 commit a998b69
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions src/WebApp/Pages/Support.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,27 @@

@if (Model.ActiveUser)
{
<p>For technical support, contact <a href="@AppSettings.SupportSettings.TechnicalSupportSite" target="_blank" rel="noopener">EPD IT support</a>.</p>
<p>For technical support, contact
<a href="@AppSettings.SupportSettings.TechnicalSupportSite" target="_blank" rel="noopener">EPD IT support</a>.
</p>
}

<div class="callout">
<div class="callout callout-info">
<small>
The MY_APP_NAME was developed by Georgia EPD-IT.<br/>
The Air Web application was developed by Georgia EPD-IT.<br />
The MY_APP_NAME was developed by Georgia EPD-IT.<br />
@if (!string.IsNullOrEmpty(AppSettings.SupportSettings.InformationalVersion))
{
@:Current version: <em>@AppSettings.SupportSettings.InformationalVersion
@if (!string.IsNullOrEmpty(AppSettings.SupportSettings.InformationalBuild))
{
@:(@AppSettings.SupportSettings.InformationalBuild).
}

@:</em>
@:Current version: @AppSettings.SupportSettings.InformationalVersion
@if (!string.IsNullOrEmpty(AppSettings.SupportSettings.InformationalBuild))
{
@:(@AppSettings.SupportSettings.InformationalBuild)
}
}
<br />
View the
<a href="https://github.com/gaepdit/template-app/blob/main/CHANGELOG.md" target="_blank" rel="noopener"
class="text-decoration-hover link-offset-2">Changelog</a>.
<a href="https://github.com/gaepdit/template-app/blob/main/CHANGELOG.md" target="_blank" rel="noopener" class="text-decoration-hover link-offset-2">Changelog</a>.
<br />
Source code available on
<a href="https://github.com/gaepdit/template-app" target="_blank" rel="noopener"
class="text-decoration-hover link-offset-2">GitHub</a>.
<a href="https://github.com/gaepdit/template-app" target="_blank" rel="noopener" class="text-decoration-hover link-offset-2">GitHub</a>.
</small>
</div>

0 comments on commit a998b69

Please sign in to comment.