Files
upo-senior-assistant/SeniorAssistant/Views/Shared/Footer.cshtml
Giacomo c807c474c4 Init
- aggiunto un po di tutto comeil progetto del prof
2018-09-14 19:38:02 +02:00

14 lines
514 B
Plaintext

@using System.Reflection
@{
var assembly = Assembly.GetEntryAssembly();
}
<footer class="main-footer">
<!-- To the right -->
<div class="pull-right hidden-xs">
@(assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()?.InformationalVersion)
</div>
<!-- Default to the left -->
<strong>@(assembly.GetCustomAttribute<AssemblyCopyrightAttribute>()?.Copyright) <a href="#">@(assembly.GetCustomAttribute<AssemblyCompanyAttribute>()?.Company)</a>.</strong>
</footer>